From 8edb4128de2aef519d8fc1784c889814a196c0c1 Mon Sep 17 00:00:00 2001 From: Attila Szegedi Date: Fri, 24 Jul 2026 11:16:40 +0200 Subject: [PATCH] chore: ignore TypeScript major-version bumps in dependabot TypeScript 7 (the new native port) is not yet supported by typescript-eslint, so a major bump breaks the lint job and even dependency resolution in CI (the @typescript-eslint/* peer range caps typescript below 6.1.0). Ignore typescript major-version updates until the ecosystem catches up. See https://github.com/typescript-eslint/typescript-eslint/issues/10940 Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index aadb841..6a05082 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,6 +12,13 @@ updates: # Check the npm registry for updates once every week on a weekday schedule: interval: "weekly" + ignore: + # TypeScript 7 (the native port) is not yet supported by typescript-eslint, + # so major bumps break the lint job (and dependency resolution in CI). + # See https://github.com/typescript-eslint/typescript-eslint/issues/10940 + # Re-enable once typescript-eslint ships TS >=7 support. + - dependency-name: "typescript" + update-types: ["version-update:semver-major"] versioning-strategy: "increase" labels: - dependabot