Skip to content

Commit be957af

Browse files
authored
bump minimal node version to v22.18.0 (MagicMirrorOrg#3877)
electron uses node v22.18 in its [current releases](https://releases.electronjs.org/), so we should go hand in hand and use that as the minimal node version
1 parent 93d5df8 commit be957af

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.github/workflows/automated-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
timeout-minutes: 30
3939
strategy:
4040
matrix:
41-
node-version: [22.14.0, 22.x, 24.x]
41+
node-version: [22.18.0, 22.x, 24.x]
4242
steps:
4343
- name: Install electron dependencies and labwc
4444
run: |

.github/workflows/electron-rebuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [22.14.0, 22.x, 24.x]
11+
node-version: [22.18.0, 22.x, 24.x]
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v5

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ planned for 2025-10-01
1313

1414
Thanks to: @dathbe.
1515

16+
> ⚠️ This release needs nodejs version `v22.18.0 or higher`
17+
1618
### Added
1719

1820
- Added configuration option for `User-Agent`, used by calendar & news module (#3255)

Collaboration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Are done by
3535
- [ ] test `prep-release` branch
3636
- [ ] update `CHANGELOG.md`
3737
- [ ] add all contributor names: `...`
38-
- [ ] add min. node version: > ⚠️ This release needs nodejs version `v22.14.0` or higher
38+
- [ ] add min. node version: > ⚠️ This release needs nodejs version `v22.18.0` or higher
3939
- [ ] check release link at the bottom of the file
4040
- [ ] commit and push all changes
4141
- [ ] create pull request from `prep-release` to `develop` branch with title `Prepare Release 2.xx.0`

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"electron": "^38.0.0"
120120
},
121121
"engines": {
122-
"node": ">=22.14.0"
122+
"node": ">=22.18.0"
123123
},
124124
"_moduleAliases": {
125125
"node_helper": "js/node_helper.js",

0 commit comments

Comments
 (0)