Skip to content

Commit dc1133d

Browse files
authored
Change tests from 4.4.3 to 4.4.4 (#7184)
* Change tests from 4.4.3 to 4.4.4 * Add entry to changelog
1 parent 762cddd commit dc1133d

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
matrix:
3838
include:
3939
- name: Mongo 4.4, ReplicaSet, WiredTiger
40-
MONGODB_VERSION: 4.4.3
40+
MONGODB_VERSION: 4.4.4
4141
MONGODB_TOPOLOGY: replicaset
4242
MONGODB_STORAGE_ENGINE: wiredTiger
4343
NODE_VERSION: 14.15.5
@@ -58,22 +58,22 @@ jobs:
5858
NODE_VERSION: 14.15.5
5959
- name: Redis Cache
6060
PARSE_SERVER_TEST_CACHE: redis
61-
MONGODB_VERSION: 4.4.3
61+
MONGODB_VERSION: 4.4.4
6262
MONGODB_TOPOLOGY: standalone
6363
MONGODB_STORAGE_ENGINE: wiredTiger
6464
NODE_VERSION: 14.15.5
6565
- name: Node 10
66-
MONGODB_VERSION: 4.4.3
66+
MONGODB_VERSION: 4.4.4
6767
MONGODB_TOPOLOGY: standalone
6868
MONGODB_STORAGE_ENGINE: wiredTiger
6969
NODE_VERSION: 10.23.3
7070
- name: Node 12
71-
MONGODB_VERSION: 4.4.3
71+
MONGODB_VERSION: 4.4.4
7272
MONGODB_TOPOLOGY: standalone
7373
MONGODB_STORAGE_ENGINE: wiredTiger
7474
NODE_VERSION: 12.20.2
7575
- name: Node 15
76-
MONGODB_VERSION: 4.4.3
76+
MONGODB_VERSION: 4.4.4
7777
MONGODB_TOPOLOGY: standalone
7878
MONGODB_STORAGE_ENGINE: wiredTiger
7979
NODE_VERSION: 15.8.0

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
__BREAKING CHANGES:__
77
- NEW: Added file upload restriction. File upload is now only allowed for authenticated users by default for improved security. To allow file upload also for Anonymous Users or Public, set the `fileUpload` parameter in the [Parse Server Options](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html). [#7071](https://github.com/parse-community/parse-server/pull/7071). Thanks to [dblythy](https://github.com/dblythy), [Manuel Trezza](https://github.com/mtrezza).
88
___
9+
- UPGRADE: Bump tests to use Mongo 4.4.4 [#7184](https://github.com/parse-community/parse-server/pull/7184). Thanks to [Antonio Davi Macedo Coelho de Castro](https://github.com/davimacedo).
910
- NEW (EXPERIMENTAL): Added new page router with placeholder rendering and localization of custom and feature pages such as password reset and email verification. **Caution, this is an experimental feature that may not be appropriate for production.** [#6891](https://github.com/parse-community/parse-server/issues/6891). Thanks to [Manuel Trezza](https://github.com/mtrezza).
1011
- NEW: Added convenience method `Parse.Cloud.sendEmail(...)` to send email via email adapter in Cloud Code. [#7089](https://github.com/parse-community/parse-server/pull/7089). Thanks to [dblythy](https://github.com/dblythy)
1112
- NEW: LiveQuery support for $and, $nor, $containedBy, $geoWithin, $geoIntersects queries [#7113](https://github.com/parse-community/parse-server/pull/7113). Thanks to [dplewis](https://github.com/dplewis)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Parse Server is continuously tested with the most recent releases of MongoDB to
119119
| MongoDB 3.6 | 3.6.21 | April 2021 | ✅ Fully compatible |
120120
| MongoDB 4.0 | 4.0.22 | January 2022 | ✅ Fully compatible |
121121
| MongoDB 4.2 | 4.2.12 | TBD | ✅ Fully compatible |
122-
| MongoDB 4.4 | 4.4.3 | TBD | ✅ Fully compatible |
122+
| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible |
123123

124124
#### PostgreSQL
125125
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
@@ -110,13 +110,13 @@
110110
"test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion",
111111
"test:mongodb:4.0.22": "npm run test:mongodb --dbversion=4.0.22",
112112
"test:mongodb:4.2.12": "npm run test:mongodb --dbversion=4.2.12",
113-
"test:mongodb:4.4.3": "npm run test:mongodb --dbversion=4.4.3",
113+
"test:mongodb:4.4.4": "npm run test:mongodb --dbversion=4.4.4",
114114
"posttest:mongodb": "mongodb-runner stop",
115-
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.3} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
116-
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.3} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
115+
"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",
116+
"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",
117117
"test": "npm run testonly",
118-
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.3} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
119-
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.3} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
118+
"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",
119+
"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",
120120
"start": "node ./bin/parse-server",
121121
"prettier": "prettier --write '{src,spec}/{**/*,*}.js'",
122122
"prepare": "npm run build",

0 commit comments

Comments
 (0)