Skip to content

Commit

Permalink
feat: Add support for Node 22 (#2209)
Browse files Browse the repository at this point in the history
  • Loading branch information
dplewis authored Jul 7, 2024
1 parent 32d6df5 commit c74fd4c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@ jobs:
matrix:
include:
- name: Node 18
NODE_VERSION: 18.19.0
NODE_VERSION: 18
- name: Node 20
NODE_VERSION: 20.10.0
NODE_VERSION: 20
- name: Node 22
NODE_VERSION: 22
fail-fast: false
steps:
- name: Fix usage of insecure GitHub protocol
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[![Snyk Badge](https://snyk.io/test/github/parse-community/Parse-SDK-JS/badge.svg)](https://snyk.io/test/github/parse-community/Parse-SDK-JS)
[![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)

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

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

| Version | Latest Version | End-of-Life | Compatible |
|------------|----------------|-------------|------------|
| Node.js 18 | 18.19.0 | April 2025 | ✅ Yes |
| Node.js 20 | 20.10.0 | April 2026 | ✅ Yes |
| Node.js 18 | 18.20.3 | April 2025 | ✅ Yes |
| Node.js 20 | 20.15.0 | April 2026 | ✅ Yes |
| Node.js 22 | 22.4.0 | April 2027 | ✅ Yes |

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
]
},
"engines": {
"node": ">=18 <21"
"node": "18 || 19 || 20 || 22"
},
"jest": {
"automock": true,
Expand Down

0 comments on commit c74fd4c

Please sign in to comment.