sqs-consumer 7.2.2-sqs-json.1 → 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
@@ -14,7 +14,7 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
  strategy:
16
16
  matrix:
17
- node-version: [16.x, 18.x]
17
+ node-version: [18.x, 20.x]
18
18
 
19
19
  steps:
20
20
  - uses: actions/checkout@v3
package/README.md CHANGED
@@ -24,9 +24,7 @@ npm install sqs-consumer
24
24
 
25
25
  ### Node version
26
26
 
27
- 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.
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.2.2-sqs-json.1",
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": ">=16.0.0"
8
+ "node": ">=18.0.0"
9
9
  },
10
10
  "scripts": {
11
11
  "build": "npm run clean && tsc",
@@ -61,11 +61,11 @@
61
61
  "typescript": "^4.9.4"
62
62
  },
63
63
  "dependencies": {
64
- "@aws-sdk/client-sqs": "3.327.0",
64
+ "@aws-sdk/client-sqs": "^3.363.0",
65
65
  "debug": "^4.3.4"
66
66
  },
67
67
  "peerDependencies": {
68
- "@aws-sdk/client-sqs": "3.327.0"
68
+ "@aws-sdk/client-sqs": "^3.363.0"
69
69
  },
70
70
  "mocha": {
71
71
  "spec": "test/tests/**/**/*.test.ts",