Skip to content

Commit bcd6067

Browse files
committed
bumped mongodb
1 parent eedc0f5 commit bcd6067

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ jobs:
9494
matrix:
9595
include:
9696
- name: MongoDB 4.4, ReplicaSet, WiredTiger
97-
MONGODB_VERSION: 4.4.4
97+
MONGODB_VERSION: 4.4.6
9898
MONGODB_TOPOLOGY: replicaset
9999
MONGODB_STORAGE_ENGINE: wiredTiger
100100
NODE_VERSION: 14.17.0
101101
- name: MongoDB 4.2, ReplicaSet, WiredTiger
102-
MONGODB_VERSION: 4.2.13
102+
MONGODB_VERSION: 4.2.14
103103
MONGODB_TOPOLOGY: replicaset
104104
MONGODB_STORAGE_ENGINE: wiredTiger
105105
NODE_VERSION: 14.17.0
@@ -115,17 +115,17 @@ jobs:
115115
NODE_VERSION: 14.17.0
116116
- name: Redis Cache
117117
PARSE_SERVER_TEST_CACHE: redis
118-
MONGODB_VERSION: 4.4.4
118+
MONGODB_VERSION: 4.4.6
119119
MONGODB_TOPOLOGY: standalone
120120
MONGODB_STORAGE_ENGINE: wiredTiger
121121
NODE_VERSION: 14.17.0
122122
- name: Node 12
123-
MONGODB_VERSION: 4.4.4
123+
MONGODB_VERSION: 4.4.6
124124
MONGODB_TOPOLOGY: standalone
125125
MONGODB_STORAGE_ENGINE: wiredTiger
126126
NODE_VERSION: 12.22.1
127127
- name: Node 15
128-
MONGODB_VERSION: 4.4.4
128+
MONGODB_VERSION: 4.4.6
129129
MONGODB_TOPOLOGY: standalone
130130
MONGODB_STORAGE_ENGINE: wiredTiger
131131
NODE_VERSION: 15.14.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ Parse Server is continuously tested with the most recent releases of MongoDB to
124124
| Version | Latest Version | End-of-Life Date | Compatibility |
125125
|-------------|----------------|------------------|--------------------|
126126
| MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible |
127-
| MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible |
128-
| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible |
127+
| MongoDB 4.2 | 4.2.14 | TBD | ✅ Fully compatible |
128+
| MongoDB 4.4 | 4.4.6 | TBD | ✅ Fully compatible |
129129

130130
#### PostgreSQL
131131
Parse Server is continuously tested with the most recent releases of PostgreSQL and PostGIS to ensure compatibility, using [PostGIS docker images](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&ordering=last_updated). We follow the [PostgreSQL support schedule](https://www.postgresql.org/support/versioning) and [PostGIS support schedule](https://www.postgis.net/eol_policy/) and only test against versions that are officially supported and have not reached their end-of-life date. Due to the extensive PostgreSQL support duration of 5 years, Parse Server drops support if a version is older than 3.5 years and a newer version has been available for at least 2.5 years.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,14 @@
112112
"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",
113113
"test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion",
114114
"test:mongodb:4.0.23": "npm run test:mongodb --dbversion=4.0.23",
115-
"test:mongodb:4.2.13": "npm run test:mongodb --dbversion=4.2.13",
116-
"test:mongodb:4.4.4": "npm run test:mongodb --dbversion=4.4.4",
115+
"test:mongodb:4.2.14": "npm run test:mongodb --dbversion=4.2.14",
116+
"test:mongodb:4.4.6": "npm run test:mongodb --dbversion=4.4.6",
117117
"posttest:mongodb": "mongodb-runner stop",
118-
"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",
119-
"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",
118+
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.6} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
119+
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.6} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
120120
"test": "npm run testonly",
121-
"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",
122-
"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",
121+
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.6} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
122+
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.6} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
123123
"start": "node ./bin/parse-server",
124124
"prettier": "prettier --write '{src,spec}/{**/*,*}.js'",
125125
"prepare": "npm run build",

0 commit comments

Comments
 (0)