build(deps): bump typescript 5.9→6.0 in signature-generator - #44
Merged
Conversation
Upgrades signature-generator's TypeScript to the highest line its linter supports. Dependabot #34 proposed typescript 7.0.2, but typescript-eslint hard-blocks TS 7.0 at runtime ("typescript-eslint does not support TS 7.0"); support is only tracked for TS >=7.1 (typescript-eslint issue #10940). typescript-eslint peers typescript <6.1.0, so 6.0.3 is the newest compatible release. Verified: lint clean, tsc -b + astro build OK, 148 tests pass. Closes the 7.0.2 attempt (#34) as upstream-blocked. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
nyuchi-tools | 07ecb4f | Jul 27 2026, 04:12 AM |
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.
Summary
Resolves the lingering Dependabot TypeScript bump (#34) by upgrading
signature-generatorto the newest TypeScript line its toolchain actually supports.Why not 7.0.2 (what #34 proposed)
typescript-eslint@8.65hard-blocks TS 7.0 at runtime:Support is only tracked for TS ≥7.1 (typescript-eslint#10940), and
typescript-eslintpeerstypescript <6.1.0. So 6.0.3 is the newest release compatible with the linter — 7.0.2 cannot land without breakingnpm run lint.This PR
signature-generatordevDependencytypescript ~5.9.3 → ~6.0.3.Verification (local)
npm run lint— cleannpm run build(tsc -b+ astro) — OKnpm test— 148 passOnce merged I'll close #34 as upstream-blocked; Dependabot will re-propose 7.x when a
typescript-eslintrelease supports it.Generated by Claude Code