parse-server 5.3.0-alpha.2 → 5.3.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -7
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -122,13 +122,14 @@ Parse Server is continuously tested with the most recent releases of Node.js to
122
122
  #### MongoDB
123
123
  Parse Server is continuously tested with the most recent releases of MongoDB to ensure compatibility. We follow the [MongoDB support schedule](https://www.mongodb.com/support-policy) and only test against versions that are officially supported and have not reached their end-of-life date.
124
124
 
125
- | Version | Latest Version | End-of-Life | Compatible |
126
- |-------------|----------------|--------------|------------|
127
- | MongoDB 4.0 | 4.0.27 | April 2022 | ✅ Yes |
128
- | MongoDB 4.2 | 4.2.17 | TBD | ✅ Yes |
129
- | MongoDB 4.4 | 4.4.10 | TBD | ✅ Yes |
130
- | MongoDB 5.0 | 5.0.3 | January 2024 | ✅ Yes |
131
- | MongoDB 5.1 | 5.1.0 | January 2024 | ✅ Yes |
125
+ | Version | Latest Version | End-of-Life | Compatible |
126
+ |-------------|----------------|-------------|------------|
127
+ | MongoDB 4.0 | 4.0.27 | April 2022 | ✅ Yes |
128
+ | MongoDB 4.2 | 4.2.17 | TBD | ✅ Yes |
129
+ | MongoDB 4.4 | 4.4.10 | TBD | ✅ Yes |
130
+ | MongoDB 5.0 | 5.0.6 | TBD | ✅ Yes |
131
+ | MongoDB 5.1 | 5.1.1 | TBD | ✅ Yes |
132
+ | MongoDB 5.2 | 5.2.1 | TBD | ✅ Yes |
132
133
 
133
134
  #### PostgreSQL
134
135
  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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "parse-server",
3
- "version": "5.3.0-alpha.2",
3
+ "version": "5.3.0-alpha.3",
4
4
  "description": "An express module providing a Parse-compatible API server",
5
5
  "main": "lib/index.js",
6
6
  "repository": {
@@ -119,14 +119,15 @@
119
119
  "test:mongodb:4.0.27": "npm run test:mongodb --dbversion=4.0.27",
120
120
  "test:mongodb:4.2.17": "npm run test:mongodb --dbversion=4.2.17",
121
121
  "test:mongodb:4.4.10": "npm run test:mongodb --dbversion=4.4.10",
122
- "test:mongodb:5.0.5": "npm run test:mongodb --dbversion=5.0.5",
123
- "test:mongodb:5.1.0": "npm run test:mongodb --dbversion=5.1.0",
122
+ "test:mongodb:5.0.6": "npm run test:mongodb --dbversion=5.0.6",
123
+ "test:mongodb:5.1.1": "npm run test:mongodb --dbversion=5.1.1",
124
+ "test:mongodb:5.2.1": "npm run test:mongodb --dbversion=5.2.1",
124
125
  "posttest:mongodb": "mongodb-runner stop",
125
- "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.1.0} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
126
- "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.1.0} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
126
+ "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.2.1} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
127
+ "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.2.1} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
127
128
  "test": "npm run testonly",
128
- "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.1.0} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
129
- "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.1.0} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
129
+ "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.2.1} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
130
+ "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.2.1} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
130
131
  "start": "node ./bin/parse-server",
131
132
  "prettier": "prettier --write {src,spec}/{**/*,*}.js",
132
133
  "prepare": "npm run build",