-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
* chore: changing node support level to min v18 * fix: typo * chore: rewording
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "sqs-consumer", | ||
"version": "7.2.2", | ||
"version": "7.3.0", | ||
"description": "Build SQS-based Node applications without the boilerplate", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"engines": { | ||
"node": ">=16.0.0" | ||
This comment was marked as off-topic.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
nicholasgriffintn
Author
Member
|
||
"node": ">=18.0.0" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && tsc", | ||
|
@nicholasgriffintn
FYI dropping a Node.js version in a minor release and using chore in the release notes is not right. This does not follow the semver specification.
This is a breaking change. That should be a major release and the release notes should contain "BREAKING CHANGE".
A good example: https://github.com/mochajs/mocha/releases/tag/v10.0.0