sqs-producer 3.2.0 → 3.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.
@@ -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
@@ -20,6 +20,10 @@ npm install sqs-producer
20
20
  > npm install sqs-producer@2.2.0 --save-dev
21
21
  > ```
22
22
 
23
+ ### Node Version
24
+
25
+ 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 v3.2.1 release, if you are using Node 16, please use a version before the v3.3.0 release.
26
+
23
27
  ## Usage
24
28
 
25
29
  ```js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sqs-producer",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "Enqueues messages onto a given SQS queue",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "clean": "rm -fr dist/*"
21
21
  },
22
22
  "engines": {
23
- "node": ">=12.0.0"
23
+ "node": ">=18.0.0"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
@@ -41,24 +41,24 @@
41
41
  "@types/chai": "^4.3.5",
42
42
  "@types/debug": "^4.1.8",
43
43
  "@types/mocha": "^10.0.1",
44
- "@types/node": "^18.11.18",
44
+ "@types/node": "^20.4.1",
45
45
  "@types/sinon": "^10.0.15",
46
46
  "chai": "^4.3.7",
47
- "eslint": "^8.43.0",
47
+ "eslint": "^8.44.0",
48
48
  "eslint-config-iplayer-ts": "^4.1.1",
49
49
  "eslint-config-prettier": "^8.8.0",
50
50
  "mocha": "^10.2.0",
51
51
  "nyc": "^15.1.0",
52
- "prettier": "^2.8.8",
52
+ "prettier": "^3.0.0",
53
53
  "sinon": "^15.2.0",
54
54
  "ts-node": "^10.9.1",
55
- "typescript": "^5.1.3"
55
+ "typescript": "^5.1.6"
56
56
  },
57
57
  "dependencies": {
58
- "@aws-sdk/client-sqs": "^3.360.0"
58
+ "@aws-sdk/client-sqs": "^3.363.0"
59
59
  },
60
60
  "peerDependencies": {
61
- "@aws-sdk/client-sqs": "^3.360.0"
61
+ "@aws-sdk/client-sqs": "^3.363.0"
62
62
  },
63
63
  "mocha": {
64
64
  "spec": "test/**/**/*.test.ts",