This is an automated email from the ASF dual-hosted git repository. reschke pushed a commit to branch OAK-11970-for-1.22 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit c764bc8fd90c6a89661107f65f5e5eec6cb8714b 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 95b86550d0..efae76e21d 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 @@ -43,7 +43,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;
