Skip to content

Commit 01ce427

Browse files
committed
revert unnecessary changes
1 parent cb5c23c commit 01ce427

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches:
88
- '**'
99
env:
10-
NODE_VERSION: 16.9.0
10+
NODE_VERSION: 14.17.6
1111
PARSE_SERVER_TEST_TIMEOUT: 20000
1212
jobs:
1313
check-ci:
@@ -107,43 +107,43 @@ jobs:
107107
MONGODB_VERSION: 5.0.2
108108
MONGODB_TOPOLOGY: replicaset
109109
MONGODB_STORAGE_ENGINE: wiredTiger
110-
NODE_VERSION: 16.9.0
110+
NODE_VERSION: 14.17.6
111111
- name: MongoDB 4.4, ReplicaSet, WiredTiger
112112
MONGODB_VERSION: 4.4.8
113113
MONGODB_TOPOLOGY: replicaset
114114
MONGODB_STORAGE_ENGINE: wiredTiger
115-
NODE_VERSION: 16.9.0
115+
NODE_VERSION: 14.17.6
116116
- name: MongoDB 4.2, ReplicaSet, WiredTiger
117117
MONGODB_VERSION: 4.2.15
118118
MONGODB_TOPOLOGY: replicaset
119119
MONGODB_STORAGE_ENGINE: wiredTiger
120-
NODE_VERSION: 16.9.0
120+
NODE_VERSION: 14.17.6
121121
- name: MongoDB 4.0, ReplicaSet, WiredTiger
122122
MONGODB_VERSION: 4.0.25
123123
MONGODB_TOPOLOGY: replicaset
124124
MONGODB_STORAGE_ENGINE: wiredTiger
125-
NODE_VERSION: 16.9.0
125+
NODE_VERSION: 14.17.6
126126
- name: MongoDB 4.0, Standalone, MMAPv1
127127
MONGODB_VERSION: 4.0.25
128128
MONGODB_TOPOLOGY: standalone
129129
MONGODB_STORAGE_ENGINE: mmapv1
130-
NODE_VERSION: 16.9.0
130+
NODE_VERSION: 14.17.6
131131
- name: Redis Cache
132132
PARSE_SERVER_TEST_CACHE: redis
133133
MONGODB_VERSION: 4.4.8
134134
MONGODB_TOPOLOGY: standalone
135135
MONGODB_STORAGE_ENGINE: wiredTiger
136-
NODE_VERSION: 16.9.0
136+
NODE_VERSION: 14.17.6
137137
- name: Node 12
138138
MONGODB_VERSION: 4.4.8
139139
MONGODB_TOPOLOGY: standalone
140140
MONGODB_STORAGE_ENGINE: wiredTiger
141141
NODE_VERSION: 12.22.6
142-
- name: Node 14
142+
- name: Node 15
143143
MONGODB_VERSION: 4.4.8
144144
MONGODB_TOPOLOGY: standalone
145145
MONGODB_STORAGE_ENGINE: wiredTiger
146-
NODE_VERSION: 14.17.6
146+
NODE_VERSION: 15.14.0
147147
fail-fast: false
148148
name: ${{ matrix.name }}
149149
timeout-minutes: 15
@@ -185,16 +185,16 @@ jobs:
185185
include:
186186
- name: PostgreSQL 11, PostGIS 3.0
187187
POSTGRES_IMAGE: postgis/postgis:11-3.0
188-
NODE_VERSION: 16.9.0
188+
NODE_VERSION: 14.17.6
189189
- name: PostgreSQL 11, PostGIS 3.1
190190
POSTGRES_IMAGE: postgis/postgis:11-3.1
191-
NODE_VERSION: 16.9.0
191+
NODE_VERSION: 14.17.6
192192
- name: PostgreSQL 12, PostGIS 3.1
193193
POSTGRES_IMAGE: postgis/postgis:12-3.1
194-
NODE_VERSION: 16.9.0
194+
NODE_VERSION: 14.17.6
195195
- name: PostgreSQL 13, PostGIS 3.1
196196
POSTGRES_IMAGE: postgis/postgis:13-3.1
197-
NODE_VERSION: 16.9.0
197+
NODE_VERSION: 14.17.6
198198
fail-fast: false
199199
name: ${{ matrix.name }}
200200
timeout-minutes: 15

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ ___
104104
- Remove support for Node 10 which has reached its End-of-Life date (Manuel Trezza) [#7314](https://github.com/parse-community/parse-server/pull/7314)
105105
- Remove S3 Files Adapter from Parse Server, instead install separately as `@parse/s3-files-adapter` (Manuel Trezza) [#7324](https://github.com/parse-community/parse-server/pull/7324)
106106
- Remove Session field `restricted`; the field was a code artifact from a feature that never existed in Open Source Parse Server; if you have been using this field for custom purposes, consider that for new Parse Server installations the field does not exist anymore in the schema, and for existing installations the field default value `false` will not be set anymore when creating a new session (Manuel Trezza) [#7543](https://github.com/parse-community/parse-server/pull/7543)
107-
- Remove support for Node 15; add support for Node 16 (Manuel Trezza) [#7558](https://github.com/parse-community/parse-server/pull/7558)
107+
- ci: add node engine version check (Manuel Trezza) [#7558](https://github.com/parse-community/parse-server/pull/7558)
108108

109109
### Notable Changes
110110
- Added Parse Server Security Check to report weak security settings (Manuel Trezza, dblythy) [#7247](https://github.com/parse-community/parse-server/issues/7247)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Parse Server is continuously tested with the most recent releases of Node.js to
116116
|------------|----------------|------------------|--------------------|
117117
| Node.js 12 | 12.22.6 | April 2022 | ✅ Fully compatible |
118118
| Node.js 14 | 14.17.6 | April 2023 | ✅ Fully compatible |
119-
| Node.js 16 | 16.9.0 | April 2024 | ✅ Fully compatible |
119+
| Node.js 15 | 15.14.0 | June 2021 | ✅ Fully compatible |
120120

121121
#### MongoDB
122122
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.

ci/ciCheck.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ async function checkNodeVersions() {
6262
ignoreReleasedVersions: [
6363
'<12.0.0', // These versions have reached their end-of-life support date
6464
'>=13.0.0 <14.0.0', // These versions have reached their end-of-life support date
65-
'>=15.0.0 <16.0.0', // These versions have reached their end-of-life support date
65+
'>=16.0.0', // This version has not been officially released yet
6666
],
6767
}).check();
6868
}

0 commit comments

Comments
 (0)