From 77da8a8b7915b494f184d1cdf6593719040d78df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 01:01:42 +0000 Subject: [PATCH] ci: changeset release --- .changeset/lean-intent-skill-guidance.md | 12 ------- .changeset/render-vercel-deployments.md | 9 ----- .changeset/router-unused-imports.md | 12 ------- .changeset/trpc-dead-imports.md | 12 ------- cli-aliases/create-start-app/CHANGELOG.md | 8 +++++ cli-aliases/create-start-app/package.json | 2 +- cli-aliases/create-tanstack-app/CHANGELOG.md | 8 +++++ cli-aliases/create-tanstack-app/package.json | 2 +- cli-aliases/create-tanstack/CHANGELOG.md | 8 +++++ cli-aliases/create-tanstack/package.json | 2 +- cli-aliases/create-tsrouter-app/CHANGELOG.md | 8 +++++ cli-aliases/create-tsrouter-app/package.json | 2 +- cli-aliases/ts-create-start/CHANGELOG.md | 8 +++++ cli-aliases/ts-create-start/package.json | 2 +- packages/cli/CHANGELOG.md | 14 ++++++++ packages/cli/package.json | 2 +- packages/create/CHANGELOG.md | 38 ++++++++++++++++++++ packages/create/package.json | 2 +- 18 files changed, 99 insertions(+), 52 deletions(-) delete mode 100644 .changeset/lean-intent-skill-guidance.md delete mode 100644 .changeset/render-vercel-deployments.md delete mode 100644 .changeset/router-unused-imports.md delete mode 100644 .changeset/trpc-dead-imports.md diff --git a/.changeset/lean-intent-skill-guidance.md b/.changeset/lean-intent-skill-guidance.md deleted file mode 100644 index a79ec152..00000000 --- a/.changeset/lean-intent-skill-guidance.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@tanstack/create': patch ---- - -Wire TanStack Intent up in on-demand discovery mode instead of writing the full -skill-to-task mapping table into `AGENTS.md`. Generated projects previously got -an `install --map` block listing every skill for every installed package — 99 -lines in a default app, growing with each add-on — which every agent re-read on -every invocation. Plain `install` emits a 10-line pointer telling the agent to -run `intent list` and `intent load #` when a task actually calls -for one. The "next steps" output now shows those two commands, rendered for the -project's package manager. diff --git a/.changeset/render-vercel-deployments.md b/.changeset/render-vercel-deployments.md deleted file mode 100644 index c1710c45..00000000 --- a/.changeset/render-vercel-deployments.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@tanstack/cli': minor -'@tanstack/create': minor ---- - -Add Gold partner deployment targets for Render and Vercel to React and Solid -scaffolds. Render generates package-manager-aware Blueprint commands, while -Vercel generates explicit framework detection and Nitro Build Output API -support. diff --git a/.changeset/router-unused-imports.md b/.changeset/router-unused-imports.md deleted file mode 100644 index 81d81b22..00000000 --- a/.changeset/router-unused-imports.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@tanstack/create': patch ---- - -Drop unused React Query imports from the generated React `router.tsx`. The -`tanstack-query` branch imported `ReactNode`, `QueryClient` and the -`TanstackQueryProvider` default export whenever the add-on was enabled, but -`ReactNode` and `TanstackQueryProvider` are only referenced inside the tRPC -`Wrap` block and `QueryClient` was never referenced at all. Generated projects -set `noUnusedLocals: true`, so a fresh scaffold shipped code that violates its -own tsconfig. The two tRPC-only imports are now gated behind -`addOnEnabled.tRPC` and the `QueryClient` import is removed. diff --git a/.changeset/trpc-dead-imports.md b/.changeset/trpc-dead-imports.md deleted file mode 100644 index df243388..00000000 --- a/.changeset/trpc-dead-imports.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@tanstack/create': patch ---- - -Drop two dead imports from the generated tRPC integration. `api.trpc.$.tsx` -imported `createServerFileRoute` from `@tanstack/react-start/server`, but the -route 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.tsx` imported -`QueryClientProvider`, which it never renders — -`setupRouterSsrQueryIntegration` supplies the query client. Generated projects -set `noUnusedLocals: true`, so both showed up as errors in a fresh scaffold. diff --git a/cli-aliases/create-start-app/CHANGELOG.md b/cli-aliases/create-start-app/CHANGELOG.md index 4385764b..c00c03bd 100644 --- a/cli-aliases/create-start-app/CHANGELOG.md +++ b/cli-aliases/create-start-app/CHANGELOG.md @@ -1,5 +1,13 @@ # create-start-app +## 0.59.43 + +### Patch Changes + +- Updated dependencies [[`f537073`](https://github.com/TanStack/cli/commit/f537073fc4ee24b44f3aad545a2ce48b7b48c3cc), [`8863bee`](https://github.com/TanStack/cli/commit/8863bee76fa2e19e14e38fd34278eca01e946c16), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18)]: + - @tanstack/create@0.70.0 + - @tanstack/cli@0.71.0 + ## 0.59.42 ### Patch Changes diff --git a/cli-aliases/create-start-app/package.json b/cli-aliases/create-start-app/package.json index e51540fb..afdfe1fb 100644 --- a/cli-aliases/create-start-app/package.json +++ b/cli-aliases/create-start-app/package.json @@ -1,6 +1,6 @@ { "name": "create-start-app", - "version": "0.59.42", + "version": "0.59.43", "description": "Tanstack Start Builder", "bin": "./dist/index.js", "type": "module", diff --git a/cli-aliases/create-tanstack-app/CHANGELOG.md b/cli-aliases/create-tanstack-app/CHANGELOG.md index ac7328ab..f499ebf1 100644 --- a/cli-aliases/create-tanstack-app/CHANGELOG.md +++ b/cli-aliases/create-tanstack-app/CHANGELOG.md @@ -1,5 +1,13 @@ # create-tanstack-app +## 0.54.43 + +### Patch Changes + +- Updated dependencies [[`f537073`](https://github.com/TanStack/cli/commit/f537073fc4ee24b44f3aad545a2ce48b7b48c3cc), [`8863bee`](https://github.com/TanStack/cli/commit/8863bee76fa2e19e14e38fd34278eca01e946c16), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18)]: + - @tanstack/create@0.70.0 + - @tanstack/cli@0.71.0 + ## 0.54.42 ### Patch Changes diff --git a/cli-aliases/create-tanstack-app/package.json b/cli-aliases/create-tanstack-app/package.json index b979d8e7..fa322437 100644 --- a/cli-aliases/create-tanstack-app/package.json +++ b/cli-aliases/create-tanstack-app/package.json @@ -1,6 +1,6 @@ { "name": "create-tanstack-app", - "version": "0.54.42", + "version": "0.54.43", "description": "Tanstack Application Builder", "bin": "./dist/index.js", "type": "module", diff --git a/cli-aliases/create-tanstack/CHANGELOG.md b/cli-aliases/create-tanstack/CHANGELOG.md index 071d0de6..d096326d 100644 --- a/cli-aliases/create-tanstack/CHANGELOG.md +++ b/cli-aliases/create-tanstack/CHANGELOG.md @@ -1,5 +1,13 @@ # create-tanstack +## 0.54.43 + +### Patch Changes + +- Updated dependencies [[`f537073`](https://github.com/TanStack/cli/commit/f537073fc4ee24b44f3aad545a2ce48b7b48c3cc), [`8863bee`](https://github.com/TanStack/cli/commit/8863bee76fa2e19e14e38fd34278eca01e946c16), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18)]: + - @tanstack/create@0.70.0 + - @tanstack/cli@0.71.0 + ## 0.54.42 ### Patch Changes diff --git a/cli-aliases/create-tanstack/package.json b/cli-aliases/create-tanstack/package.json index 866d42a6..3cfb54a5 100644 --- a/cli-aliases/create-tanstack/package.json +++ b/cli-aliases/create-tanstack/package.json @@ -1,6 +1,6 @@ { "name": "create-tanstack", - "version": "0.54.42", + "version": "0.54.43", "description": "Tanstack Application Builder", "bin": "./dist/index.js", "type": "module", diff --git a/cli-aliases/create-tsrouter-app/CHANGELOG.md b/cli-aliases/create-tsrouter-app/CHANGELOG.md index fb011401..a997ed56 100644 --- a/cli-aliases/create-tsrouter-app/CHANGELOG.md +++ b/cli-aliases/create-tsrouter-app/CHANGELOG.md @@ -1,5 +1,13 @@ # create-tsrouter-app +## 0.54.43 + +### Patch Changes + +- Updated dependencies [[`f537073`](https://github.com/TanStack/cli/commit/f537073fc4ee24b44f3aad545a2ce48b7b48c3cc), [`8863bee`](https://github.com/TanStack/cli/commit/8863bee76fa2e19e14e38fd34278eca01e946c16), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18)]: + - @tanstack/create@0.70.0 + - @tanstack/cli@0.71.0 + ## 0.54.42 ### Patch Changes diff --git a/cli-aliases/create-tsrouter-app/package.json b/cli-aliases/create-tsrouter-app/package.json index cb74c081..6430b500 100644 --- a/cli-aliases/create-tsrouter-app/package.json +++ b/cli-aliases/create-tsrouter-app/package.json @@ -1,6 +1,6 @@ { "name": "create-tsrouter-app", - "version": "0.54.42", + "version": "0.54.43", "description": "Tanstack Application Builder", "bin": "./dist/index.js", "type": "module", diff --git a/cli-aliases/ts-create-start/CHANGELOG.md b/cli-aliases/ts-create-start/CHANGELOG.md index b5bd7690..9c10e7dc 100644 --- a/cli-aliases/ts-create-start/CHANGELOG.md +++ b/cli-aliases/ts-create-start/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/create-start +## 0.59.43 + +### Patch Changes + +- Updated dependencies [[`f537073`](https://github.com/TanStack/cli/commit/f537073fc4ee24b44f3aad545a2ce48b7b48c3cc), [`8863bee`](https://github.com/TanStack/cli/commit/8863bee76fa2e19e14e38fd34278eca01e946c16), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18)]: + - @tanstack/create@0.70.0 + - @tanstack/cli@0.71.0 + ## 0.59.42 ### Patch Changes diff --git a/cli-aliases/ts-create-start/package.json b/cli-aliases/ts-create-start/package.json index 8ca7ccd8..5a5a715c 100644 --- a/cli-aliases/ts-create-start/package.json +++ b/cli-aliases/ts-create-start/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/create-start", - "version": "0.59.42", + "version": "0.59.43", "description": "Tanstack Start Builder", "bin": "./dist/index.js", "type": "module", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 23e5baa4..7dfd2ed6 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,19 @@ # @tanstack/cli +## 0.71.0 + +### Minor Changes + +- Add Gold partner deployment targets for Render and Vercel to React and Solid ([#507](https://github.com/TanStack/cli/pull/507)) + scaffolds. Render generates package-manager-aware Blueprint commands, while + Vercel generates explicit framework detection and Nitro Build Output API + support. + +### Patch Changes + +- Updated dependencies [[`f537073`](https://github.com/TanStack/cli/commit/f537073fc4ee24b44f3aad545a2ce48b7b48c3cc), [`8863bee`](https://github.com/TanStack/cli/commit/8863bee76fa2e19e14e38fd34278eca01e946c16), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18), [`6f16a8b`](https://github.com/TanStack/cli/commit/6f16a8bb91a7807f3322d3efdb264da1ea82bb18)]: + - @tanstack/create@0.70.0 + ## 0.70.2 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 39820f4c..b01efc9e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/cli", - "version": "0.70.2", + "version": "0.71.0", "description": "TanStack CLI", "type": "module", "main": "./dist/index.js", diff --git a/packages/create/CHANGELOG.md b/packages/create/CHANGELOG.md index 571e745f..0e692e5d 100644 --- a/packages/create/CHANGELOG.md +++ b/packages/create/CHANGELOG.md @@ -1,5 +1,43 @@ # @tanstack/create +## 0.70.0 + +### Minor Changes + +- Add Gold partner deployment targets for Render and Vercel to React and Solid ([#507](https://github.com/TanStack/cli/pull/507)) + scaffolds. Render generates package-manager-aware Blueprint commands, while + Vercel generates explicit framework detection and Nitro Build Output API + support. + +### Patch Changes + +- Wire TanStack Intent up in on-demand discovery mode instead of writing the full ([#497](https://github.com/TanStack/cli/pull/497)) + skill-to-task mapping table into `AGENTS.md`. Generated projects previously got + an `install --map` block listing every skill for every installed package — 99 + lines in a default app, growing with each add-on — which every agent re-read on + every invocation. Plain `install` emits a 10-line pointer telling the agent to + run `intent list` and `intent load #` when a task actually calls + for 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](https://github.com/TanStack/cli/pull/498)) + `tanstack-query` branch imported `ReactNode`, `QueryClient` and the + `TanstackQueryProvider` default export whenever the add-on was enabled, but + `ReactNode` and `TanstackQueryProvider` are only referenced inside the tRPC + `Wrap` block and `QueryClient` was never referenced at all. Generated projects + set `noUnusedLocals: true`, so a fresh scaffold shipped code that violates its + own tsconfig. The two tRPC-only imports are now gated behind + `addOnEnabled.tRPC` and the `QueryClient` import is removed. + +- Drop two dead imports from the generated tRPC integration. `api.trpc.$.tsx` ([#498](https://github.com/TanStack/cli/pull/498)) + imported `createServerFileRoute` from `@tanstack/react-start/server`, but the + route 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.tsx` imported + `QueryClientProvider`, which it never renders — + `setupRouterSsrQueryIntegration` supplies the query client. Generated projects + set `noUnusedLocals: true`, so both showed up as errors in a fresh scaffold. + ## 0.69.2 ### Patch Changes diff --git a/packages/create/package.json b/packages/create/package.json index 86053091..2fd37e37 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/create", - "version": "0.69.2", + "version": "0.70.0", "description": "TanStack Application Builder Engine", "type": "module", "main": "./dist/index.js",