This is an automated email from the ASF dual-hosted git repository.
daim pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/trunk by this push:
new eae8707845 OAK-11970 : updated MongoDocker Rule to use Mongo 8 (#2565)
eae8707845 is described below
commit eae8707845256adfc5e3cb3dfae0a24961b9a239
Author: Rishabh Kumar <[email protected]>
AuthorDate: Thu Oct 9 14:59:39 2025 +0530
OAK-11970 : updated MongoDocker Rule to use Mongo 8 (#2565)
---
.../apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java
b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java
index 77f8e599a2..e534162c9b 100644
---
a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java
+++
b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java
@@ -44,7 +44,7 @@ public class MongoDockerRule extends ExternalResource {
private static final Logger LOG =
LoggerFactory.getLogger(MongoDockerRule.class);
- private static final String VERSION = System.getProperty("mongo.version",
"5.0");
+ private static final String VERSION = System.getProperty("mongo.version",
"8.0");
private static final String MONGO_IMAGE = "mongo:" + VERSION;
private static final AtomicReference<Exception> STARTUP_EXCEPTION = new
AtomicReference<>();
private static final int DEFAULT_MONGO_PORT = 27017;