sqs-producer 7.0.0 → 8.0.0-canary.1
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.
- package/CHANGELOG.md +5 -8
- package/README.md +2 -2
- package/dist/cjs/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/esm/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +22 -23
- package/.eslintignore +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
## [
|
|
2
|
-
|
|
3
|
-
### Features
|
|
4
|
-
|
|
5
|
-
* updating to esm ([#117](https://github.com/bbc/sqs-producer/issues/117)) ([0395a2e](https://github.com/bbc/sqs-producer/commit/0395a2e11b15f10301e1182070a40a0a70e8b085))
|
|
1
|
+
## [8.0.0-canary.1](https://github.com/bbc/sqs-producer/compare/v7.0.0...v8.0.0-canary.1) (2025-08-26)
|
|
6
2
|
|
|
7
3
|
### Chores
|
|
8
4
|
|
|
9
|
-
* **
|
|
10
|
-
*
|
|
11
|
-
* updating
|
|
5
|
+
* **deps:** update actions/dependency-review-action action to v4 ([#119](https://github.com/bbc/sqs-producer/issues/119)) ([d0541e8](https://github.com/bbc/sqs-producer/commit/d0541e85c28ac9662940ce2b1855c08e7ae7aa89))
|
|
6
|
+
* **deps:** update github/codeql-action action to v3 ([#118](https://github.com/bbc/sqs-producer/issues/118)) ([611eddf](https://github.com/bbc/sqs-producer/commit/611eddf2e1150a58b354f3aeca9a3f5a67df4bb0))
|
|
7
|
+
* updating dependencies ([43cf299](https://github.com/bbc/sqs-producer/commit/43cf2994de6b580bd0832f8e14745f7119c24f06))
|
|
8
|
+
* updating node and deps ([#120](https://github.com/bbc/sqs-producer/issues/120)) ([16a83e5](https://github.com/bbc/sqs-producer/commit/16a83e5195d2a851e4e01792475a7378ff1722cf))
|
package/README.md
CHANGED
|
@@ -15,9 +15,9 @@ To install this package, enter the following command into your terminal (or the
|
|
|
15
15
|
npm install sqs-producer
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
### Node
|
|
18
|
+
### Node version
|
|
19
19
|
|
|
20
|
-
We will only support Node versions that are actively or security supported by the Node team.
|
|
20
|
+
We will only support Node versions that are actively or security supported by the Node team. You can find the list of versions that are actively supported [here](https://nodejs.org/en/about/releases/).
|
|
21
21
|
|
|
22
22
|
## Documentation
|
|
23
23
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../../src/errors.ts","../../src/format.ts","../../src/index.ts","../../src/producer.ts","../../src/types.ts","../../src/validation.ts"],"version":"5.
|
|
1
|
+
{"root":["../../src/errors.ts","../../src/format.ts","../../src/index.ts","../../src/producer.ts","../../src/types.ts","../../src/validation.ts"],"version":"5.9.2"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../../src/errors.ts","../../src/format.ts","../../src/index.ts","../../src/producer.ts","../../src/types.ts","../../src/validation.ts"],"version":"5.
|
|
1
|
+
{"root":["../../src/errors.ts","../../src/format.ts","../../src/index.ts","../../src/producer.ts","../../src/types.ts","../../src/validation.ts"],"version":"5.9.2"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sqs-producer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0-canary.1",
|
|
4
4
|
"description": "Enqueues messages onto a given SQS queue",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"generate-docs": "typedoc"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
|
-
"node": ">=
|
|
39
|
+
"node": ">=20.0.0"
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|
|
@@ -148,33 +148,33 @@
|
|
|
148
148
|
"@semantic-release/changelog": "^6.0.3",
|
|
149
149
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
150
150
|
"@semantic-release/git": "^10.0.1",
|
|
151
|
-
"@semantic-release/github": "^11.0.
|
|
152
|
-
"@semantic-release/npm": "12.0.
|
|
151
|
+
"@semantic-release/github": "^11.0.4",
|
|
152
|
+
"@semantic-release/npm": "12.0.2",
|
|
153
153
|
"@semantic-release/release-notes-generator": "^14.0.3",
|
|
154
|
-
"@types/chai": "^5.
|
|
154
|
+
"@types/chai": "^5.2.2",
|
|
155
155
|
"@types/mocha": "^10.0.10",
|
|
156
|
-
"@types/node": "^
|
|
157
|
-
"@types/sinon": "^17.0.
|
|
158
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
159
|
-
"@typescript-eslint/parser": "^8.
|
|
160
|
-
"chai": "^
|
|
161
|
-
"conventional-changelog-conventionalcommits": "^
|
|
162
|
-
"eslint": "^9.
|
|
163
|
-
"eslint-config-eslint": "^
|
|
164
|
-
"mocha": "^11.
|
|
156
|
+
"@types/node": "^24.3.0",
|
|
157
|
+
"@types/sinon": "^17.0.4",
|
|
158
|
+
"@typescript-eslint/eslint-plugin": "^8.41.0",
|
|
159
|
+
"@typescript-eslint/parser": "^8.41.0",
|
|
160
|
+
"chai": "^6.0.1",
|
|
161
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
162
|
+
"eslint": "^9.34.0",
|
|
163
|
+
"eslint-config-eslint": "^12.0.0",
|
|
164
|
+
"mocha": "^11.7.1",
|
|
165
165
|
"c8": "^10.1.3",
|
|
166
|
-
"prettier": "^3.
|
|
167
|
-
"semantic-release": "^24.2.
|
|
168
|
-
"sinon": "^
|
|
166
|
+
"prettier": "^3.6.2",
|
|
167
|
+
"semantic-release": "^24.2.7",
|
|
168
|
+
"sinon": "^21.0.0",
|
|
169
169
|
"ts-node": "^10.9.2",
|
|
170
|
-
"typedoc": "^0.
|
|
171
|
-
"typescript": "^5.
|
|
170
|
+
"typedoc": "^0.28.11",
|
|
171
|
+
"typescript": "^5.9.2"
|
|
172
172
|
},
|
|
173
173
|
"dependencies": {
|
|
174
|
-
"@aws-sdk/client-sqs": "^3.
|
|
174
|
+
"@aws-sdk/client-sqs": "^3.876.0"
|
|
175
175
|
},
|
|
176
176
|
"peerDependencies": {
|
|
177
|
-
"@aws-sdk/client-sqs": "^3.
|
|
177
|
+
"@aws-sdk/client-sqs": "^3.876.0"
|
|
178
178
|
},
|
|
179
179
|
"mocha": {
|
|
180
180
|
"extensions": [
|
|
@@ -194,6 +194,5 @@
|
|
|
194
194
|
],
|
|
195
195
|
"sourceMap": true,
|
|
196
196
|
"instrument": true
|
|
197
|
-
}
|
|
198
|
-
"packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
|
|
197
|
+
}
|
|
199
198
|
}
|
package/.eslintignore
DELETED