Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: Node 21 CI, drop Node 16 #114

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [ 16.x, 18.x, 20.x ]
node-version: [ 18.x, 20.x, latest ]

steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ the request data to the error. That includes `body`, `query` and `params` which

## Compatibility

| | Version |
|---------|-------------------------------------------------------------------|
| Fastify | `^4.x` |
| Bugsnag | `^7.17.0` |
| Node | <code>^16.18.1 &#124;&#124; ^18.12.1 &#124;&#124; >=20.0.0</code> |
| | Version |
|---------|--------------------------------------------------------------------|
| Fastify | `^4.x` |
| Bugsnag | `^7.17.0` |
| Node | <code>^18.12.1 &#124;&#124; ^20.10.0 &#124;&#124; >= 21.0.0</code> |

## Installation

Expand Down
7 changes: 4 additions & 3 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@

| Version | Supported | EOL |
|---------|--------------------|------------|
| 2.x | :white_check_mark: ||
| 3.x | :white_check_mark: | |
| 2.x | :white_check_mark: | 2024-06-30 |
| 1.x | :x: | 2023-06-30 |
| 0.5.x | :x: | 2023-06-30 |
| 0.4.x | :x: | 2022-12-31 |
| 0.3.x | :x: ||
| < 0.3.x | :x: ||
| 0.3.x | :x: | |
| < 0.3.x | :x: | |

## Reporting a Vulnerability

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@
"fastify-plugin": "^4.0.0"
},
"engines": {
"node": "^16.18.1||^18.12.1||>=20.0.0"
"node": "^18.12.1||^20.10.0||>=21.0.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.0",
"@tsconfig/node18": "^18.2.2",
"@types/mocha": "^10.0.3",
"@types/node": "^18.16.3",
"@types/sinon": "^17.0.3",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node16",
"extends": "@tsconfig/node18",
"compilerOptions": {
"declaration": true,
"resolveJsonModule": true,
Expand Down
Loading