You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by re...@apache.org on 2024/03/05 14:19:22 UTC

(jackrabbit-oak) branch OAK-10690 created (now 49fddc5812)

This is an automated email from the ASF dual-hosted git repository.

reschke pushed a change to branch OAK-10690
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


      at 49fddc5812 OAK-10690: Update docs and test config for recommended MongoDB version

This branch includes the following new commits:

     new 49fddc5812 OAK-10690: Update docs and test config for recommended MongoDB version

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



(jackrabbit-oak) 01/01: OAK-10690: Update docs and test config for recommended MongoDB version

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

reschke pushed a commit to branch OAK-10690
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git

commit 49fddc581281069932a712c9cc28d3457be94c55
Author: Julian Reschke <re...@apache.org>
AuthorDate: Tue Mar 5 15:19:02 2024 +0100

    OAK-10690: Update docs and test config for recommended MongoDB version
---
 oak-doc/src/site/markdown/nodestore/document/mongo-document-store.md    | 2 +-
 .../apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/oak-doc/src/site/markdown/nodestore/document/mongo-document-store.md b/oak-doc/src/site/markdown/nodestore/document/mongo-document-store.md
index b147433841..d0acb50047 100644
--- a/oak-doc/src/site/markdown/nodestore/document/mongo-document-store.md
+++ b/oak-doc/src/site/markdown/nodestore/document/mongo-document-store.md
@@ -39,7 +39,7 @@ Oak Release | MongoDB version
 1.8.0 - 1.8.6 | 3.4.x
 1.8.7 or newer | 3.6.x
 1.22.x or newer | 4.0.x
-1.40.0 or newer | 4.4.x
+1.62.0 or newer | 5.0 (soon 6.0)
 
 For production deployments use a replica-set with at least three mongod
 instances and a majority write concern. Fewer than three instances (e.g. two
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 1e16a5acb6..20fe2d75f4 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", "4.4");
+    private static final String VERSION = System.getProperty("mongo.version", "5.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;