chore: ignore TypeScript major-version bumps in dependabot#82
Merged
Conversation
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 typescript-eslint/typescript-eslint#10940 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
nsavoire
approved these changes
Jul 24, 2026
Merged
szegedi
added a commit
that referenced
this pull request
Jul 24, 2026
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 typescript-eslint/typescript-eslint#10940
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a dependabot
ignorerule for TypeScript major-version updates.Why
Dependabot #76 tried to bump
typescriptfrom 6.0.3 → 7.0.2. TypeScript 7 is the new native (Go) port, and it is not yet supported bytypescript-eslint, which this repo's lint uses (@typescript-eslint/parser+@typescript-eslint/eslint-plugin). In CI this shows up as both a dependency-resolution failure and a lint failure — the@typescript-eslint/*peer range capstypescriptbelow6.1.0:Support for TS ≥7 is tracked upstream but not yet shipped:
typescript-eslint/typescript-eslint#10940
Until that lands, major
typescriptbumps can't pass CI, so this rule stops dependabot from repeatedly opening them. Minor/patch bumps within TS 6 are unaffected.Mirrors DataDog/pprof-nodejs#380.
🤖 Generated with Claude Code