Skip to content

Commit

Permalink
chore: update node version to node 20 (#319)
Browse files Browse the repository at this point in the history
* chore: update build pipeline and minimum node version for usage to node 20 LTS

* chore: update changelog.md
  • Loading branch information
colinscz authored Jan 14, 2025
1 parent 4d5cd0c commit 9dd79d5
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/insider-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
env:
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

### Changed

- **⚠️ Breaking **: Upgraded library to Node 20

The SIX Webcomponents cannot be used with Node 16 or 18 anymore. Please upgrade to Node 20.

## 4.3.1 - 2025-01-09

⚠️ This will be the last release under major version 4. The next release will be version 5. ⚠️
Expand Down
2 changes: 1 addition & 1 deletion libraries/ui-library-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
},
"sideEffects": false,
"engines": {
"node": ">=16"
"node": ">=20"
}
}
2 changes: 1 addition & 1 deletion libraries/ui-library-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"private": false,
"sideEffects": false,
"engines": {
"node": ">=16"
"node": ">=20"
}
}
2 changes: 1 addition & 1 deletion libraries/ui-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=16"
"node": ">=20"
}
}
6 changes: 3 additions & 3 deletions package-lock.json

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

0 comments on commit 9dd79d5

Please sign in to comment.