From ba8820b8bf64b0076096391422a43b0cccc9c3e4 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 11:52:46 +0200 Subject: [PATCH 01/20] bumped MongoDB to 4.4.5 --- .github/workflows/ci.yml | 8 ++++---- README.md | 2 +- package.json | 10 +++++----- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70abb020ee..e000fcf31f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: matrix: include: - name: Mongo 4.4, ReplicaSet, WiredTiger - MONGODB_VERSION: 4.4.4 + MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.0 @@ -78,17 +78,17 @@ jobs: NODE_VERSION: 14.16.0 - name: Redis Cache PARSE_SERVER_TEST_CACHE: redis - MONGODB_VERSION: 4.4.4 + MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.0 - name: Node 12 - MONGODB_VERSION: 4.4.4 + MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 12.22.0 - name: Node 15 - MONGODB_VERSION: 4.4.4 + MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 15.13.0 diff --git a/README.md b/README.md index da727e4e05..9758038d61 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ Parse Server is continuously tested with the most recent releases of MongoDB to | MongoDB 3.6 | 3.6.23 | April 2021 | ✅ Fully compatible | | MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | | MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | -| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | +| MongoDB 4.4 | 4.4.5 | TBD | ✅ Fully compatible | #### PostgreSQL Parse Server is continuously tested with the most recent releases of PostgreSQL and PostGIS to ensure compatibility. We follow the [PostGIS docker tags](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&ordering=last_updated) and only test against versions that are officially supported and have not reached their end-of-life date. diff --git a/package.json b/package.json index 7daeb5e21e..90c594992a 100644 --- a/package.json +++ b/package.json @@ -112,13 +112,13 @@ "test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion", "test:mongodb:4.0.23": "npm run test:mongodb --dbversion=4.0.23", "test:mongodb:4.2.13": "npm run test:mongodb --dbversion=4.2.13", - "test:mongodb:4.4.4": "npm run test:mongodb --dbversion=4.4.4", + "test:mongodb:4.4.5": "npm run test:mongodb --dbversion=4.4.5", "posttest:mongodb": "mongodb-runner stop", - "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start", - "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine", + "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start", + "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine", "test": "npm run testonly", - "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop", - "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine", + "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop", + "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine", "start": "node ./bin/parse-server", "prettier": "prettier --write '{src,spec}/{**/*,*}.js'", "prepare": "npm run build", From 7c4334498bd189e264921a867a29180d13b9ae06 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 11:54:06 +0200 Subject: [PATCH 02/20] bump Node to 14.16.1 --- .github/workflows/ci.yml | 12 ++++++------ README.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e000fcf31f..818b4688aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: - '**' env: COVERAGE_OPTION: ./node_modules/.bin/nyc - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 PARSE_SERVER_TEST_TIMEOUT: 20000 jobs: check-ci: @@ -60,28 +60,28 @@ jobs: MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Mongo 4.2, ReplicaSet, WiredTiger MONGODB_VERSION: 4.2.13 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Mongo 4.0, ReplicaSet, WiredTiger MONGODB_VERSION: 4.0.23 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Mongo 3.6, Standalone, MMAPv1 MONGODB_VERSION: 3.6.23 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: mmapv1 - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Redis Cache PARSE_SERVER_TEST_CACHE: redis MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Node 12 MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone diff --git a/README.md b/README.md index 9758038d61..07121e33d3 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Parse Server is continuously tested with the most recent releases of Node.js to | Version | Latest Patch Version | End-of-Life Date | Compatibility | |------------|----------------------|------------------|--------------------| | Node.js 12 | 12.22.0 | April 2022 | ✅ Fully compatible | -| Node.js 14 | 14.16.0 | April 2023 | ✅ Fully compatible | +| Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | | Node.js 15 | 15.13.0 | June 2021 | ✅ Fully compatible | #### MongoDB From 2e0af7e1e045fe38df6bde9a1c9b6faa90998293 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 11:54:59 +0200 Subject: [PATCH 03/20] removed obsolete COVERAGE_OPTION --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 818b4688aa..4009314507 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,6 @@ on: branches: - '**' env: - COVERAGE_OPTION: ./node_modules/.bin/nyc NODE_VERSION: 14.16.1 PARSE_SERVER_TEST_TIMEOUT: 20000 jobs: From 2b99aa8172c9803dc758ced9a56560acabb0590e Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 12:07:38 +0200 Subject: [PATCH 04/20] improved postges support note --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 07121e33d3..d0f8120350 100644 --- a/README.md +++ b/README.md @@ -129,14 +129,14 @@ Parse Server is continuously tested with the most recent releases of MongoDB to | MongoDB 4.4 | 4.4.5 | TBD | ✅ Fully compatible | #### PostgreSQL -Parse Server is continuously tested with the most recent releases of PostgreSQL and PostGIS to ensure compatibility. We follow the [PostGIS docker tags](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&ordering=last_updated) and only test against versions that are officially supported and have not reached their end-of-life date. - -| Version | PostGIS Version | End-of-Life Date | Compatibility | -|---------------|-----------------|------------------|--------------------| -| Postgres 10.x | 3.0.x, 3.1.x | November 2022 | ✅ Fully compatible | -| Postgres 11.x | 3.0.x, 3.1.x | November 2023 | ✅ Fully compatible | -| Postgres 12.x | 3.0.x, 3.1.x | November 2024 | ✅ Fully compatible | -| Postgres 13.x | 3.0.x, 3.1.x | November 2025 | ✅ Fully compatible | +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. + +| Version | PostGIS Version | End-of-Life Date | Compatibility | +|-------------|-----------------|------------------|--------------------| +| Postgres 10 | 3.0.x, 3.1.x | November 2022 | ✅ Fully compatible | +| Postgres 11 | 3.0.x, 3.1.x | November 2023 | ✅ Fully compatible | +| Postgres 12 | 3.0.x, 3.1.x | November 2024 | ✅ Fully compatible | +| Postgres 13 | 3.0.x, 3.1.x | November 2025 | ✅ Fully compatible | ### Locally ```bash From fa4cd048e135ff9dd00b3dadbe91b9f83772334b Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 12:17:47 +0200 Subject: [PATCH 05/20] bump more node --- .github/workflows/ci.yml | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4009314507..8e38a56ec0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,12 +85,12 @@ jobs: MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 12.22.0 + NODE_VERSION: 12.22.1 - name: Node 15 MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 15.13.0 + NODE_VERSION: 15.14.0 fail-fast: false name: ${{ matrix.name }} timeout-minutes: 15 diff --git a/README.md b/README.md index d0f8120350..e8e03ee543 100644 --- a/README.md +++ b/README.md @@ -114,9 +114,9 @@ Parse Server is continuously tested with the most recent releases of Node.js to | Version | Latest Patch Version | End-of-Life Date | Compatibility | |------------|----------------------|------------------|--------------------| -| Node.js 12 | 12.22.0 | April 2022 | ✅ Fully compatible | +| Node.js 12 | 12.22.1 | April 2022 | ✅ Fully compatible | | Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | -| Node.js 15 | 15.13.0 | June 2021 | ✅ Fully compatible | +| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible | #### MongoDB 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. From 0becb0cc9f5ac5607d502e73d4e971af2568a66c Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 21:33:29 +0200 Subject: [PATCH 06/20] Remove MongoDB 3.6 support (EOL) (#7315) * removed mongodb 3.6 support * add changelog entry * updated CI check --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 1 + README.md | 3 +-- resources/ci/ciCheck.js | 3 +-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70abb020ee..ebf12c2f19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,8 +71,8 @@ jobs: MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.0 - - name: Mongo 3.6, Standalone, MMAPv1 - MONGODB_VERSION: 3.6.23 + - name: Mongo 4.0, Standalone, MMAPv1 + MONGODB_VERSION: 4.0.23 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: mmapv1 NODE_VERSION: 14.16.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 394be9864a..40be52734a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -97,6 +97,7 @@ ___ - EXPERIMENTAL: Added new page router with placeholder rendering and localization of custom and feature pages such as password reset and email verification (Manuel Trezza) [#6891](https://github.com/parse-community/parse-server/issues/6891) - EXPERIMENTAL: Added custom routes to easily customize flows for password reset, email verification or build entirely new flows (Manuel Trezza) [#7231](https://github.com/parse-community/parse-server/issues/7231) - Remove support for Node 10 which has reached its End-of-Life support date (Manuel Trezza) [#7314](https://github.com/parse-community/parse-server/pull/7314) +- Remove support for MongoDB 3.6 which has reached its End-of-Life support date (Manuel Trezza) [#7315](https://github.com/parse-community/parse-server/pull/7315) ### Other Changes - Fix error when a not yet inserted job is updated (Antonio Davi Macedo Coelho de Castro) [#7196](https://github.com/parse-community/parse-server/pull/7196) - request.context for afterFind triggers (dblythy) [#7078](https://github.com/parse-community/parse-server/pull/7078) diff --git a/README.md b/README.md index da727e4e05..187cc77a47 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Join the conversation Snyk badge Node.js 12,14,15 - MongoDB 3.6,4.0,4.2,4.4 + MongoDB 4.0,4.2,4.4 PostgreSQL 10,11,12,13

@@ -123,7 +123,6 @@ Parse Server is continuously tested with the most recent releases of MongoDB to | Version | Latest Patch Version | End-of-Life Date | Compatibility | |-------------|----------------------|------------------|--------------------| -| MongoDB 3.6 | 3.6.23 | April 2021 | ✅ Fully compatible | | MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | | MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | | MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | diff --git a/resources/ci/ciCheck.js b/resources/ci/ciCheck.js index 0686931833..ed94af7a9b 100644 --- a/resources/ci/ciCheck.js +++ b/resources/ci/ciCheck.js @@ -33,8 +33,7 @@ async function checkMongoDbVersions() { releasedVersions, latestComponent: CiVersionCheck.versionComponents.path, ignoreReleasedVersions: [ - '<3.6.0', // These versions have reached their MongoDB end-of-life support date - '~3.7.0', // This is a development release according to MongoDB support + '<4.0.0', // These versions have reached their MongoDB end-of-life support date '~4.1.0', // This is a development release according to MongoDB support '~4.3.0', // This is a development release according to MongoDB support '~4.7.0', // This is a development release according to MongoDB support From ce9c8108c3deaec3bbe753faf5fdedbfec1e48c9 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 11:52:46 +0200 Subject: [PATCH 07/20] bumped MongoDB to 4.4.5 --- .github/workflows/ci.yml | 8 ++++---- README.md | 2 +- package.json | 10 +++++----- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebf12c2f19..7e7e7284dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: matrix: include: - name: Mongo 4.4, ReplicaSet, WiredTiger - MONGODB_VERSION: 4.4.4 + MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.0 @@ -78,17 +78,17 @@ jobs: NODE_VERSION: 14.16.0 - name: Redis Cache PARSE_SERVER_TEST_CACHE: redis - MONGODB_VERSION: 4.4.4 + MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.0 - name: Node 12 - MONGODB_VERSION: 4.4.4 + MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 12.22.0 - name: Node 15 - MONGODB_VERSION: 4.4.4 + MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 15.13.0 diff --git a/README.md b/README.md index 187cc77a47..40fc49a6e5 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ Parse Server is continuously tested with the most recent releases of MongoDB to |-------------|----------------------|------------------|--------------------| | MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | | MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | -| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | +| MongoDB 4.4 | 4.4.5 | TBD | ✅ Fully compatible | #### PostgreSQL Parse Server is continuously tested with the most recent releases of PostgreSQL and PostGIS to ensure compatibility. We follow the [PostGIS docker tags](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&ordering=last_updated) and only test against versions that are officially supported and have not reached their end-of-life date. diff --git a/package.json b/package.json index 7daeb5e21e..90c594992a 100644 --- a/package.json +++ b/package.json @@ -112,13 +112,13 @@ "test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion", "test:mongodb:4.0.23": "npm run test:mongodb --dbversion=4.0.23", "test:mongodb:4.2.13": "npm run test:mongodb --dbversion=4.2.13", - "test:mongodb:4.4.4": "npm run test:mongodb --dbversion=4.4.4", + "test:mongodb:4.4.5": "npm run test:mongodb --dbversion=4.4.5", "posttest:mongodb": "mongodb-runner stop", - "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start", - "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine", + "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start", + "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine", "test": "npm run testonly", - "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop", - "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine", + "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop", + "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine", "start": "node ./bin/parse-server", "prettier": "prettier --write '{src,spec}/{**/*,*}.js'", "prepare": "npm run build", From 840962c51524305c5d9f03e11c1afb6c5a7cbecc Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 11:54:06 +0200 Subject: [PATCH 08/20] bump Node to 14.16.1 --- .github/workflows/ci.yml | 12 ++++++------ README.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e7e7284dc..c0c68855dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: - '**' env: COVERAGE_OPTION: ./node_modules/.bin/nyc - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 PARSE_SERVER_TEST_TIMEOUT: 20000 jobs: check-ci: @@ -60,28 +60,28 @@ jobs: MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Mongo 4.2, ReplicaSet, WiredTiger MONGODB_VERSION: 4.2.13 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Mongo 4.0, ReplicaSet, WiredTiger MONGODB_VERSION: 4.0.23 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Mongo 4.0, Standalone, MMAPv1 MONGODB_VERSION: 4.0.23 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: mmapv1 - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Redis Cache PARSE_SERVER_TEST_CACHE: redis MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 14.16.0 + NODE_VERSION: 14.16.1 - name: Node 12 MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone diff --git a/README.md b/README.md index 40fc49a6e5..9a6bc7fa36 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Parse Server is continuously tested with the most recent releases of Node.js to | Version | Latest Patch Version | End-of-Life Date | Compatibility | |------------|----------------------|------------------|--------------------| | Node.js 12 | 12.22.0 | April 2022 | ✅ Fully compatible | -| Node.js 14 | 14.16.0 | April 2023 | ✅ Fully compatible | +| Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | | Node.js 15 | 15.13.0 | June 2021 | ✅ Fully compatible | #### MongoDB From 80abb1e2a8cafecd761f8b21a88c84a73dc5b22e Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 11:54:59 +0200 Subject: [PATCH 09/20] removed obsolete COVERAGE_OPTION --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0c68855dc..c01806b834 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,6 @@ on: branches: - '**' env: - COVERAGE_OPTION: ./node_modules/.bin/nyc NODE_VERSION: 14.16.1 PARSE_SERVER_TEST_TIMEOUT: 20000 jobs: From 861442068a9b064bbd71267d9834ea718e8c1bdb Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 12:07:38 +0200 Subject: [PATCH 10/20] improved postges support note --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9a6bc7fa36..d499f726b0 100644 --- a/README.md +++ b/README.md @@ -128,14 +128,14 @@ Parse Server is continuously tested with the most recent releases of MongoDB to | MongoDB 4.4 | 4.4.5 | TBD | ✅ Fully compatible | #### PostgreSQL -Parse Server is continuously tested with the most recent releases of PostgreSQL and PostGIS to ensure compatibility. We follow the [PostGIS docker tags](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&ordering=last_updated) and only test against versions that are officially supported and have not reached their end-of-life date. - -| Version | PostGIS Version | End-of-Life Date | Compatibility | -|---------------|-----------------|------------------|--------------------| -| Postgres 10.x | 3.0.x, 3.1.x | November 2022 | ✅ Fully compatible | -| Postgres 11.x | 3.0.x, 3.1.x | November 2023 | ✅ Fully compatible | -| Postgres 12.x | 3.0.x, 3.1.x | November 2024 | ✅ Fully compatible | -| Postgres 13.x | 3.0.x, 3.1.x | November 2025 | ✅ Fully compatible | +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. + +| Version | PostGIS Version | End-of-Life Date | Compatibility | +|-------------|-----------------|------------------|--------------------| +| Postgres 10 | 3.0.x, 3.1.x | November 2022 | ✅ Fully compatible | +| Postgres 11 | 3.0.x, 3.1.x | November 2023 | ✅ Fully compatible | +| Postgres 12 | 3.0.x, 3.1.x | November 2024 | ✅ Fully compatible | +| Postgres 13 | 3.0.x, 3.1.x | November 2025 | ✅ Fully compatible | ### Locally ```bash From 68cdd60bda22769e0f85d73ee17de489a3dd18e7 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 7 Apr 2021 12:17:47 +0200 Subject: [PATCH 11/20] bump more node --- .github/workflows/ci.yml | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c01806b834..984a719af5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,12 +85,12 @@ jobs: MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 12.22.0 + NODE_VERSION: 12.22.1 - name: Node 15 MONGODB_VERSION: 4.4.5 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger - NODE_VERSION: 15.13.0 + NODE_VERSION: 15.14.0 fail-fast: false name: ${{ matrix.name }} timeout-minutes: 15 diff --git a/README.md b/README.md index d499f726b0..4864508fdd 100644 --- a/README.md +++ b/README.md @@ -114,9 +114,9 @@ Parse Server is continuously tested with the most recent releases of Node.js to | Version | Latest Patch Version | End-of-Life Date | Compatibility | |------------|----------------------|------------------|--------------------| -| Node.js 12 | 12.22.0 | April 2022 | ✅ Fully compatible | +| Node.js 12 | 12.22.1 | April 2022 | ✅ Fully compatible | | Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | -| Node.js 15 | 15.13.0 | June 2021 | ✅ Fully compatible | +| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible | #### MongoDB 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. From 5010583e0b4e3dcfed9018e98a94f964b8f7ee44 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 8 Apr 2021 01:00:06 +0200 Subject: [PATCH 12/20] updated package lock --- package-lock.json | 84 +++++++++++++++++++++++------------------------ 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/package-lock.json b/package-lock.json index f3237a2a06..f5c7cb55b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,9 +11,9 @@ "dev": true }, "@apollo/client": { - "version": "3.3.13", - "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.3.13.tgz", - "integrity": "sha512-usiVmXiOq0J/GpyIOIhlF8ItHpiPJObC7zoxLYPoOYj3G3OB0hCIcUKs3aTJ3ATW7u8QxvYgRaJg72NN7E1WOg==", + "version": "3.3.14", + "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.3.14.tgz", + "integrity": "sha512-z7YwMvF9grmpWUG+26e3gPcBAOA/r/Ci5gwK7JVm3bGYG9kKqG8MF6sMXEbuwTsFseE4duSp0icJ6tdzxJhhlA==", "requires": { "@graphql-typed-document-node/core": "^3.0.0", "@types/zen-observable": "^0.8.0", @@ -39,9 +39,9 @@ }, "dependencies": { "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" } } }, @@ -54,9 +54,9 @@ }, "dependencies": { "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" } } }, @@ -1546,9 +1546,9 @@ }, "dependencies": { "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", "optional": true } } @@ -2055,9 +2055,9 @@ }, "dependencies": { "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" } } }, @@ -2085,9 +2085,9 @@ }, "dependencies": { "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" } } }, @@ -2935,9 +2935,9 @@ } }, "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, "base": { @@ -3997,14 +3997,14 @@ "optional": true }, "core-js": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.10.0.tgz", - "integrity": "sha512-MQx/7TLgmmDVamSyfE+O+5BHvG1aUGj/gHhLn1wVtm2B5u1eVIPvh7vkfjwWKNCjrTJB8+He99IntSQ1qP+vYQ==" + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.10.1.tgz", + "integrity": "sha512-pwCxEXnj27XG47mu7SXAwhLP3L5CrlvCB91ANUkIz40P27kUcvNfSdvyZJ9CLHiVoKSp+TTChMQMSKQEH/IQxA==" }, "core-js-compat": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.10.0.tgz", - "integrity": "sha512-9yVewub2MXNYyGvuLnMHcN1k9RkvB7/ofktpeKTIaASyB88YYqGzUnu0ywMMhJrDHOMiTjSHWGzR+i7Wb9Z1kQ==", + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.10.1.tgz", + "integrity": "sha512-ZHQTdTPkqvw2CeHiZC970NNJcnwzT6YIueDMASKt+p3WbZsLXOcoD392SkcWhkC0wBBHhlfhqGKKsNCQUozYtg==", "dev": true, "requires": { "browserslist": "^4.16.3", @@ -4020,9 +4020,9 @@ } }, "core-js-pure": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.10.0.tgz", - "integrity": "sha512-CC582enhrFZStO4F8lGI7QL3SYx7/AIRc+IdSi3btrQGrVsTawo5K/crmKbRrQ+MOMhNX4v+PATn0k2NN6wI7A==" + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.10.1.tgz", + "integrity": "sha512-PeyJH2SE0KuxY5eCGNWA+W+CeDpB6M1PN3S7Am7jSv/Ttuxz2SnWbIiVQOn/TDaGaGtxo8CRWHkXwJscbUHtVw==" }, "core-util-is": { "version": "1.0.2", @@ -4685,9 +4685,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.707", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.707.tgz", - "integrity": "sha512-BqddgxNPrcWnbDdJw7SzXVzPmp+oiyjVrc7tkQVaznPGSS9SKZatw6qxoP857M+HbOyyqJQwYQtsuFIMSTNSZA==", + "version": "1.3.710", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.710.tgz", + "integrity": "sha512-b3r0E2o4yc7mNmBeJviejF1rEx49PUBi+2NPa7jHEX3arkAXnVgLhR0YmV8oi6/Qf3HH2a8xzQmCjHNH0IpXWQ==", "dev": true }, "elegant-spinner": { @@ -5441,9 +5441,9 @@ } }, "fecha": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.0.tgz", - "integrity": "sha512-aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg==" + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz", + "integrity": "sha512-MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q==" }, "fetch-node-website": { "version": "5.0.3", @@ -5592,9 +5592,9 @@ } }, "filter-obj": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.1.tgz", - "integrity": "sha512-yDEp513p7+iLdFHWBVdZFnRiOYwg8ZqmpaAiZCMjzqsbo7tCS4Qm4ulXOht337NGzkukKa9u3W4wqQ9tQPm3Ug==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.2.tgz", + "integrity": "sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg==", "dev": true }, "finalhandler": { @@ -11707,9 +11707,9 @@ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" }, "y18n": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", - "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true }, "yallist": { From 35f2202b3914eb5c812a319c916629a582646ebe Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 8 Apr 2021 01:05:24 +0200 Subject: [PATCH 13/20] Revert "bumped MongoDB to 4.4.5" This reverts commit ce9c8108c3deaec3bbe753faf5fdedbfec1e48c9. --- .github/workflows/ci.yml | 8 ++++---- README.md | 2 +- package.json | 10 +++++----- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 984a719af5..273c77f7a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: matrix: include: - name: Mongo 4.4, ReplicaSet, WiredTiger - MONGODB_VERSION: 4.4.5 + MONGODB_VERSION: 4.4.4 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.1 @@ -77,17 +77,17 @@ jobs: NODE_VERSION: 14.16.1 - name: Redis Cache PARSE_SERVER_TEST_CACHE: redis - MONGODB_VERSION: 4.4.5 + MONGODB_VERSION: 4.4.4 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.1 - name: Node 12 - MONGODB_VERSION: 4.4.5 + MONGODB_VERSION: 4.4.4 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 12.22.1 - name: Node 15 - MONGODB_VERSION: 4.4.5 + MONGODB_VERSION: 4.4.4 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 15.14.0 diff --git a/README.md b/README.md index 4864508fdd..78397ef4f8 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ Parse Server is continuously tested with the most recent releases of MongoDB to |-------------|----------------------|------------------|--------------------| | MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | | MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | -| MongoDB 4.4 | 4.4.5 | TBD | ✅ Fully compatible | +| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | #### PostgreSQL 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. diff --git a/package.json b/package.json index 90c594992a..7daeb5e21e 100644 --- a/package.json +++ b/package.json @@ -112,13 +112,13 @@ "test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion", "test:mongodb:4.0.23": "npm run test:mongodb --dbversion=4.0.23", "test:mongodb:4.2.13": "npm run test:mongodb --dbversion=4.2.13", - "test:mongodb:4.4.5": "npm run test:mongodb --dbversion=4.4.5", + "test:mongodb:4.4.4": "npm run test:mongodb --dbversion=4.4.4", "posttest:mongodb": "mongodb-runner stop", - "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start", - "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine", + "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start", + "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine", "test": "npm run testonly", - "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop", - "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.5} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine", + "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop", + "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine", "start": "node ./bin/parse-server", "prettier": "prettier --write '{src,spec}/{**/*,*}.js'", "prepare": "npm run build", From 7aced0b9f977dd4ebd4bca5c6aa3585766d391be Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 8 Apr 2021 01:18:38 +0200 Subject: [PATCH 14/20] skipping MongoDB 4.4.5 temporarily --- resources/ci/ciCheck.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/resources/ci/ciCheck.js b/resources/ci/ciCheck.js index ed94af7a9b..f0f6e8ded1 100644 --- a/resources/ci/ciCheck.js +++ b/resources/ci/ciCheck.js @@ -33,10 +33,12 @@ async function checkMongoDbVersions() { releasedVersions, latestComponent: CiVersionCheck.versionComponents.path, ignoreReleasedVersions: [ - '<4.0.0', // These versions have reached their MongoDB end-of-life support date - '~4.1.0', // This is a development release according to MongoDB support - '~4.3.0', // This is a development release according to MongoDB support - '~4.7.0', // This is a development release according to MongoDB support + '<4.0.0', // Versions reached their MongoDB end-of-life support date + '~4.1.0', // Development release according to MongoDB support + '~4.3.0', // Development release according to MongoDB support + '~4.7.0', // Development release according to MongoDB support + + '4.4.5', // Temporarily disabled because not yet available for download via mongodb-runner ], }).check(); } From 104fab25c35d27ce0e9ea34a3a3c3d8b42ff9e8c Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 8 Apr 2021 01:19:14 +0200 Subject: [PATCH 15/20] fixed bug in CI check that did not consider ignored versions when checking for newer versions --- resources/ci/CiVersionCheck.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/resources/ci/CiVersionCheck.js b/resources/ci/CiVersionCheck.js index 763d907355..098dee59d3 100644 --- a/resources/ci/CiVersionCheck.js +++ b/resources/ci/CiVersionCheck.js @@ -193,6 +193,13 @@ class CiVersionCheck { ? '^' : '~' const latest = semver.maxSatisfying(versions, `${operator}${version}`); + + // If the version should be ignored, skip it + if (this.ignoreReleasedVersions.length > 0 && semver.satisfies(latest, this.ignoreReleasedVersions.join(' || '))) { + return undefined; + } + + // Return the latest version if it is newer than any currently used version return semver.gt(latest, version) ? latest : undefined; } From 0b399547bb93e3ef7e5d9ee22f98c46b3756ddbc Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 8 Apr 2021 01:40:19 +0200 Subject: [PATCH 16/20] removed Postgres 10 support --- .github/workflows/ci.yml | 14 ++++++-------- CHANGELOG.md | 2 +- README.md | 36 ++++++++++++++++++------------------ 3 files changed, 25 insertions(+), 27 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 273c77f7a4..a774dd2e93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,15 +130,13 @@ jobs: strategy: matrix: include: - - name: Postgres 10, Postgis 3.1 - POSTGRES_IMAGE: postgis/postgis:10-3.1 - - name: Postgres 11, Postgis 3.1 - POSTGRES_IMAGE: postgis/postgis:11-3.1 - - name: Postgres 12, Postgis 3.1 + - name: PostgreSQL 11, PostGIS 3.0 + POSTGRES_IMAGE: postgis/postgis:11-3.0 + - name: PostgreSQL 12, PostGIS 3.1 POSTGRES_IMAGE: postgis/postgis:12-3.1 - - name: Postgres 12, Postgis 3.0 - POSTGRES_IMAGE: postgis/postgis:12-3.0 - - name: Postgres 13, Postgis 3.1 + - name: PostgreSQL 12, PostGIS 3.1 + POSTGRES_IMAGE: postgis/postgis:12-3.1 + - name: PostgreSQL 13, PostGIS 3.1 POSTGRES_IMAGE: postgis/postgis:13-3.1 fail-fast: false name: ${{ matrix.name }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 40be52734a..141bd94a86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -92,12 +92,12 @@ ___ - Improved schema caching through database real-time hooks. Reduces DB queries, decreases Parse Query execution time and fixes a potential schema memory leak. If multiple Parse Server instances connect to the same DB (for example behind a load balancer), set the [Parse Server Option](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) `databaseOptions.enableSchemaHooks: true` to enable this feature and keep the schema in sync across all instances. Failing to do so will cause a schema change to not propagate to other instances and re-syncing will only happen when these instances restart. The options `enableSingleSchemaCache` and `schemaCacheTTL` have been removed. To use this feature with MongoDB, a replica set cluster with [change stream](https://docs.mongodb.com/manual/changeStreams/#availability) support is required. (Diamond Lewis, SebC) [#7214](https://github.com/parse-community/parse-server/issues/7214) - Added file upload restriction. File upload is now only allowed for authenticated users by default for improved security. To allow file upload also for Anonymous Users or Public, set the `fileUpload` parameter in the [Parse Server Options](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) (dblythy, Manuel Trezza) [#7071](https://github.com/parse-community/parse-server/pull/7071) - Removed [parse-server-simple-mailgun-adapter](https://github.com/parse-community/parse-server-simple-mailgun-adapter) dependency; to continue using the adapter it has to be explicitly installed (Manuel Trezza) [#7321](https://github.com/parse-community/parse-server/pull/7321) +- Remove support for MongoDB 3.6 which has reached its End-of-Life support date and PostgreSQL 10 (Manuel Trezza) [#7315](https://github.com/parse-community/parse-server/pull/7315) ### Notable Changes - Added Parse Server Security Check to report weak security settings (Manuel Trezza, dblythy) [#7247](https://github.com/parse-community/parse-server/issues/7247) - EXPERIMENTAL: Added new page router with placeholder rendering and localization of custom and feature pages such as password reset and email verification (Manuel Trezza) [#6891](https://github.com/parse-community/parse-server/issues/6891) - EXPERIMENTAL: Added custom routes to easily customize flows for password reset, email verification or build entirely new flows (Manuel Trezza) [#7231](https://github.com/parse-community/parse-server/issues/7231) - Remove support for Node 10 which has reached its End-of-Life support date (Manuel Trezza) [#7314](https://github.com/parse-community/parse-server/pull/7314) -- Remove support for MongoDB 3.6 which has reached its End-of-Life support date (Manuel Trezza) [#7315](https://github.com/parse-community/parse-server/pull/7315) ### Other Changes - Fix error when a not yet inserted job is updated (Antonio Davi Macedo Coelho de Castro) [#7196](https://github.com/parse-community/parse-server/pull/7196) - request.context for afterFind triggers (dblythy) [#7078](https://github.com/parse-community/parse-server/pull/7078) diff --git a/README.md b/README.md index 78397ef4f8..dcb49fd52e 100644 --- a/README.md +++ b/README.md @@ -112,30 +112,30 @@ Before you start make sure you have installed: #### Node.js 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. -| Version | Latest Patch Version | End-of-Life Date | Compatibility | -|------------|----------------------|------------------|--------------------| -| Node.js 12 | 12.22.1 | April 2022 | ✅ Fully compatible | -| Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | -| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible | +| Version | Latest Patch Version | End-of-Life | Compatibility | +|------------|----------------------|-------------|--------------------| +| Node.js 12 | 12.22.1 | April 2022 | ✅ Fully compatible | +| Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | +| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible | #### MongoDB 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. -| Version | Latest Patch Version | End-of-Life Date | Compatibility | -|-------------|----------------------|------------------|--------------------| -| MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | -| MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | -| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | +| Version | Latest Patch Version | End-of-Life | Compatibility | +|-------------|----------------------|--------------|--------------------| +| MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | +| MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | +| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | #### PostgreSQL -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. - -| Version | PostGIS Version | End-of-Life Date | Compatibility | -|-------------|-----------------|------------------|--------------------| -| Postgres 10 | 3.0.x, 3.1.x | November 2022 | ✅ Fully compatible | -| Postgres 11 | 3.0.x, 3.1.x | November 2023 | ✅ Fully compatible | -| Postgres 12 | 3.0.x, 3.1.x | November 2024 | ✅ Fully compatible | -| Postgres 13 | 3.0.x, 3.1.x | November 2025 | ✅ Fully compatible | +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. + +| Version | PostGIS Version | End-of-Life | Parse Server Support End | Compatibility | +|-------------|-----------------|---------------|--------------------------|--------------------| +| Postgres 10 | 3.0 | November 2022 | April 2021 | ✅ Fully compatible | +| Postgres 11 | 3.1 | November 2023 | April 2022 | ✅ Fully compatible | +| Postgres 12 | 3.1 | November 2024 | April 2023 | ✅ Fully compatible | +| Postgres 13 | 3.1 | November 2025 | April 2024 | ✅ Fully compatible | ### Locally ```bash From febccdaf5a5ac8a7882afbbcfafa8f88fe274095 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 8 Apr 2021 01:42:59 +0200 Subject: [PATCH 17/20] updated Postgres versions --- .github/workflows/ci.yml | 4 ++-- README.md | 31 +++++++++++++++---------------- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a774dd2e93..0f21ebb3f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -132,8 +132,8 @@ jobs: include: - name: PostgreSQL 11, PostGIS 3.0 POSTGRES_IMAGE: postgis/postgis:11-3.0 - - name: PostgreSQL 12, PostGIS 3.1 - POSTGRES_IMAGE: postgis/postgis:12-3.1 + - name: PostgreSQL 11, PostGIS 3.1 + POSTGRES_IMAGE: postgis/postgis:11-3.1 - name: PostgreSQL 12, PostGIS 3.1 POSTGRES_IMAGE: postgis/postgis:12-3.1 - name: PostgreSQL 13, PostGIS 3.1 diff --git a/README.md b/README.md index dcb49fd52e..fff0e801c4 100644 --- a/README.md +++ b/README.md @@ -112,30 +112,29 @@ Before you start make sure you have installed: #### Node.js 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. -| Version | Latest Patch Version | End-of-Life | Compatibility | -|------------|----------------------|-------------|--------------------| -| Node.js 12 | 12.22.1 | April 2022 | ✅ Fully compatible | -| Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | -| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible | +| Version | Latest Patch Version | End-of-Life Date | Compatibility | +|------------|----------------------|------------------|--------------------| +| Node.js 12 | 12.22.1 | April 2022 | ✅ Fully compatible | +| Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | +| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible | #### MongoDB 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. -| Version | Latest Patch Version | End-of-Life | Compatibility | -|-------------|----------------------|--------------|--------------------| -| MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | -| MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | -| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | +| Version | Latest Patch Version | End-of-Life Date | Compatibility | +|-------------|----------------------|------------------|--------------------| +| MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | +| MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | +| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | #### PostgreSQL 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. -| Version | PostGIS Version | End-of-Life | Parse Server Support End | Compatibility | -|-------------|-----------------|---------------|--------------------------|--------------------| -| Postgres 10 | 3.0 | November 2022 | April 2021 | ✅ Fully compatible | -| Postgres 11 | 3.1 | November 2023 | April 2022 | ✅ Fully compatible | -| Postgres 12 | 3.1 | November 2024 | April 2023 | ✅ Fully compatible | -| Postgres 13 | 3.1 | November 2025 | April 2024 | ✅ Fully compatible | +| Version | PostGIS Version | End-of-Life Date | Parse Server Support End | Compatibility | +|-------------|-----------------|------------------|--------------------------|--------------------| +| Postgres 11 | 3.0 | November 2023 | April 2022 | ✅ Fully compatible | +| Postgres 12 | 3.1 | November 2024 | April 2023 | ✅ Fully compatible | +| Postgres 13 | 3.1 | November 2025 | April 2024 | ✅ Fully compatible | ### Locally ```bash From c1a4600885d1a078a1878d0cc6a2b12ff8560178 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 8 Apr 2021 01:44:02 +0200 Subject: [PATCH 18/20] renamed MongoDB CI tests --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f21ebb3f9..232a49557e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,22 +55,22 @@ jobs: strategy: matrix: include: - - name: Mongo 4.4, ReplicaSet, WiredTiger + - name: MongoDB 4.4, ReplicaSet, WiredTiger MONGODB_VERSION: 4.4.4 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.1 - - name: Mongo 4.2, ReplicaSet, WiredTiger + - name: MongoDB 4.2, ReplicaSet, WiredTiger MONGODB_VERSION: 4.2.13 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.1 - - name: Mongo 4.0, ReplicaSet, WiredTiger + - name: MongoDB 4.0, ReplicaSet, WiredTiger MONGODB_VERSION: 4.0.23 MONGODB_TOPOLOGY: replicaset MONGODB_STORAGE_ENGINE: wiredTiger NODE_VERSION: 14.16.1 - - name: Mongo 4.0, Standalone, MMAPv1 + - name: MongoDB 4.0, Standalone, MMAPv1 MONGODB_VERSION: 4.0.23 MONGODB_TOPOLOGY: standalone MONGODB_STORAGE_ENGINE: mmapv1 From 8912d3c5af3f91e7656643edba927490b3cac137 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 8 Apr 2021 02:03:24 +0200 Subject: [PATCH 19/20] fixed Postgres compatibility table --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index fff0e801c4..ca4121ef57 100644 --- a/README.md +++ b/README.md @@ -112,27 +112,27 @@ Before you start make sure you have installed: #### Node.js 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. -| Version | Latest Patch Version | End-of-Life Date | Compatibility | -|------------|----------------------|------------------|--------------------| -| Node.js 12 | 12.22.1 | April 2022 | ✅ Fully compatible | -| Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | -| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible | +| Version | Latest Version | End-of-Life Date | Compatibility | +|------------|----------------|------------------|--------------------| +| Node.js 12 | 12.22.1 | April 2022 | ✅ Fully compatible | +| Node.js 14 | 14.16.1 | April 2023 | ✅ Fully compatible | +| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible | #### MongoDB 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. -| Version | Latest Patch Version | End-of-Life Date | Compatibility | -|-------------|----------------------|------------------|--------------------| -| MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | -| MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | -| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | +| Version | Latest Version | End-of-Life Date | Compatibility | +|-------------|----------------|------------------|--------------------| +| MongoDB 4.0 | 4.0.23 | January 2022 | ✅ Fully compatible | +| MongoDB 4.2 | 4.2.13 | TBD | ✅ Fully compatible | +| MongoDB 4.4 | 4.4.4 | TBD | ✅ Fully compatible | #### PostgreSQL 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. | Version | PostGIS Version | End-of-Life Date | Parse Server Support End | Compatibility | |-------------|-----------------|------------------|--------------------------|--------------------| -| Postgres 11 | 3.0 | November 2023 | April 2022 | ✅ Fully compatible | +| Postgres 11 | 3.0, 3.1 | November 2023 | April 2022 | ✅ Fully compatible | | Postgres 12 | 3.1 | November 2024 | April 2023 | ✅ Fully compatible | | Postgres 13 | 3.1 | November 2025 | April 2024 | ✅ Fully compatible | From e6ae52412efb22d799a57a9511c17edcfbc54390 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 8 Apr 2021 13:33:48 +0200 Subject: [PATCH 20/20] fix Postgres badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ca4121ef57..d52ea5c869 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Snyk badge Node.js 12,14,15 MongoDB 4.0,4.2,4.4 - PostgreSQL 10,11,12,13 + PostgreSQL 11,12,13

Our Sponsors