Skip to content

Commit

Permalink
feat: Remove Node 14 and 16 support (#236)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Removes support for Node 14 and 16
  • Loading branch information
mtrezza committed Mar 30, 2024
1 parent 7d6d874 commit bb0ff82
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 30 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ jobs:
strategy:
matrix:
include:
- name: Node.js 14
NODE_VERSION: 14
- name: Node.js 16
NODE_VERSION: 16
- name: Node.js 18
NODE_VERSION: 18
- name: Node.js 20
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-automated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 18
- name: Cache Node.js modules
uses: actions/cache@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
[![Coverage](https://img.shields.io/codecov/c/github/parse-community/parse-server-push-adapter/master.svg)](https://codecov.io/github/parse-community/parse-server-push-adapter?branch=master)
[![auto-release](https://img.shields.io/badge/%F0%9F%9A%80-auto--release-9e34eb.svg)](https://github.com/parse-community/parse-server-push-adapter/releases)

[![Node Version](https://img.shields.io/badge/nodejs-18,_20-green.svg?logo=node.js&style=flat)](https://nodejs.org)

[![npm latest version](https://img.shields.io/npm/v/@parse/push-adapter.svg)](https://www.npmjs.com/package/@parse/push-adapter)

---
Expand Down
34 changes: 17 additions & 17 deletions package-lock.json

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

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@
},
"author": "Parse",
"license": "MIT",
"dependencies": {
"@parse/node-apn": "6.0.1",
"@parse/node-gcm": "1.0.2",
"firebase-admin": "12.0.0",
"npmlog": "7.0.1",
"parse": "5.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
Expand All @@ -39,14 +46,7 @@
"nyc": "14.1.1",
"semantic-release": "17.4.6"
},
"dependencies": {
"@parse/node-apn": "6.0.1",
"@parse/node-gcm": "1.0.2",
"firebase-admin": "12.0.0",
"npmlog": "7.0.1",
"parse": "4.3.1"
},
"engines": {
"node": ">= 14"
"node": ">=18.0.0 <21"
}
}

0 comments on commit bb0ff82

Please sign in to comment.