Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE: Use Node 20 instead of Node 16 #1132

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@ jobs:
vmImage: 'ubuntu-22.04'

steps:
# This is later than the minimum version the package claims support
# for because semantic-release requires a later LTS version that we
# can require of our users without a breaking change
- task: NodeTool@0
inputs:
versionSpec: '18.17.0'
displayName: use node 18.17.0
versionSpec: '20.x'
displayName: use node 20.x

- script: yarn install --immutable
displayName: yarn install
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"README.md"
],
"engines": {
"node": ">= 8"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

8 to 20 feels like a big jump. Is the intent to use features that require Node >= 20 in future commits?

"node": ">= 20"
},
"packageManager": "yarn@3.5.0",
"dependencies": {
Expand Down