Skip to content

Commit ce9c810

Browse files
committed
bumped MongoDB to 4.4.5
1 parent 0becb0c commit ce9c810

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
@@ -57,7 +57,7 @@ jobs:
5757
matrix:
5858
include:
5959
- name: Mongo 4.4, ReplicaSet, WiredTiger
60-
MONGODB_VERSION: 4.4.4
60+
MONGODB_VERSION: 4.4.5
6161
MONGODB_TOPOLOGY: replicaset
6262
MONGODB_STORAGE_ENGINE: wiredTiger
6363
NODE_VERSION: 14.16.0
@@ -78,17 +78,17 @@ jobs:
7878
NODE_VERSION: 14.16.0
7979
- name: Redis Cache
8080
PARSE_SERVER_TEST_CACHE: redis
81-
MONGODB_VERSION: 4.4.4
81+
MONGODB_VERSION: 4.4.5
8282
MONGODB_TOPOLOGY: standalone
8383
MONGODB_STORAGE_ENGINE: wiredTiger
8484
NODE_VERSION: 14.16.0
8585
- name: Node 12
86-
MONGODB_VERSION: 4.4.4
86+
MONGODB_VERSION: 4.4.5
8787
MONGODB_TOPOLOGY: standalone
8888
MONGODB_STORAGE_ENGINE: wiredTiger
8989
NODE_VERSION: 12.22.0
9090
- name: Node 15
91-
MONGODB_VERSION: 4.4.4
91+
MONGODB_VERSION: 4.4.5
9292
MONGODB_TOPOLOGY: standalone
9393
MONGODB_STORAGE_ENGINE: wiredTiger
9494
NODE_VERSION: 15.13.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.23 | January 2022 | ✅ Fully compatible |
127127
| MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible |
128-
| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible |
128+
| MongoDB 4.4 | 4.4.5 | TBD | ✅ Fully compatible |
129129

130130
#### PostgreSQL
131131
Parse Server is continuously tested with the most recent releases of PostgreSQL and PostGIS to ensure compatibility. We follow the [PostGIS docker tags](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&ordering=last_updated) and only test against versions that are officially supported and have not reached their end-of-life date.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@
112112
"test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion",
113113
"test:mongodb:4.0.23": "npm run test:mongodb --dbversion=4.0.23",
114114
"test:mongodb:4.2.13": "npm run test:mongodb --dbversion=4.2.13",
115-
"test:mongodb:4.4.4": "npm run test:mongodb --dbversion=4.4.4",
115+
"test:mongodb:4.4.5": "npm run test:mongodb --dbversion=4.4.5",
116116
"posttest:mongodb": "mongodb-runner stop",
117-
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
118-
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
117+
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
118+
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
119119
"test": "npm run testonly",
120-
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
121-
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
120+
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
121+
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
122122
"start": "node ./bin/parse-server",
123123
"prettier": "prettier --write '{src,spec}/{**/*,*}.js'",
124124
"prepare": "npm run build",

0 commit comments

Comments
 (0)