chore(deps): consolidated dependency update (supersedes dependabot PRs) - #540
Merged
Conversation
Brings all dependencies to their current versions in one branch, so the stale dependabot PRs on the dependencyAutoUpdate branch are obsolete. Updated (manifest floors raised to the current releases): * @iobroker/adapter-core ^3.4.1 -> ^3.4.3 * @iobroker/eslint-config ^2.2.0 -> ^2.3.4 * @iobroker/testing ^5.2.2 -> ^5.3.0 * @tsconfig/node22 ^22.0.2 -> ^22.0.6 * @types/node ^22.10.0 -> ^22.20.1 * @types/proxyquire ^1.3.28 -> ^1.3.31 * typescript ^5.1.6 -> ^5.9.3 Deliberately not taken: * typescript 7.x - @iobroker/eslint-config v2 pins typescript ~5.9, and .github/dependabot.yml already ignores typescript minor/major bumps. * @types/node 26.x - engines.node is ">= 22", so @types/node stays on the matching 22.x line (also ignored for majors in dependabot.yml). No chai/mocha/sinon/@types/* to remove (repo-checker E0063 already satisfied - they resolve transitively via @iobroker/testing v5). GitHub Actions in the workflows are already on their latest majors. Supersedes dependabot PRs #533, #534, #537, #538. Verified locally: npm run lint, npm run test:package, npm run test:js and npm run test:integration all pass. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This was referenced Aug 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this is
One consolidated dependency update for the adapter, replacing the individual dependabot PRs that are still open against the
dependencyAutoUpdatebranch. Those PRs were raised from a pre-modernisation manifest (they still propose things likeaxios 0.27.2 -> 1.19.0and@types/node 14.x) and no longer describe this repository —mainhas since moved to Node >= 22, ESLint flat config and@iobroker/testingv5.Updated
@iobroker/adapter-core^3.4.1^3.4.3@iobroker/eslint-config^2.2.0^2.3.4@iobroker/testing^5.2.2^5.3.0@tsconfig/node22^22.0.2^22.0.6@types/node^22.10.0^22.20.1@types/proxyquire^1.3.28^1.3.31typescript^5.1.6^5.9.3package-lock.jsonregenerated withnpm install.Supersedes
@iobroker/testingfrom 2.6.0 to 5.3.0 (already on 5.x here; this PR takes 5.3.0)@types/nodefrom 14.14.41 to 14.18.63 (obsolete; this PR is on the 22.x line)eslintfrom 7.32.0 to 10.8.1 (obsolete;eslintis no longer a direct dependency, it comes via@iobroker/eslint-configv2 with flat config)axiosfrom 0.27.2 to 1.19.0 (obsolete;axiosis not a dependency of this adapter at all)Majors deliberately NOT taken
typescript5.9.3 -> 7.0.2 —@iobroker/eslint-configv2 declarestypescript: ~5.9as a peer dependency, so TS 7 would break the lint toolchain..github/dependabot.ymlalready ignores typescript minor and major updates for this reason. Kept on the 5.x line.@types/node22.20.1 -> 26.2.0 —engines.nodeis>= 22, so the types stay aligned to the supported Node line rather than jumping above it. Also already ignored for majors in.github/dependabot.yml.Other checks
chai,chai-as-promised,mocha,sinon,sinon-chaiand their@typesare already absent frompackage.jsonand resolve transitively through@iobroker/testingv5.proxyquire/@types/proxyquireare kept because they are not bundled.ioBroker/testing-action-check@v2,ioBroker/testing-action-adapter@v1,ioBroker/testing-action-deploy@v1andiobroker-bot-orga/action-automerge-dependabot@v1are all already on their latest majors. No workflow changes; theconcurrency:block is untouched.### __WORK IN PROGRESS__.Local verification
npm run lintjsdoc/require-param-descriptionwarnings)npm run test:packagenpm run test:jsnpm run test:integration🤖 Generated with Claude Code