Skip to content

Commit

Permalink
feat(node-versions): raised the minimum supported node version w/in t…
Browse files Browse the repository at this point in the history
…he v20 range to v20.6.1

because of a known issue with v20.6.0 that we might as well avoid since we are restricting the
supported ranges at this point anyway: nodejs/node#49497

BREAKING CHANGE: the minimum supported version for the v20 range of node has been raised slightly to
v20.6.1 to avoid a known node bug
  • Loading branch information
travi committed Sep 16, 2023
1 parent 6604153 commit b93bef4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
node-version:
- 18.17.0
- 20.6.0
- 20.6.1
- 20

runs-on: ubuntu-latest
Expand Down
22 changes: 17 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -76,7 +76,7 @@
"testdouble": "3.19.0"
},
"engines": {
"node": "^18.17 || >=20.6"
"node": "^18.17 || >=20.6.1"
},
"exports": "./index.js",
"files": [
Expand Down

0 comments on commit b93bef4

Please sign in to comment.