Skip to content

Commit

Permalink
fix: require engines newer than node 12.9 (#445)
Browse files Browse the repository at this point in the history
This matches the engine required by the mongodb package;
see https://github.com/mongodb/node-mongodb-native/blob/4.1/package.json#L88
  • Loading branch information
davidjb authored Feb 26, 2022
1 parent f22d702 commit 0920663
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Change `engines` to require Node 12.9 or newer, matching the upgrade to `mongodb` that occurred in `v4.5.0`

## [4.6.0] - 2021-09-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish"
},
"engines": {
"node": ">=10"
"node": ">=12.9.0"
},
"peerDependencies": {
"mongodb": "^4.1.0"
Expand Down

0 comments on commit 0920663

Please sign in to comment.