Skip to content

Commit

Permalink
Merge branch 'main' into abort-method
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasgriffintn committed Feb 15, 2023
2 parents caa70ba + e568428 commit 5cbd791
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ npm install --save-dev sqs-consumer
> npm install sqs-consumer@5.8.0 --save-dev
> ```
### Node version

From v7 and above, this library will only support Node v16 or above. If you are still using Node 14, please use a previous version of the library.

This decision was made due to the removal of security support from the Node.JS team from April 30th, 2023.

## Usage

```js
Expand Down
7 changes: 5 additions & 2 deletions package-lock.json

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

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"description": "Build SQS-based Node applications without the boilerplate",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.19.0"
},
"scripts": {
"build": "npm run clean && tsc",
"watch": "tsc --watch",
Expand Down

0 comments on commit 5cbd791

Please sign in to comment.