ci: Version Packages - #506
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 30, 2026 19:35
5c89aa2 to
4b9093c
Compare
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
create-start-app@0.59.43
Patch Changes
f537073,6f16a8b,6f16a8b]:create-tanstack@0.54.43
Patch Changes
f537073,6f16a8b,6f16a8b]:create-tanstack-app@0.54.43
Patch Changes
f537073,6f16a8b,6f16a8b]:create-tsrouter-app@0.54.43
Patch Changes
f537073,6f16a8b,6f16a8b]:@tanstack/create-start@0.59.43
Patch Changes
f537073,6f16a8b,6f16a8b]:@tanstack/cli@0.70.3
Patch Changes
f537073,6f16a8b,6f16a8b]:@tanstack/create@0.69.3
Patch Changes
Wire TanStack Intent up in on-demand discovery mode instead of writing the full (#497)
skill-to-task mapping table into
AGENTS.md. Generated projects previously gotan
install --mapblock listing every skill for every installed package — 99lines in a default app, growing with each add-on — which every agent re-read on
every invocation. Plain
installemits a 10-line pointer telling the agent torun
intent listandintent load <package>#<skill>when a task actually callsfor one. The "next steps" output now shows those two commands, rendered for the
project's package manager.
Drop unused React Query imports from the generated React
router.tsx. The (#498)tanstack-querybranch importedReactNode,QueryClientand theTanstackQueryProviderdefault export whenever the add-on was enabled, butReactNodeandTanstackQueryProviderare only referenced inside the tRPCWrapblock andQueryClientwas never referenced at all. Generated projectsset
noUnusedLocals: true, so a fresh scaffold shipped code that violates itsown tsconfig. The two tRPC-only imports are now gated behind
addOnEnabled.tRPCand theQueryClientimport is removed.Drop two dead imports from the generated tRPC integration.
api.trpc.$.tsx(#498)imported
createServerFileRoutefrom@tanstack/react-start/server, but theroute was already migrated to
createFileRoute(...)({ server: { handlers } })and that symbol is no longer exported, so the leftover import was both unused
and unresolvable. The tRPC branch of
root-provider.tsximportedQueryClientProvider, which it never renders —setupRouterSsrQueryIntegrationsupplies the query client. Generated projectsset
noUnusedLocals: true, so both showed up as errors in a fresh scaffold.