From 5c1c255012207f0b03aac0b60a41c8ca436f24a0 Mon Sep 17 00:00:00 2001 From: Aaron Sachs <898627+asachs01@users.noreply.github.com> Date: Thu, 13 Aug 2026 12:35:10 +0000 Subject: [PATCH] ci(deps): ignore typescript major-version bumps in dependabot config Stop Dependabot from proposing typescript MAJOR-version bumps until the fleet's toolchain (tsup/rollup-plugin-dts DTS emit, typescript-eslint peer range) supports TS7. Prevents Dependabot from re-proposing and re-merging the same breaking major bump after a prior manual revert. --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2ea7cba..7f7230b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -53,6 +53,15 @@ updates: # fixed ip-address, then remove this block. - dependency-name: "ip-address" + # typescript 7.x breaks this fleet's toolchain: DTS emit (tsup/rollup-plugin-dts + # TS5101 baseUrl-deprecated-as-error), and typescript-eslint (still <6.1.0 as of + # 8.66.0, no TS7 support yet). Has broken main 3x on some repos because Dependabot + # has no memory of a prior manual revert and just re-proposes the same major again. + # Deliberate hold, not a permanent blind -- remove once typescript-eslint + the + # tsup/DTS toolchain support TS7. + - dependency-name: "typescript" + update-types: ["version-update:semver-major"] + - package-ecosystem: "github-actions" directory: "/" schedule: