sqs-consumer 11.6.0 → 12.0.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.
- package/CHANGELOG.md +4 -3
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
## [
|
|
1
|
+
## [12.0.0](https://github.com/bbc/sqs-consumer/compare/v11.6.0...v12.0.0) (2025-05-09)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Chores
|
|
4
4
|
|
|
5
|
-
*
|
|
5
|
+
* setting minimum node version to 20 ([#572](https://github.com/bbc/sqs-consumer/issues/572)) ([599d753](https://github.com/bbc/sqs-consumer/commit/599d7532580a4f8424a1d3733742c30505c64dfc))
|
|
6
|
+
* updating readme ([2869495](https://github.com/bbc/sqs-consumer/commit/286949527d02d5d8cb1c3cb10943f7671f2fde57))
|
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ If you would like to use JSR instead, you can find the package [here](https://js
|
|
|
19
19
|
|
|
20
20
|
### Node version
|
|
21
21
|
|
|
22
|
-
We will only support Node versions that are actively or security supported by the Node team.
|
|
22
|
+
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/).
|
|
23
23
|
|
|
24
24
|
## Documentation
|
|
25
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sqs-consumer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0",
|
|
4
4
|
"description": "Build SQS-based Node applications without the boilerplate",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": ">=
|
|
21
|
+
"node": ">=20.0.0"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"clean": "rm -fr dist/*",
|