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 CHANGED
@@ -1,5 +1,6 @@
1
- ## [11.6.0](https://github.com/bbc/sqs-consumer/compare/v11.5.1...v11.6.0) (2025-02-27)
1
+ ## [12.0.0](https://github.com/bbc/sqs-consumer/compare/v11.6.0...v12.0.0) (2025-05-09)
2
2
 
3
- ### Features
3
+ ### Chores
4
4
 
5
- * export error classes ([#566](https://github.com/bbc/sqs-consumer/issues/566)) ([6da8a6c](https://github.com/bbc/sqs-consumer/commit/6da8a6c02bd33d28fa0a3e8d1ae13b04c31c7add))
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. 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.
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": "11.6.0",
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": ">=18.0.0"
21
+ "node": ">=20.0.0"
22
22
  },
23
23
  "scripts": {
24
24
  "clean": "rm -fr dist/*",