Skip to content

Commit 936b5ec

Browse files
authored
ci: bump environment (#7630)
1 parent 1a3103a commit 936b5ec

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
MONGODB_STORAGE_ENGINE: wiredTiger
107107
NODE_VERSION: 14.18.1
108108
- name: MongoDB 4.4, ReplicaSet, WiredTiger
109-
MONGODB_VERSION: 4.4.9
109+
MONGODB_VERSION: 4.4.10
110110
MONGODB_TOPOLOGY: replicaset
111111
MONGODB_STORAGE_ENGINE: wiredTiger
112112
NODE_VERSION: 14.18.1
@@ -127,17 +127,17 @@ jobs:
127127
NODE_VERSION: 14.18.1
128128
- name: Redis Cache
129129
PARSE_SERVER_TEST_CACHE: redis
130-
MONGODB_VERSION: 4.4.9
130+
MONGODB_VERSION: 4.4.10
131131
MONGODB_TOPOLOGY: standalone
132132
MONGODB_STORAGE_ENGINE: wiredTiger
133133
NODE_VERSION: 14.18.1
134134
- name: Node 12
135-
MONGODB_VERSION: 4.4.9
135+
MONGODB_VERSION: 4.4.10
136136
MONGODB_TOPOLOGY: standalone
137137
MONGODB_STORAGE_ENGINE: wiredTiger
138138
NODE_VERSION: 12.22.7
139139
- name: Node 15
140-
MONGODB_VERSION: 4.4.9
140+
MONGODB_VERSION: 4.4.10
141141
MONGODB_TOPOLOGY: standalone
142142
MONGODB_STORAGE_ENGINE: wiredTiger
143143
NODE_VERSION: 15.14.0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Parse Server is continuously tested with the most recent releases of MongoDB to
125125
|-------------|----------------|------------------|--------------------|
126126
| MongoDB 4.0 | 4.0.27 | April 2022 | ✅ Fully compatible |
127127
| MongoDB 4.2 | 4.2.17 | TBD | ✅ Fully compatible |
128-
| MongoDB 4.4 | 4.4.9 | TBD | ✅ Fully compatible |
128+
| MongoDB 4.4 | 4.4.10 | TBD | ✅ Fully compatible |
129129
| MongoDB 5.0 | 5.0.3 | January 2024 | ✅ Fully compatible |
130130

131131
#### PostgreSQL

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@
114114
"test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion",
115115
"test:mongodb:4.0.27": "npm run test:mongodb --dbversion=4.0.27",
116116
"test:mongodb:4.2.17": "npm run test:mongodb --dbversion=4.2.17",
117-
"test:mongodb:4.4.9": "npm run test:mongodb --dbversion=4.4.9",
117+
"test:mongodb:4.4.10": "npm run test:mongodb --dbversion=4.4.10",
118118
"posttest:mongodb": "mongodb-runner stop",
119-
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.9} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
120-
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.9} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
119+
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.10} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
120+
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.10} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
121121
"test": "npm run testonly",
122-
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.9} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
123-
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.9} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
122+
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.10} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
123+
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.10} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
124124
"start": "node ./bin/parse-server",
125125
"prettier": "prettier --write {src,spec}/{**/*,*}.js",
126126
"prepare": "npm run build",

0 commit comments

Comments
 (0)