Skip to content

Commit f5154c4

Browse files
committed
upgrade to MongoDB 5.3
1 parent 61ba4d2 commit f5154c4

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ jobs:
141141
MONGODB_TOPOLOGY: replicaset
142142
MONGODB_STORAGE_ENGINE: wiredTiger
143143
NODE_VERSION: 18.1.0
144-
- name: MongoDB 5.2, ReplicaSet, WiredTiger
145-
MONGODB_VERSION: 5.2.1
144+
- name: MongoDB 5.3, ReplicaSet, WiredTiger
145+
MONGODB_VERSION: 5.3.2
146146
MONGODB_TOPOLOGY: replicaset
147147
MONGODB_STORAGE_ENGINE: wiredTiger
148148
NODE_VERSION: 18.1.0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Parse Server is continuously tested with the most recent releases of MongoDB to
141141
| MongoDB 4.0 | 4.0.28 | April 2022 | ✅ Yes |
142142
| MongoDB 4.2 | 4.2.19 | April 2023 | ✅ Yes |
143143
| MongoDB 4.4 | 4.4.13 | February 2024 | ✅ Yes |
144-
| MongoDB 5.2 | 5.2.1 | October 2024 | ✅ Yes |
144+
| MongoDB 5.3 | 5.3.2 | October 2024 | ✅ Yes |
145145
| MongoDB 6.0 | - | July 2025 | ❌ Not tested |
146146

147147
#### PostgreSQL

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,13 @@
118118
"test:mongodb:4.0.28": "npm run test:mongodb --dbversion=4.0.28",
119119
"test:mongodb:4.2.19": "npm run test:mongodb --dbversion=4.2.19",
120120
"test:mongodb:4.4.13": "npm run test:mongodb --dbversion=4.4.13",
121-
"test:mongodb:5.2.1": "npm run test:mongodb --dbversion=5.2.1",
121+
"test:mongodb:5.3.2": "npm run test:mongodb --dbversion=5.3.2",
122122
"posttest:mongodb": "mongodb-runner stop",
123-
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.2.1} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
124-
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.2.1} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
123+
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
124+
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
125125
"test": "npm run testonly",
126-
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.2.1} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
127-
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.2.1} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
126+
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
127+
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
128128
"start": "node ./bin/parse-server",
129129
"prettier": "prettier --write {src,spec}/{**/*,*}.js",
130130
"prepare": "npm run build",

0 commit comments

Comments
 (0)