Skip to content

Commit 754c127

Browse files
authored
bump ci env (#7415)
* bumped node version * bumped mongodb
1 parent 6d13aea commit 754c127

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

.github/workflows/ci.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches:
88
- '**'
99
env:
10-
NODE_VERSION: 14.16.1
10+
NODE_VERSION: 14.17.0
1111
PARSE_SERVER_TEST_TIMEOUT: 20000
1212
jobs:
1313
check-ci:
@@ -94,38 +94,38 @@ 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
100-
NODE_VERSION: 14.16.1
100+
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
105-
NODE_VERSION: 14.16.1
105+
NODE_VERSION: 14.17.0
106106
- name: MongoDB 4.0, ReplicaSet, WiredTiger
107107
MONGODB_VERSION: 4.0.23
108108
MONGODB_TOPOLOGY: replicaset
109109
MONGODB_STORAGE_ENGINE: wiredTiger
110-
NODE_VERSION: 14.16.1
110+
NODE_VERSION: 14.17.0
111111
- name: MongoDB 4.0, Standalone, MMAPv1
112112
MONGODB_VERSION: 4.0.23
113113
MONGODB_TOPOLOGY: standalone
114114
MONGODB_STORAGE_ENGINE: mmapv1
115-
NODE_VERSION: 14.16.1
115+
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
121-
NODE_VERSION: 14.16.1
121+
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Parse Server is continuously tested with the most recent releases of Node.js to
115115
| Version | Latest Version | End-of-Life Date | Compatibility |
116116
|------------|----------------|------------------|--------------------|
117117
| Node.js 12 | 12.22.1 | April 2022 | ✅ Fully compatible |
118-
| Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible |
118+
| Node.js 14 | 14.17.0 | April 2023 | ✅ Fully compatible |
119119
| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible |
120120

121121
#### MongoDB
@@ -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

+6-6
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)