sqs-consumer 7.2.2 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: 'Dependency Review'
|
|
2
|
+
on: [pull_request]
|
|
3
|
+
|
|
4
|
+
permissions:
|
|
5
|
+
contents: read
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
dependency-review:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- name: 'Checkout Repository'
|
|
12
|
+
uses: actions/checkout@v3
|
|
13
|
+
- name: 'Dependency Review'
|
|
14
|
+
uses: actions/dependency-review-action@v3
|
package/README.md
CHANGED
|
@@ -24,9 +24,7 @@ npm install sqs-consumer
|
|
|
24
24
|
|
|
25
25
|
### Node version
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
This decision was made due to the removal of security support from the Node.JS team from April 30th, 2023.
|
|
27
|
+
We will only support Node versions that are actively or security supported by the Node team. If you are still using an Node 14, please use a version of this library before the v7 release, if you are using Node 16, please use a version before the v7.3.0 release.
|
|
30
28
|
|
|
31
29
|
## Usage
|
|
32
30
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sqs-consumer",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
4
4
|
"description": "Build SQS-based Node applications without the boilerplate",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=18.0.0"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "npm run clean && tsc",
|