update deps, exclude node v23 (#3916)

This commit is contained in:
Karsten Hassel
2025-10-16 23:47:06 +02:00
committed by GitHub
parent d39e686f7a
commit 9ff716f4ab
6 changed files with 451 additions and 325 deletions

View File

@@ -38,7 +38,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
node-version: [22.18.0, 22.x, 24.x]
node-version: [22.20.0, 22.x, 24.x]
steps:
- name: Install electron dependencies and labwc
run: |

View File

@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.18.0, 22.x, 24.x]
node-version: [22.20.0, 22.x, 24.x]
steps:
- name: Checkout code
uses: actions/checkout@v5

View File

@@ -24,7 +24,7 @@ planned for 2026-01-01
### Updated
- [core] Update dependencies (#3909)
- [core] Update dependencies (#3909, #3916)
## [2.33.0] - 2025-10-01

View File

@@ -36,7 +36,7 @@ Are done by
- [ ] test `prep-release` branch
- [ ] update `CHANGELOG.md`
- [ ] add all contributor names: `...`
- [ ] add min. node version: > ⚠️ This release needs nodejs version `v22.18.0` or higher
- [ ] add min. node version: > ⚠️ This release needs nodejs version `v22.20.0` or higher
- [ ] check release link at the bottom of the file
- [ ] commit and push all changes
- [ ] create pull request from `prep-release` to `develop` branch with title `Prepare Release 2.xx.0`

746
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -71,13 +71,13 @@
"dependencies": {
"@fontsource/roboto": "^5.2.8",
"@fontsource/roboto-condensed": "^5.2.8",
"@fortawesome/fontawesome-free": "^7.0.1",
"@fortawesome/fontawesome-free": "^7.1.0",
"ajv": "^8.17.1",
"animate.css": "^4.1.1",
"console-stamp": "^3.1.2",
"croner": "^9.1.0",
"envsub": "^4.1.0",
"eslint": "^9.36.0",
"eslint": "^9.37.0",
"express": "^5.1.0",
"express-ipfilter": "^1.3.2",
"feedme": "^2.0.2",
@@ -91,7 +91,7 @@
"pm2": "^6.0.13",
"socket.io": "^4.8.1",
"suncalc": "^1.9.0",
"systeminformation": "^5.27.10",
"systeminformation": "^5.27.11",
"undici": "^7.16.0",
"weathericons": "^2.1.0"
},
@@ -100,25 +100,25 @@
"cspell": "^9.2.1",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsdoc": "^60.7.0",
"eslint-plugin-package-json": "^0.56.3",
"eslint-plugin-jsdoc": "^61.1.4",
"eslint-plugin-package-json": "^0.57.0",
"express-basic-auth": "^1.2.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.3",
"lint-staged": "^16.2.4",
"markdownlint-cli2": "^0.18.1",
"playwright": "^1.55.1",
"playwright": "^1.56.0",
"prettier": "^3.6.2",
"prettier-plugin-jinja-template": "^2.1.0",
"stylelint": "^16.24.0",
"stylelint-config-standard": "^39.0.0",
"stylelint": "^16.25.0",
"stylelint-config-standard": "^39.0.1",
"stylelint-prettier": "^5.0.3"
},
"optionalDependencies": {
"electron": "^38.2.0"
"electron": "^38.3.0"
},
"engines": {
"node": ">=22.18.0"
"node": ">=22.20.0 <23 || >=24"
}
}