parse-server 5.2.1-alpha.2 → 5.3.0-alpha.1
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 +12 -11
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -112,8 +112,8 @@ Before you start make sure you have installed:
|
|
|
112
112
|
#### Node.js
|
|
113
113
|
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.
|
|
114
114
|
|
|
115
|
-
| Version | Latest Version | End-of-Life | Compatible
|
|
116
|
-
|
|
115
|
+
| Version | Latest Version | End-of-Life | Compatible |
|
|
116
|
+
|------------|----------------|-------------|--------------|
|
|
117
117
|
| Node.js 12 | 12.22.7 | April 2022 | ✅ Yes |
|
|
118
118
|
| Node.js 14 | 14.18.1 | April 2023 | ✅ Yes |
|
|
119
119
|
| Node.js 16 | 16.13.0 | April 2024 | ✅ Yes |
|
|
@@ -124,20 +124,21 @@ Parse Server is continuously tested with the most recent releases of MongoDB to
|
|
|
124
124
|
|
|
125
125
|
| Version | Latest Version | End-of-Life | Compatible |
|
|
126
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
|
-
|
|
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 |
|
|
132
|
+
|
|
132
133
|
#### PostgreSQL
|
|
133
134
|
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.
|
|
134
135
|
|
|
135
136
|
| Version | PostGIS Version | End-of-Life | Parse Server Support End | Compatible |
|
|
136
137
|
|-------------|-----------------|---------------|--------------------------|------------|
|
|
137
|
-
| Postgres 11 | 3.0, 3.1, 3.2 | November 2023 | April 2022 | ✅ Yes
|
|
138
|
-
| Postgres 12 | 3.2 | November 2024 | April 2023 | ✅ Yes
|
|
139
|
-
| Postgres 13 | 3.2 | November 2025 | April 2024 | ✅ Yes
|
|
140
|
-
| Postgres 14 | 3.2 | November 2026 | April 2025 | ✅ Yes
|
|
138
|
+
| Postgres 11 | 3.0, 3.1, 3.2 | November 2023 | April 2022 | ✅ Yes |
|
|
139
|
+
| Postgres 12 | 3.2 | November 2024 | April 2023 | ✅ Yes |
|
|
140
|
+
| Postgres 13 | 3.2 | November 2025 | April 2024 | ✅ Yes |
|
|
141
|
+
| Postgres 14 | 3.2 | November 2026 | April 2025 | ✅ Yes |
|
|
141
142
|
|
|
142
143
|
### Locally
|
|
143
144
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parse-server",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0-alpha.1",
|
|
4
4
|
"description": "An express module providing a Parse-compatible API server",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -120,12 +120,13 @@
|
|
|
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
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",
|
|
123
124
|
"posttest:mongodb": "mongodb-runner stop",
|
|
124
|
-
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.0
|
|
125
|
-
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.0
|
|
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
127
|
"test": "npm run testonly",
|
|
127
|
-
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.0
|
|
128
|
-
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.0
|
|
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
130
|
"start": "node ./bin/parse-server",
|
|
130
131
|
"prettier": "prettier --write {src,spec}/{**/*,*}.js",
|
|
131
132
|
"prepare": "npm run build",
|