parse-server 8.0.0-alpha.2 → 8.0.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.
- package/README.md +10 -13
- package/package.json +7 -10
package/README.md
CHANGED
|
@@ -127,24 +127,21 @@ Before you start make sure you have installed:
|
|
|
127
127
|
|
|
128
128
|
Parse Server is continuously tested with the most recent releases of Node.js to ensure compatibility. We follow the [Node.js Long Term Support plan](https://github.com/nodejs/Release) and only test against versions that are officially supported and have not reached their end-of-life date.
|
|
129
129
|
|
|
130
|
-
| Version |
|
|
131
|
-
|
|
132
|
-
| Node.js 18 | 18.20.4
|
|
133
|
-
| Node.js 20 | 20.18.0
|
|
134
|
-
| Node.js 22 | 22.12.0
|
|
130
|
+
| Version | Minimum Version | End-of-Life | Compatible |
|
|
131
|
+
|------------|-----------------|-------------|------------|
|
|
132
|
+
| Node.js 18 | 18.20.4 | April 2025 | ✅ Yes |
|
|
133
|
+
| Node.js 20 | 20.18.0 | April 2026 | ✅ Yes |
|
|
134
|
+
| Node.js 22 | 22.12.0 | April 2027 | ✅ Yes |
|
|
135
135
|
|
|
136
136
|
#### MongoDB
|
|
137
137
|
|
|
138
138
|
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 [MongoDB lifecycle schedule](https://www.mongodb.com/support-policy/lifecycles) and only test against versions that are officially supported and have not reached their end-of-life date. MongoDB "rapid releases" are ignored as these are considered pre-releases of the next major version.
|
|
139
139
|
|
|
140
|
-
| Version
|
|
141
|
-
|
|
142
|
-
| MongoDB
|
|
143
|
-
| MongoDB
|
|
144
|
-
| MongoDB
|
|
145
|
-
| MongoDB 6 | 6.0.14 | July 2025 | ✅ Yes |
|
|
146
|
-
| MongoDB 7 | 7.0.8 | TDB | ✅ Yes |
|
|
147
|
-
| MongoDB 8 | 8.0.0 | TDB | ✅ Yes |
|
|
140
|
+
| Version | Minimum Version | End-of-Life | Compatible |
|
|
141
|
+
|-----------|-----------------|-------------|------------|
|
|
142
|
+
| MongoDB 6 | 6.0.19 | July 2025 | ✅ Yes |
|
|
143
|
+
| MongoDB 7 | 7.0.16 | August 2026 | ✅ Yes |
|
|
144
|
+
| MongoDB 8 | 8.0.4 | TDB | ✅ Yes |
|
|
148
145
|
|
|
149
146
|
#### PostgreSQL
|
|
150
147
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parse-server",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.3",
|
|
4
4
|
"description": "An express module providing a Parse-compatible API server",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -121,18 +121,15 @@
|
|
|
121
121
|
"test:mongodb:runnerstart": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner start -t ${MONGODB_TOPOLOGY} --version ${MONGODB_VERSION} -- --port 27017",
|
|
122
122
|
"test:mongodb:testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 jasmine",
|
|
123
123
|
"test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion",
|
|
124
|
-
"test:mongodb:
|
|
125
|
-
"test:mongodb:
|
|
126
|
-
"test:mongodb:
|
|
127
|
-
"test:mongodb:6.0.2": "npm run test:mongodb --dbversion=6.0.2",
|
|
128
|
-
"test:mongodb:7.0.1": "npm run test:mongodb --dbversion=7.0.1",
|
|
129
|
-
"test:mongodb:8.0.3": "npm run test:mongodb --dbversion=8.0.3",
|
|
124
|
+
"test:mongodb:6.0.19": "npm run test:mongodb --dbversion=6.0.19",
|
|
125
|
+
"test:mongodb:7.0.16": "npm run test:mongodb --dbversion=7.0.16",
|
|
126
|
+
"test:mongodb:8.0.4": "npm run test:mongodb --dbversion=8.0.4",
|
|
130
127
|
"test:postgres:testonly": "cross-env PARSE_SERVER_TEST_DB=postgres PARSE_SERVER_TEST_DATABASE_URI=postgres://postgres:password@localhost:5432/parse_server_postgres_adapter_test_database npm run testonly",
|
|
131
|
-
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=
|
|
132
|
-
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=
|
|
128
|
+
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=8.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner start -t ${MONGODB_TOPOLOGY} --version ${MONGODB_VERSION} -- --port 27017",
|
|
129
|
+
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=8.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 jasmine",
|
|
133
130
|
"test": "npm run testonly",
|
|
134
131
|
"posttest": "cross-env mongodb-runner stop --all",
|
|
135
|
-
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=
|
|
132
|
+
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=8.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 nyc jasmine",
|
|
136
133
|
"start": "node ./bin/parse-server",
|
|
137
134
|
"prettier": "prettier --write {src,spec}/{**/*,*}.js",
|
|
138
135
|
"prepare": "npm run build",
|