Skip to content

Commit c74fd4c

Browse files
authored
feat: Add support for Node 22 (#2209)
1 parent 32d6df5 commit c74fd4c

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,11 @@ jobs:
6868
matrix:
6969
include:
7070
- name: Node 18
71-
NODE_VERSION: 18.19.0
71+
NODE_VERSION: 18
7272
- name: Node 20
73-
NODE_VERSION: 20.10.0
73+
NODE_VERSION: 20
74+
- name: Node 22
75+
NODE_VERSION: 22
7476
fail-fast: false
7577
steps:
7678
- name: Fix usage of insecure GitHub protocol

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Snyk Badge](https://snyk.io/test/github/parse-community/Parse-SDK-JS/badge.svg)](https://snyk.io/test/github/parse-community/Parse-SDK-JS)
99
[![Coverage](http://codecov.io/github/parse-community/Parse-SDK-JS/coverage.svg?branch=alpha)](http://codecov.io/github/parse-community/Parse-SDK-JS?branch=alpha)
1010

11-
[![Node Version](https://img.shields.io/badge/nodejs-18,_20-green.svg?logo=node.js&style=flat)](https://nodejs.org/)
11+
[![Node Version](https://img.shields.io/badge/nodejs-18,_20,_22-green.svg?logo=node.js&style=flat)](https://nodejs.org/)
1212
[![auto-release](https://img.shields.io/badge/%F0%9F%9A%80-auto--release-9e34eb.svg)](https://github.com/parse-community/parse-dashboard/releases)
1313

1414
[![npm latest version](https://img.shields.io/npm/v/parse/latest.svg)](https://www.npmjs.com/package/parse)
@@ -53,8 +53,9 @@ Parse JS SDK is continuously tested with the most recent releases of Node.js to
5353

5454
| Version | Latest Version | End-of-Life | Compatible |
5555
|------------|----------------|-------------|------------|
56-
| Node.js 18 | 18.19.0 | April 2025 | ✅ Yes |
57-
| Node.js 20 | 20.10.0 | April 2026 | ✅ Yes |
56+
| Node.js 18 | 18.20.3 | April 2025 | ✅ Yes |
57+
| Node.js 20 | 20.15.0 | April 2026 | ✅ Yes |
58+
| Node.js 22 | 22.4.0 | April 2027 | ✅ Yes |
5859

5960
## Getting Started
6061

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
]
128128
},
129129
"engines": {
130-
"node": ">=18 <21"
130+
"node": "18 || 19 || 20 || 22"
131131
},
132132
"jest": {
133133
"automock": true,

0 commit comments

Comments
 (0)