From 580a785726d39874921b521433d2ba104dfffbc3 Mon Sep 17 00:00:00 2001 From: Daniel Schultz Date: Tue, 4 Aug 2026 17:31:15 -0400 Subject: [PATCH] Ignore major `typescript` version updates Typescript 7 has a lot of speed improvements, but the ecosystem does not yet support it. We should manually update when ready. --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6fc955e..4788882 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,9 @@ updates: open-pull-requests-limit: 10 cooldown: default-days: 7 + ignore: + - dependency-name: "typescript" + update-types: ["version-update:semver-major"] groups: development: dependency-type: "development"