parse-server 5.3.0-alpha.29 → 5.3.0-alpha.30
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 +2 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
[](https://github.com/parse-community/parse-dashboard/releases)
|
|
9
9
|
|
|
10
10
|
[](https://nodejs.org)
|
|
11
|
-
[](https://www.mongodb.com)
|
|
11
|
+
[](https://www.mongodb.com)
|
|
12
12
|
[](https://www.postgresql.org)
|
|
13
13
|
|
|
14
14
|
[](https://www.npmjs.com/package/parse-server)
|
|
@@ -142,7 +142,7 @@ Parse Server is continuously tested with the most recent releases of MongoDB to
|
|
|
142
142
|
| MongoDB 4.2 | 4.2.19 | April 2023 | ✅ Yes |
|
|
143
143
|
| MongoDB 4.4 | 4.4.13 | February 2024 | ✅ Yes |
|
|
144
144
|
| MongoDB 5.3 | 5.3.2 | October 2024 | ✅ Yes |
|
|
145
|
-
| MongoDB 6.0
|
|
145
|
+
| MongoDB 6 | 6.0.2 | July 2025 | ✅ Yes |
|
|
146
146
|
|
|
147
147
|
#### PostgreSQL
|
|
148
148
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parse-server",
|
|
3
|
-
"version": "5.3.0-alpha.
|
|
3
|
+
"version": "5.3.0-alpha.30",
|
|
4
4
|
"description": "An express module providing a Parse-compatible API server",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
"test:mongodb:4.2.19": "npm run test:mongodb --dbversion=4.2.19",
|
|
120
120
|
"test:mongodb:4.4.13": "npm run test:mongodb --dbversion=4.4.13",
|
|
121
121
|
"test:mongodb:5.3.2": "npm run test:mongodb --dbversion=5.3.2",
|
|
122
|
+
"test:mongodb:6.0.2": "npm run test:mongodb --dbversion=6.0.2",
|
|
122
123
|
"posttest:mongodb": "mongodb-runner stop",
|
|
123
124
|
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
|
|
124
125
|
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
|