This is an automated email from the ASF dual-hosted git repository. daim pushed a commit to branch OAK-11970 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 8b966f2c1ab3d37b45b2efe04ba3460232e23731 Author: rishabhdaim <[email protected]> AuthorDate: Wed Oct 8 23:10:13 2025 +0530 OAK-11970 : updated MongoDocker Rule to use Mongo 8 --- .../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;
