Skip to content

Commit e029403

Browse files
authored
Merge branch 'alpha' into feat/remove-mongo
Signed-off-by: Manuel <5673677+mtrezza@users.noreply.github.com>
2 parents 8a22e6b + 706b3a0 commit e029403

File tree

5 files changed

+36
-21
lines changed

5 files changed

+36
-21
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,7 @@ jobs:
169169
- name: Node 20
170170
MONGODB_VERSION: 8.0.4
171171
MONGODB_TOPOLOGY: standalone
172-
NODE_VERSION: 20.18.0
173-
- name: Node 18
174-
MONGODB_VERSION: 8.0.4
175-
MONGODB_TOPOLOGY: standalone
176-
NODE_VERSION: 18.20.4
172+
NODE_VERSION: 20.19.0
177173
- name: Node 22
178174
MONGODB_VERSION: 8.0.4
179175
MONGODB_TOPOLOGY: standalone

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Coverage](https://codecov.io/github/parse-community/parse-server/branch/alpha/graph/badge.svg)](https://app.codecov.io/github/parse-community/parse-server/tree/alpha)
99
[![auto-release](https://img.shields.io/badge/%F0%9F%9A%80-auto--release-9e34eb.svg)](https://github.com/parse-community/parse-dashboard/releases)
1010

11-
[![Node Version](https://img.shields.io/badge/nodejs-18,_20,_22,_24-green.svg?logo=node.js&style=flat)](https://nodejs.org)
11+
[![Node Version](https://img.shields.io/badge/nodejs-20,_22,_24-green.svg?logo=node.js&style=flat)](https://nodejs.org)
1212
[![MongoDB Version](https://img.shields.io/badge/mongodb-7,_8-green.svg?logo=mongodb&style=flat)](https://www.mongodb.com)
1313
[![Postgres Version](https://img.shields.io/badge/postgresql-13,_14,_15,_16,_17,_18-green.svg?logo=postgresql&style=flat)](https://www.postgresql.org)
1414

@@ -128,7 +128,7 @@ Parse Server is continuously tested with the most recent releases of Node.js to
128128
| Version | Minimum Version | End-of-Life | Parse Server Support |
129129
|------------|-----------------|-------------|----------------------|
130130
| Node.js 18 | 18.20.4 | April 2025 | <= 8.x (2025) |
131-
| Node.js 20 | 20.18.0 | April 2026 | <= 9.x (2026) |
131+
| Node.js 20 | 20.19.0 | April 2026 | <= 9.x (2026) |
132132
| Node.js 22 | 22.12.0 | April 2027 | <= 10.x (2027) |
133133
| Node.js 24 | 24.11.0 | April 2028 | <= 11.x (2028) |
134134

changelogs/CHANGELOG_alpha.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# [9.0.0-alpha.2](https://github.com/parse-community/parse-server/compare/9.0.0-alpha.1...9.0.0-alpha.2) (2025-12-12)
2+
3+
4+
### Features
5+
6+
* Upgrade to parse 8.0.0 ([#9976](https://github.com/parse-community/parse-server/issues/9976)) ([f9970d4](https://github.com/parse-community/parse-server/commit/f9970d4bb253494392fb4cc366f222119927f082))
7+
8+
# [9.0.0-alpha.1](https://github.com/parse-community/parse-server/compare/8.6.0...9.0.0-alpha.1) (2025-12-12)
9+
10+
11+
### Features
12+
13+
* Increase required minimum Node version to `20.19.0` ([#9970](https://github.com/parse-community/parse-server/issues/9970)) ([633964d](https://github.com/parse-community/parse-server/commit/633964d32e249d8cc16c58de7ddd9b7637c69fb1))
14+
15+
16+
### BREAKING CHANGES
17+
18+
* This releases increases the required minimum Node version to `20.19.0`. ([633964d](633964d))
19+
120
# [8.6.0-alpha.2](https://github.com/parse-community/parse-server/compare/8.6.0-alpha.1...8.6.0-alpha.2) (2025-12-10)
221

322

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "8.6.0",
3+
"version": "9.0.0-alpha.2",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {
@@ -47,7 +47,7 @@
4747
"mongodb": "6.20.0",
4848
"mustache": "4.2.0",
4949
"otpauth": "9.4.0",
50-
"parse": "7.1.2",
50+
"parse": "8.0.0",
5151
"path-to-regexp": "6.3.0",
5252
"pg-monitor": "3.0.0",
5353
"pg-promise": "12.2.0",
@@ -141,7 +141,7 @@
141141
},
142142
"types": "types/index.d.ts",
143143
"engines": {
144-
"node": ">=18.20.4 <19.0.0 || >=20.18.0 <21.0.0 || >=22.12.0 <23.0.0 || >=24.11.0 <25.0.0"
144+
"node": ">=20.19.0 <21.0.0 || >=22.12.0 <23.0.0 || >=24.11.0 <25.0.0"
145145
},
146146
"bin": {
147147
"parse-server": "bin/parse-server"

0 commit comments

Comments
 (0)