From ba3d3ff174410e3c1b1487401b1ff2221c80b0f1 Mon Sep 17 00:00:00 2001 From: Mohamed Elkholy Date: Wed, 10 Jun 2026 15:11:14 -0400 Subject: [PATCH] chore(deps): hold TypeScript major bumps in Dependabot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TS 6.0 deprecates tsconfig `baseUrl` (TS5101) and breaks the vis/ and web/ builds. Defer the 5.x→6.x major to a coordinated monorepo migration instead of recurring split bot PRs (#96-#99); minor/patch still flow. --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 08d73053..41b29994 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -52,3 +52,11 @@ updates: update-types: - "minor" - "patch" + ignore: + # TypeScript 6.x is a major bump: it deprecates the tsconfig `baseUrl` + # option (TS5101) and breaks the vis/ and web/ builds. Adopting it is a + # coordinated monorepo migration, not four split bot PRs. Hold the major + # until that lands; minor/patch within the current line still flow. + - dependency-name: "typescript" + update-types: + - "version-update:semver-major"