From aeec6524b5b5c691acc8d8a4d7732b9fb41feaf4 Mon Sep 17 00:00:00 2001 From: Stephen Dolan Date: Thu, 21 May 2026 10:57:32 -0400 Subject: [PATCH] chore: ignore zod and typescript major bumps in dependabot zod v4 and typescript v6 were both auto-bumped and manually reverted (commits c8468c2 and e0be1a5). Without ignore rules dependabot keeps recreating the same PRs. Skip their major-version updates until we plan upgrades intentionally. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 185ab52..9853be3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,13 @@ updates: directory: / schedule: interval: weekly + # zod v4 and typescript v6 were each tried and reverted (commits c8468c2, + # e0be1a5). Ignore their major bumps until we deliberately plan an upgrade. + ignore: + - dependency-name: zod + update-types: ["version-update:semver-major"] + - dependency-name: typescript + update-types: ["version-update:semver-major"] groups: all-dependencies: patterns: