parse-server 5.2.1-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 +15 -13
  2. package/package.json +10 -8
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 |
@@ -122,22 +122,24 @@ 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
-
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 |
133
+
132
134
  #### PostgreSQL
133
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.
134
136
 
135
137
  | Version | PostGIS Version | End-of-Life | Parse Server Support End | Compatible |
136
138
  |-------------|-----------------|---------------|--------------------------|------------|
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 |
139
+ | Postgres 11 | 3.0, 3.1, 3.2 | November 2023 | April 2022 | ✅ Yes |
140
+ | Postgres 12 | 3.2 | November 2024 | April 2023 | ✅ Yes |
141
+ | Postgres 13 | 3.2 | November 2025 | April 2024 | ✅ Yes |
142
+ | Postgres 14 | 3.2 | November 2026 | April 2025 | ✅ Yes |
141
143
 
142
144
  ### Locally
143
145
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "parse-server",
3
- "version": "5.2.1-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": {
@@ -19,13 +19,13 @@
19
19
  ],
20
20
  "license": "BSD-3-Clause",
21
21
  "dependencies": {
22
+ "@apollo/client": "3.5.8",
22
23
  "@apollographql/graphql-playground-html": "1.6.29",
23
24
  "@graphql-tools/links": "8.2.2",
24
- "@apollo/client": "3.5.8",
25
25
  "@graphql-tools/stitch": "6.2.4",
26
26
  "@graphql-tools/utils": "6.2.4",
27
27
  "@parse/fs-files-adapter": "1.2.1",
28
- "@parse/push-adapter": "4.1.0",
28
+ "@parse/push-adapter": "4.1.2",
29
29
  "apollo-server-express": "2.25.2",
30
30
  "bcryptjs": "2.4.3",
31
31
  "body-parser": "1.19.1",
@@ -119,13 +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",
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",
123
125
  "posttest:mongodb": "mongodb-runner stop",
124
- "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.0.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
125
- "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.0.5} 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",
126
128
  "test": "npm run testonly",
127
- "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.0.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
128
- "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.0.5} 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",
129
131
  "start": "node ./bin/parse-server",
130
132
  "prettier": "prettier --write {src,spec}/{**/*,*}.js",
131
133
  "prepare": "npm run build",