Bump version.io.micronaut from 4.7.4 to 4.7.5 (#255)

* Bump version.io.micronaut from 4.7.4 to 4.7.5

Bumps `version.io.micronaut` from 4.7.4 to 4.7.5.

Updates `io.micronaut.platform:micronaut-platform` from 4.7.4 to 4.7.5
- [Release notes](https://github.com/micronaut-projects/micronaut-platform/releases)
- [Commits](https://github.com/micronaut-projects/micronaut-platform/compare/v4.7.4...v4.7.5)

Updates `io.micronaut:micronaut-inject-java` from 4.7.4 to 4.7.5
- [Release notes](https://github.com/micronaut-projects/micronaut-core/releases)
- [Changelog](https://github.com/micronaut-projects/micronaut-core/blob/4.8.x/RELEASE.adoc)
- [Commits](https://github.com/micronaut-projects/micronaut-core/compare/v4.7.4...v4.7.5)

---
updated-dependencies:
- dependency-name: io.micronaut.platform:micronaut-platform
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.micronaut:micronaut-inject-java
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Remove ansi codes.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stephan Schnabel <stephan.schnabel@posteo.de>
This commit is contained in:
dependabot[bot] 2025-02-12 12:53:28 +00:00 committed by GitHub
parent 5910af5429
commit 16a15c84fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -70,7 +70,7 @@
<!-- ============================= Versions ============================== -->
<!-- ===================================================================== -->
<version.io.micronaut>4.7.4</version.io.micronaut>
<version.io.micronaut>4.7.5</version.io.micronaut>
</properties>

View file

@ -7,12 +7,13 @@ for (String log : logs) {
if (!log.contains("test-output-marker")) {
continue;
}
if (java.util.regex.Pattern.matches(expected, log)) {
if (java.util.regex.Pattern.matches(expected, log.replaceAll("\u001B\\[[;\\d]*m", ""))) {
return true;
} else {
System.out.println("marker found, but formatting invalid:");
System.out.println("[EXPECTED] " + expected);
System.out.println("[ACTUAL] " + log);
System.out.println("[BASE64] " + Base64.getEncoder().encodeToString(log.getBytes()));
return false;
}
}

View file

@ -7,12 +7,13 @@ for (String log : logs) {
if (!log.contains("test-output-marker")) {
continue;
}
if (java.util.regex.Pattern.matches(expected, log)) {
if (java.util.regex.Pattern.matches(expected, log.replaceAll("\u001B\\[[;\\d]*m", ""))) {
return true;
} else {
System.out.println("marker found, but formatting invalid:");
System.out.println("[EXPECTED] " + expected);
System.out.println("[ACTUAL] " + log);
System.out.println("[BASE64] " + Base64.getEncoder().encodeToString(log.getBytes()));
return false;
}
}