diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc23585d79..050739c404 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,17 +111,17 @@ jobs: MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.17.6 - name: MongoDB 4.2, ReplicaSet, WiredTiger - MONGODB_VERSION: 4.2.15 + MONGODB_VERSION: 4.2.16 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.17.6 - name: MongoDB 4.0, ReplicaSet, WiredTiger - MONGODB_VERSION: 4.0.25 + MONGODB_VERSION: 4.0.27 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.17.6 - name: MongoDB 4.0, Standalone, MMAPv1 - MONGODB_VERSION: 4.0.25 + MONGODB_VERSION: 4.0.27 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: mmapv1 NODE_VERSION: 14.17.6 diff --git a/README.md b/README.md index 7137ec153c..6e5ffaeda6 100644 --- a/README.md +++ b/README.md @@ -123,8 +123,8 @@ Parse Server is continuously tested with the most recent releases of MongoDB to | Version | Latest Version | End-of-Life Date | Compatibility | |-------------|----------------|------------------|--------------------| -| MongoDB 4.0 | 4.0.25 | April 2022 | ✅ Fully compatible | -| MongoDB 4.2 | 4.2.15 | TBD | ✅ Fully compatible | +| MongoDB 4.0 | 4.0.27 | April 2022 | ✅ Fully compatible | +| MongoDB 4.2 | 4.2.16 | TBD | ✅ Fully compatible | | MongoDB 4.4 | 4.4.8 | TBD | ✅ Fully compatible | | MongoDB 5.0 | 5.0.2 | January 2024 | ✅ Fully compatible | diff --git a/package.json b/package.json index d1c620e45d..38635d0bac 100644 --- a/package.json +++ b/package.json @@ -111,8 +111,8 @@ "test:mongodb:runnerstart": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start", "test:mongodb:testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine", "test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion", - "test:mongodb:4.0.25": "npm run test:mongodb --dbversion=4.0.25", - "test:mongodb:4.2.15": "npm run test:mongodb --dbversion=4.2.15", + "test:mongodb:4.0.27": "npm run test:mongodb --dbversion=4.0.27", + "test:mongodb:4.2.16": "npm run test:mongodb --dbversion=4.2.16", "test:mongodb:4.4.8": "npm run test:mongodb --dbversion=4.4.8", "posttest:mongodb": "mongodb-runner stop", "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.8} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",