chore: ignore TypeScript major-version bumps in dependabot#380
Open
szegedi wants to merge 1 commit into
Open
Conversation
TypeScript 7 (the new native port) is not yet supported by typescript-eslint, and therefore not by gts, so a major bump breaks the lint job's `gts check` step. The latest published typescript-eslint still declares a `typescript >=4.8.4 <6.1.0` peer dependency. 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>
Overall package sizeSelf size: 2.45 MB Dependency sizes| name | version | self size | total size | |------|---------|-----------|------------| | pprof-format | 2.2.3 | 500.55 kB | 500.55 kB | | source-map | 0.8.0 | 185.66 kB | 185.66 kB | | node-gyp-build | 4.8.4 | 13.86 kB | 13.86 kB |🤖 This report was automatically generated by heaviest-objects-in-the-universe |
|
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 #374 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— and therefore not bygts, which the lint job runs (npm run lint→gts check). The latest publishedtypescript-eslint(8.65.0) still declares a peer dependency oftypescript >=4.8.4 <6.1.0, so the lint job fails with: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.🤖 Generated with Claude Code