This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/main by this push:
new b760a8364ac Bump com.approvaltests:approvaltests from 26.7.1 to 27.0.0
b760a8364ac is described below
commit b760a8364acd466d9fa574e86806a85ad30a9a21
Author: andi-huber <[email protected]>
AuthorDate: Mon Feb 16 08:51:53 2026 +0100
Bump com.approvaltests:approvaltests from 26.7.1 to 27.0.0
breaking changes upstream
---
bom/pom.xml | 2 +-
.../causeway/testing/integtestsupport/applib/ApprovalsOptions.java | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/bom/pom.xml b/bom/pom.xml
index 5e4e2294ef4..d9fd7162a6b 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -66,7 +66,7 @@ identified
<asciidoctorj.version>3.0.1</asciidoctorj.version>
<asm.version>9.9.1</asm.version> <!-- keep in sync with
org.eclipse.persistence:org.eclipse.persistence.asm -->
- <approvaltests.version>26.7.1</approvaltests.version>
+ <approvaltests.version>27.0.0</approvaltests.version>
<assertj-guava.version>3.27.7</assertj-guava.version>
diff --git
a/testing/integtestsupport/applib/src/main/java/org/apache/causeway/testing/integtestsupport/applib/ApprovalsOptions.java
b/testing/integtestsupport/applib/src/main/java/org/apache/causeway/testing/integtestsupport/applib/ApprovalsOptions.java
index 37517bd92ed..c7091043bde 100644
---
a/testing/integtestsupport/applib/src/main/java/org/apache/causeway/testing/integtestsupport/applib/ApprovalsOptions.java
+++
b/testing/integtestsupport/applib/src/main/java/org/apache/causeway/testing/integtestsupport/applib/ApprovalsOptions.java
@@ -24,7 +24,7 @@
import org.approvaltests.core.Options;
import org.approvaltests.core.Scrubber;
-import org.approvaltests.reporters.linux.MeldMergeReporter;
+import org.approvaltests.reporters.linux.ReportWithMeldMergeLinux;
import org.apache.causeway.commons.internal.base._Strings;
import org.apache.causeway.commons.internal.collections._Lists;
@@ -41,8 +41,8 @@ public static Options defaultOptions() {
var opts = new Options();
// on Linux, at time of writing, the default reporter find
mechanism throws an exception while evaluating Windows Diff Reporters;
// this is a workaround, provided you are on Linux and have
Meld installed
- return MeldMergeReporter.INSTANCE.checkFileExists()
- ? opts.withReporter(MeldMergeReporter.INSTANCE)
+ return ReportWithMeldMergeLinux.INSTANCE.checkFileExists()
+ ? opts.withReporter(ReportWithMeldMergeLinux.INSTANCE)
: opts;
}