You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
regenerate the Bun lockfile without TypeScript 7 platform packages
Why
openapi-typescript@7.13.0 declares a TypeScript ^5.x peer range and its generated-artifact check crashes under TypeScript 7 (ts.factory.createKeywordTypeNode is undefined). Keeping the existing TypeScript 6 toolchain makes the dependency batch CI-compatible without changing generated sources.
Validation
bun run typecheck
bun run lint
bun run format:check
bun run generate:check
bun test exercised 672 tests; 668 passed. The four failures are host-only because this environment has Bun 1.3.0 while the repository's release tests explicitly require its pinned Bun 1.4.0 toolchain. GitHub CI runs Bun 1.4.0.
I picked you because recent history on cli/package.json and cli/bun.lock is primarily yours. This PR retains TypeScript 6.0.3 so Dependabot PR #105 avoids the openapi-typescript@7.13.0 / TypeScript 7 factory-API breakage. Typecheck, lint, formatting, and generated-artifact verification pass locally. GitHub CI does not start because this PR targets Dependabot's branch and the repository test workflows only trigger for PRs targeting main; the remaining release tests need the repo-pinned Bun 1.4.0. The review focus is whether that validation is sufficient to merge #107 before #105.
@francoischalifour following up: CI remains green, with no requested changes or merge conflict. Could you review the stacked-TypeScript-6-compatibility when you have capacity?
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
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
Why
openapi-typescript@7.13.0declares a TypeScript^5.xpeer range and its generated-artifact check crashes under TypeScript 7 (ts.factory.createKeywordTypeNodeis undefined). Keeping the existing TypeScript 6 toolchain makes the dependency batch CI-compatible without changing generated sources.Validation
bun run typecheckbun run lintbun run format:checkbun run generate:checkbun testexercised 672 tests; 668 passed. The four failures are host-only because this environment has Bun 1.3.0 while the repository's release tests explicitly require its pinned Bun 1.4.0 toolchain. GitHub CI runs Bun 1.4.0.