From f035743be3a82e94592f7f2c51027147aa616679 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 10:09:33 +0000 Subject: [PATCH 1/4] ci: Version Packages --- .../fix-anthropic-multi-turn-tool-calls.md | 35 ------------- .changeset/tighten-adapter-contract.md | 25 --------- examples/ts-svelte-chat/CHANGELOG.md | 13 +++++ examples/ts-svelte-chat/package.json | 2 +- examples/ts-vue-chat/CHANGELOG.md | 14 +++++ examples/ts-vue-chat/package.json | 2 +- examples/vanilla-chat/CHANGELOG.md | 7 +++ examples/vanilla-chat/package.json | 2 +- packages/typescript/ai-anthropic/CHANGELOG.md | 51 +++++++++++++++++++ packages/typescript/ai-anthropic/package.json | 2 +- packages/typescript/ai-client/CHANGELOG.md | 32 ++++++++++++ packages/typescript/ai-client/package.json | 2 +- packages/typescript/ai-devtools/CHANGELOG.md | 7 +++ packages/typescript/ai-devtools/package.json | 2 +- packages/typescript/ai-gemini/CHANGELOG.md | 51 +++++++++++++++++++ packages/typescript/ai-gemini/package.json | 2 +- packages/typescript/ai-grok/CHANGELOG.md | 7 +++ packages/typescript/ai-grok/package.json | 2 +- packages/typescript/ai-ollama/CHANGELOG.md | 7 +++ packages/typescript/ai-ollama/package.json | 2 +- packages/typescript/ai-openai/CHANGELOG.md | 7 +++ packages/typescript/ai-openai/package.json | 2 +- .../typescript/ai-openrouter/CHANGELOG.md | 7 +++ .../typescript/ai-openrouter/package.json | 2 +- packages/typescript/ai-preact/CHANGELOG.md | 8 +++ packages/typescript/ai-preact/package.json | 2 +- packages/typescript/ai-react-ui/CHANGELOG.md | 8 +++ packages/typescript/ai-react-ui/package.json | 2 +- packages/typescript/ai-react/CHANGELOG.md | 8 +++ packages/typescript/ai-react/package.json | 2 +- packages/typescript/ai-solid-ui/CHANGELOG.md | 8 +++ packages/typescript/ai-solid-ui/package.json | 2 +- packages/typescript/ai-solid/CHANGELOG.md | 8 +++ packages/typescript/ai-solid/package.json | 2 +- packages/typescript/ai-svelte/CHANGELOG.md | 8 +++ packages/typescript/ai-svelte/package.json | 2 +- packages/typescript/ai-vue-ui/CHANGELOG.md | 7 +++ packages/typescript/ai-vue-ui/package.json | 2 +- packages/typescript/ai-vue/CHANGELOG.md | 8 +++ packages/typescript/ai-vue/package.json | 2 +- packages/typescript/ai/CHANGELOG.md | 48 +++++++++++++++++ packages/typescript/ai/package.json | 2 +- .../preact-ai-devtools/CHANGELOG.md | 7 +++ .../preact-ai-devtools/package.json | 2 +- .../typescript/react-ai-devtools/CHANGELOG.md | 7 +++ .../typescript/react-ai-devtools/package.json | 2 +- .../smoke-tests/adapters/CHANGELOG.md | 13 +++++ .../smoke-tests/adapters/package.json | 2 +- .../typescript/smoke-tests/e2e/CHANGELOG.md | 11 ++++ .../typescript/smoke-tests/e2e/package.json | 2 +- .../typescript/solid-ai-devtools/CHANGELOG.md | 7 +++ .../typescript/solid-ai-devtools/package.json | 2 +- 52 files changed, 384 insertions(+), 85 deletions(-) delete mode 100644 .changeset/fix-anthropic-multi-turn-tool-calls.md delete mode 100644 .changeset/tighten-adapter-contract.md diff --git a/.changeset/fix-anthropic-multi-turn-tool-calls.md b/.changeset/fix-anthropic-multi-turn-tool-calls.md deleted file mode 100644 index 34553ece..00000000 --- a/.changeset/fix-anthropic-multi-turn-tool-calls.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -'@tanstack/ai': patch -'@tanstack/ai-client': patch -'@tanstack/ai-anthropic': patch -'@tanstack/ai-gemini': patch ---- - -fix(ai, ai-client, ai-anthropic, ai-gemini): fix multi-turn conversations failing after tool calls - -**Core (@tanstack/ai):** - -- Lazy assistant message creation: `StreamProcessor` now defers creating the assistant message until the first content-bearing chunk arrives (text, tool call, thinking, or error), eliminating empty `parts: []` messages from appearing during auto-continuation when the model returns no content -- Add `prepareAssistantMessage()` (lazy) alongside deprecated `startAssistantMessage()` (eager, backwards-compatible) -- Add `getCurrentAssistantMessageId()` to check if a message was created -- **Rewrite `uiMessageToModelMessages()` to preserve part ordering**: the function now walks parts sequentially instead of separating by type, producing correctly interleaved assistant/tool messages (text1 + toolCall1 → toolResult1 → text2 + toolCall2 → toolResult2) instead of concatenating all text and batching all tool calls. This fixes multi-round tool flows where the model would see garbled conversation history and re-call tools unnecessarily. -- Deduplicate tool result messages: when a client tool has both a `tool-result` part and a `tool-call` part with `output`, only one `role: 'tool'` message is emitted per tool call ID - -**Client (@tanstack/ai-client):** - -- Update `ChatClient.processStream()` to use lazy assistant message creation, preventing UI flicker from empty messages being created then removed - -**Anthropic:** - -- Fix consecutive user-role messages violating Anthropic's alternating role requirement by merging them in `formatMessages` -- Deduplicate `tool_result` blocks with the same `tool_use_id` -- Filter out empty assistant messages from conversation history -- Suppress duplicate `RUN_FINISHED` event from `message_stop` when `message_delta` already emitted one -- Fix `TEXT_MESSAGE_END` incorrectly emitting for `tool_use` content blocks -- Add Claude Opus 4.6 model support with adaptive thinking and effort parameter - -**Gemini:** - -- Fix consecutive user-role messages violating Gemini's alternating role requirement by merging them in `formatMessages` -- Deduplicate `functionResponse` parts with the same name (tool call ID) -- Filter out empty model messages from conversation history diff --git a/.changeset/tighten-adapter-contract.md b/.changeset/tighten-adapter-contract.md deleted file mode 100644 index 78a7af3f..00000000 --- a/.changeset/tighten-adapter-contract.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -'@tanstack/ai': minor -'@tanstack/ai-anthropic': minor -'@tanstack/ai-gemini': minor ---- - -Tighten the AG-UI adapter contract and simplify the core stream processor. - -**Breaking type changes:** - -- `TextMessageContentEvent.delta` is now required (was optional) -- `StepFinishedEvent.delta` is now required (was optional) - -All first-party adapters already sent `delta` on every event, so this is a type-level enforcement of existing behavior. Community adapters that follow the reference implementations will not need code changes. - -**Core processor simplifications:** - -- `TEXT_MESSAGE_START` now resets text segment state, replacing heuristic overlap detection -- `TOOL_CALL_END` is now the authoritative signal for tool call input completion -- Removed delta/content fallback logic, whitespace-only message cleanup, and finish-reason conflict arbitration from the processor - -**Adapter fixes:** - -- Gemini: filter whitespace-only text parts, fix STEP_FINISHED content accumulation, emit fresh TEXT_MESSAGE_START after tool calls -- Anthropic: emit fresh TEXT_MESSAGE_START after tool_use blocks for proper text segmentation diff --git a/examples/ts-svelte-chat/CHANGELOG.md b/examples/ts-svelte-chat/CHANGELOG.md index 8a0ab92c..afce1b2c 100644 --- a/examples/ts-svelte-chat/CHANGELOG.md +++ b/examples/ts-svelte-chat/CHANGELOG.md @@ -1,5 +1,18 @@ # ts-svelte-chat +## 0.1.11 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + - @tanstack/ai-client@0.4.4 + - @tanstack/ai-anthropic@1.0.0 + - @tanstack/ai-gemini@1.0.0 + - @tanstack/ai-ollama@1.0.0 + - @tanstack/ai-openai@1.0.0 + - @tanstack/ai-svelte@1.0.0 + ## 0.1.10 ### Patch Changes diff --git a/examples/ts-svelte-chat/package.json b/examples/ts-svelte-chat/package.json index c98dcaa0..acab1ed5 100644 --- a/examples/ts-svelte-chat/package.json +++ b/examples/ts-svelte-chat/package.json @@ -1,7 +1,7 @@ { "name": "ts-svelte-chat", "private": true, - "version": "0.1.10", + "version": "0.1.11", "type": "module", "scripts": { "dev": "vite dev --port 3000", diff --git a/examples/ts-vue-chat/CHANGELOG.md b/examples/ts-vue-chat/CHANGELOG.md index 9d5142ad..7c23637c 100644 --- a/examples/ts-vue-chat/CHANGELOG.md +++ b/examples/ts-vue-chat/CHANGELOG.md @@ -1,5 +1,19 @@ # ts-vue-chat +## 0.1.11 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + - @tanstack/ai-client@0.4.4 + - @tanstack/ai-anthropic@1.0.0 + - @tanstack/ai-gemini@1.0.0 + - @tanstack/ai-ollama@1.0.0 + - @tanstack/ai-openai@1.0.0 + - @tanstack/ai-vue@1.0.0 + - @tanstack/ai-vue-ui@0.1.9 + ## 0.1.10 ### Patch Changes diff --git a/examples/ts-vue-chat/package.json b/examples/ts-vue-chat/package.json index 39710b4d..e94fe96e 100644 --- a/examples/ts-vue-chat/package.json +++ b/examples/ts-vue-chat/package.json @@ -1,6 +1,6 @@ { "name": "ts-vue-chat", - "version": "0.1.10", + "version": "0.1.11", "private": true, "type": "module", "scripts": { diff --git a/examples/vanilla-chat/CHANGELOG.md b/examples/vanilla-chat/CHANGELOG.md index 999f574e..17433a34 100644 --- a/examples/vanilla-chat/CHANGELOG.md +++ b/examples/vanilla-chat/CHANGELOG.md @@ -1,5 +1,12 @@ # vanilla-chat +## 0.0.13 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai-client@0.4.4 + ## 0.0.12 ### Patch Changes diff --git a/examples/vanilla-chat/package.json b/examples/vanilla-chat/package.json index 32151544..d4ba014f 100644 --- a/examples/vanilla-chat/package.json +++ b/examples/vanilla-chat/package.json @@ -2,7 +2,7 @@ "name": "vanilla-chat", "private": true, "type": "module", - "version": "0.0.12", + "version": "0.0.13", "scripts": { "start": "vite --port 3001", "dev": "vite --port 3001", diff --git a/packages/typescript/ai-anthropic/CHANGELOG.md b/packages/typescript/ai-anthropic/CHANGELOG.md index fc6093a8..612fedb1 100644 --- a/packages/typescript/ai-anthropic/CHANGELOG.md +++ b/packages/typescript/ai-anthropic/CHANGELOG.md @@ -1,5 +1,56 @@ # @tanstack/ai-anthropic +## 1.0.0 + +### Minor Changes + +- Tighten the AG-UI adapter contract and simplify the core stream processor. ([#275](https://github.com/TanStack/ai/pull/275)) + + **Breaking type changes:** + - `TextMessageContentEvent.delta` is now required (was optional) + - `StepFinishedEvent.delta` is now required (was optional) + + All first-party adapters already sent `delta` on every event, so this is a type-level enforcement of existing behavior. Community adapters that follow the reference implementations will not need code changes. + + **Core processor simplifications:** + - `TEXT_MESSAGE_START` now resets text segment state, replacing heuristic overlap detection + - `TOOL_CALL_END` is now the authoritative signal for tool call input completion + - Removed delta/content fallback logic, whitespace-only message cleanup, and finish-reason conflict arbitration from the processor + + **Adapter fixes:** + - Gemini: filter whitespace-only text parts, fix STEP_FINISHED content accumulation, emit fresh TEXT_MESSAGE_START after tool calls + - Anthropic: emit fresh TEXT_MESSAGE_START after tool_use blocks for proper text segmentation + +### Patch Changes + +- fix(ai, ai-client, ai-anthropic, ai-gemini): fix multi-turn conversations failing after tool calls ([#275](https://github.com/TanStack/ai/pull/275)) + + **Core (@tanstack/ai):** + - Lazy assistant message creation: `StreamProcessor` now defers creating the assistant message until the first content-bearing chunk arrives (text, tool call, thinking, or error), eliminating empty `parts: []` messages from appearing during auto-continuation when the model returns no content + - Add `prepareAssistantMessage()` (lazy) alongside deprecated `startAssistantMessage()` (eager, backwards-compatible) + - Add `getCurrentAssistantMessageId()` to check if a message was created + - **Rewrite `uiMessageToModelMessages()` to preserve part ordering**: the function now walks parts sequentially instead of separating by type, producing correctly interleaved assistant/tool messages (text1 + toolCall1 → toolResult1 → text2 + toolCall2 → toolResult2) instead of concatenating all text and batching all tool calls. This fixes multi-round tool flows where the model would see garbled conversation history and re-call tools unnecessarily. + - Deduplicate tool result messages: when a client tool has both a `tool-result` part and a `tool-call` part with `output`, only one `role: 'tool'` message is emitted per tool call ID + + **Client (@tanstack/ai-client):** + - Update `ChatClient.processStream()` to use lazy assistant message creation, preventing UI flicker from empty messages being created then removed + + **Anthropic:** + - Fix consecutive user-role messages violating Anthropic's alternating role requirement by merging them in `formatMessages` + - Deduplicate `tool_result` blocks with the same `tool_use_id` + - Filter out empty assistant messages from conversation history + - Suppress duplicate `RUN_FINISHED` event from `message_stop` when `message_delta` already emitted one + - Fix `TEXT_MESSAGE_END` incorrectly emitting for `tool_use` content blocks + - Add Claude Opus 4.6 model support with adaptive thinking and effort parameter + + **Gemini:** + - Fix consecutive user-role messages violating Gemini's alternating role requirement by merging them in `formatMessages` + - Deduplicate `functionResponse` parts with the same name (tool call ID) + - Filter out empty model messages from conversation history + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + ## 0.4.2 ### Patch Changes diff --git a/packages/typescript/ai-anthropic/package.json b/packages/typescript/ai-anthropic/package.json index eecbe2a6..017dfd69 100644 --- a/packages/typescript/ai-anthropic/package.json +++ b/packages/typescript/ai-anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-anthropic", - "version": "0.4.2", + "version": "1.0.0", "description": "Anthropic Claude adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-client/CHANGELOG.md b/packages/typescript/ai-client/CHANGELOG.md index 9f384597..3f5a9ad9 100644 --- a/packages/typescript/ai-client/CHANGELOG.md +++ b/packages/typescript/ai-client/CHANGELOG.md @@ -1,5 +1,37 @@ # @tanstack/ai-client +## 0.4.4 + +### Patch Changes + +- fix(ai, ai-client, ai-anthropic, ai-gemini): fix multi-turn conversations failing after tool calls ([#275](https://github.com/TanStack/ai/pull/275)) + + **Core (@tanstack/ai):** + - Lazy assistant message creation: `StreamProcessor` now defers creating the assistant message until the first content-bearing chunk arrives (text, tool call, thinking, or error), eliminating empty `parts: []` messages from appearing during auto-continuation when the model returns no content + - Add `prepareAssistantMessage()` (lazy) alongside deprecated `startAssistantMessage()` (eager, backwards-compatible) + - Add `getCurrentAssistantMessageId()` to check if a message was created + - **Rewrite `uiMessageToModelMessages()` to preserve part ordering**: the function now walks parts sequentially instead of separating by type, producing correctly interleaved assistant/tool messages (text1 + toolCall1 → toolResult1 → text2 + toolCall2 → toolResult2) instead of concatenating all text and batching all tool calls. This fixes multi-round tool flows where the model would see garbled conversation history and re-call tools unnecessarily. + - Deduplicate tool result messages: when a client tool has both a `tool-result` part and a `tool-call` part with `output`, only one `role: 'tool'` message is emitted per tool call ID + + **Client (@tanstack/ai-client):** + - Update `ChatClient.processStream()` to use lazy assistant message creation, preventing UI flicker from empty messages being created then removed + + **Anthropic:** + - Fix consecutive user-role messages violating Anthropic's alternating role requirement by merging them in `formatMessages` + - Deduplicate `tool_result` blocks with the same `tool_use_id` + - Filter out empty assistant messages from conversation history + - Suppress duplicate `RUN_FINISHED` event from `message_stop` when `message_delta` already emitted one + - Fix `TEXT_MESSAGE_END` incorrectly emitting for `tool_use` content blocks + - Add Claude Opus 4.6 model support with adaptive thinking and effort parameter + + **Gemini:** + - Fix consecutive user-role messages violating Gemini's alternating role requirement by merging them in `formatMessages` + - Deduplicate `functionResponse` parts with the same name (tool call ID) + - Filter out empty model messages from conversation history + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + ## 0.4.3 ### Patch Changes diff --git a/packages/typescript/ai-client/package.json b/packages/typescript/ai-client/package.json index 680e37f5..214facff 100644 --- a/packages/typescript/ai-client/package.json +++ b/packages/typescript/ai-client/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-client", - "version": "0.4.3", + "version": "0.4.4", "description": "Framework-agnostic headless client for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-devtools/CHANGELOG.md b/packages/typescript/ai-devtools/CHANGELOG.md index e6378e35..7ed1fef3 100644 --- a/packages/typescript/ai-devtools/CHANGELOG.md +++ b/packages/typescript/ai-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/ai-devtools-core +## 0.3.3 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + ## 0.3.2 ### Patch Changes diff --git a/packages/typescript/ai-devtools/package.json b/packages/typescript/ai-devtools/package.json index dc38c3c3..04e8ff08 100644 --- a/packages/typescript/ai-devtools/package.json +++ b/packages/typescript/ai-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-devtools-core", - "version": "0.3.2", + "version": "0.3.3", "description": "Core TanStack AI Devtools", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-gemini/CHANGELOG.md b/packages/typescript/ai-gemini/CHANGELOG.md index 69f753a6..02c035f7 100644 --- a/packages/typescript/ai-gemini/CHANGELOG.md +++ b/packages/typescript/ai-gemini/CHANGELOG.md @@ -1,5 +1,56 @@ # @tanstack/ai-gemini +## 1.0.0 + +### Minor Changes + +- Tighten the AG-UI adapter contract and simplify the core stream processor. ([#275](https://github.com/TanStack/ai/pull/275)) + + **Breaking type changes:** + - `TextMessageContentEvent.delta` is now required (was optional) + - `StepFinishedEvent.delta` is now required (was optional) + + All first-party adapters already sent `delta` on every event, so this is a type-level enforcement of existing behavior. Community adapters that follow the reference implementations will not need code changes. + + **Core processor simplifications:** + - `TEXT_MESSAGE_START` now resets text segment state, replacing heuristic overlap detection + - `TOOL_CALL_END` is now the authoritative signal for tool call input completion + - Removed delta/content fallback logic, whitespace-only message cleanup, and finish-reason conflict arbitration from the processor + + **Adapter fixes:** + - Gemini: filter whitespace-only text parts, fix STEP_FINISHED content accumulation, emit fresh TEXT_MESSAGE_START after tool calls + - Anthropic: emit fresh TEXT_MESSAGE_START after tool_use blocks for proper text segmentation + +### Patch Changes + +- fix(ai, ai-client, ai-anthropic, ai-gemini): fix multi-turn conversations failing after tool calls ([#275](https://github.com/TanStack/ai/pull/275)) + + **Core (@tanstack/ai):** + - Lazy assistant message creation: `StreamProcessor` now defers creating the assistant message until the first content-bearing chunk arrives (text, tool call, thinking, or error), eliminating empty `parts: []` messages from appearing during auto-continuation when the model returns no content + - Add `prepareAssistantMessage()` (lazy) alongside deprecated `startAssistantMessage()` (eager, backwards-compatible) + - Add `getCurrentAssistantMessageId()` to check if a message was created + - **Rewrite `uiMessageToModelMessages()` to preserve part ordering**: the function now walks parts sequentially instead of separating by type, producing correctly interleaved assistant/tool messages (text1 + toolCall1 → toolResult1 → text2 + toolCall2 → toolResult2) instead of concatenating all text and batching all tool calls. This fixes multi-round tool flows where the model would see garbled conversation history and re-call tools unnecessarily. + - Deduplicate tool result messages: when a client tool has both a `tool-result` part and a `tool-call` part with `output`, only one `role: 'tool'` message is emitted per tool call ID + + **Client (@tanstack/ai-client):** + - Update `ChatClient.processStream()` to use lazy assistant message creation, preventing UI flicker from empty messages being created then removed + + **Anthropic:** + - Fix consecutive user-role messages violating Anthropic's alternating role requirement by merging them in `formatMessages` + - Deduplicate `tool_result` blocks with the same `tool_use_id` + - Filter out empty assistant messages from conversation history + - Suppress duplicate `RUN_FINISHED` event from `message_stop` when `message_delta` already emitted one + - Fix `TEXT_MESSAGE_END` incorrectly emitting for `tool_use` content blocks + - Add Claude Opus 4.6 model support with adaptive thinking and effort parameter + + **Gemini:** + - Fix consecutive user-role messages violating Gemini's alternating role requirement by merging them in `formatMessages` + - Deduplicate `functionResponse` parts with the same name (tool call ID) + - Filter out empty model messages from conversation history + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + ## 0.4.1 ### Patch Changes diff --git a/packages/typescript/ai-gemini/package.json b/packages/typescript/ai-gemini/package.json index 6d5fb2aa..d3f5fde3 100644 --- a/packages/typescript/ai-gemini/package.json +++ b/packages/typescript/ai-gemini/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-gemini", - "version": "0.4.1", + "version": "1.0.0", "description": "Google Gemini adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-grok/CHANGELOG.md b/packages/typescript/ai-grok/CHANGELOG.md index 9c4dd05d..5305027e 100644 --- a/packages/typescript/ai-grok/CHANGELOG.md +++ b/packages/typescript/ai-grok/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/ai-grok +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + ## 0.4.1 ### Patch Changes diff --git a/packages/typescript/ai-grok/package.json b/packages/typescript/ai-grok/package.json index 2dfc1270..18fe5f4b 100644 --- a/packages/typescript/ai-grok/package.json +++ b/packages/typescript/ai-grok/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-grok", - "version": "0.4.1", + "version": "1.0.0", "description": "Grok (xAI) adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-ollama/CHANGELOG.md b/packages/typescript/ai-ollama/CHANGELOG.md index 0baf65de..288edd4a 100644 --- a/packages/typescript/ai-ollama/CHANGELOG.md +++ b/packages/typescript/ai-ollama/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/ai-ollama +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + ## 0.4.0 ### Patch Changes diff --git a/packages/typescript/ai-ollama/package.json b/packages/typescript/ai-ollama/package.json index 66a89e97..d1296cea 100644 --- a/packages/typescript/ai-ollama/package.json +++ b/packages/typescript/ai-ollama/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-ollama", - "version": "0.4.0", + "version": "1.0.0", "description": "Ollama adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-openai/CHANGELOG.md b/packages/typescript/ai-openai/CHANGELOG.md index 58bb832d..f63b8acf 100644 --- a/packages/typescript/ai-openai/CHANGELOG.md +++ b/packages/typescript/ai-openai/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/ai-openai +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + ## 0.4.0 ### Patch Changes diff --git a/packages/typescript/ai-openai/package.json b/packages/typescript/ai-openai/package.json index f6c6d374..dfcba0b1 100644 --- a/packages/typescript/ai-openai/package.json +++ b/packages/typescript/ai-openai/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-openai", - "version": "0.4.0", + "version": "1.0.0", "description": "OpenAI adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-openrouter/CHANGELOG.md b/packages/typescript/ai-openrouter/CHANGELOG.md index acc6a33f..fa75bb0b 100644 --- a/packages/typescript/ai-openrouter/CHANGELOG.md +++ b/packages/typescript/ai-openrouter/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/ai-openrouter +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + ## 0.4.2 ### Patch Changes diff --git a/packages/typescript/ai-openrouter/package.json b/packages/typescript/ai-openrouter/package.json index 7147daf2..8d93bd50 100644 --- a/packages/typescript/ai-openrouter/package.json +++ b/packages/typescript/ai-openrouter/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-openrouter", - "version": "0.4.2", + "version": "1.0.0", "description": "OpenRouter adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-preact/CHANGELOG.md b/packages/typescript/ai-preact/CHANGELOG.md index 53e0b91f..50e0bf8f 100644 --- a/packages/typescript/ai-preact/CHANGELOG.md +++ b/packages/typescript/ai-preact/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/ai-preact +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + - @tanstack/ai-client@0.4.4 + ## 0.5.2 ### Patch Changes diff --git a/packages/typescript/ai-preact/package.json b/packages/typescript/ai-preact/package.json index 62c8330f..9c0496f4 100644 --- a/packages/typescript/ai-preact/package.json +++ b/packages/typescript/ai-preact/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-preact", - "version": "0.5.2", + "version": "1.0.0", "description": "Preact hooks for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-react-ui/CHANGELOG.md b/packages/typescript/ai-react-ui/CHANGELOG.md index 3b214471..8b16ae2f 100644 --- a/packages/typescript/ai-react-ui/CHANGELOG.md +++ b/packages/typescript/ai-react-ui/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/ai-react-ui +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai-client@0.4.4 + - @tanstack/ai-react@1.0.0 + ## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-react-ui/package.json b/packages/typescript/ai-react-ui/package.json index 26b6c5ea..905e60b4 100644 --- a/packages/typescript/ai-react-ui/package.json +++ b/packages/typescript/ai-react-ui/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-react-ui", - "version": "0.5.0", + "version": "1.0.0", "description": "Headless React components for building AI chat interfaces", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", diff --git a/packages/typescript/ai-react/CHANGELOG.md b/packages/typescript/ai-react/CHANGELOG.md index f1a56024..90cc5887 100644 --- a/packages/typescript/ai-react/CHANGELOG.md +++ b/packages/typescript/ai-react/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/ai-react +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + - @tanstack/ai-client@0.4.4 + ## 0.5.2 ### Patch Changes diff --git a/packages/typescript/ai-react/package.json b/packages/typescript/ai-react/package.json index a9036014..136bf9b9 100644 --- a/packages/typescript/ai-react/package.json +++ b/packages/typescript/ai-react/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-react", - "version": "0.5.2", + "version": "1.0.0", "description": "React hooks for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-solid-ui/CHANGELOG.md b/packages/typescript/ai-solid-ui/CHANGELOG.md index 7bbbd8ff..0c0f4aa8 100644 --- a/packages/typescript/ai-solid-ui/CHANGELOG.md +++ b/packages/typescript/ai-solid-ui/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/ai-solid-ui +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai-client@0.4.4 + - @tanstack/ai-solid@1.0.0 + ## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-solid-ui/package.json b/packages/typescript/ai-solid-ui/package.json index c815b937..2c5c0606 100644 --- a/packages/typescript/ai-solid-ui/package.json +++ b/packages/typescript/ai-solid-ui/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-solid-ui", - "version": "0.5.0", + "version": "1.0.0", "description": "Headless Solid components for building AI chat interfaces", "module": "./src/index.ts", "types": "./src/index.ts", diff --git a/packages/typescript/ai-solid/CHANGELOG.md b/packages/typescript/ai-solid/CHANGELOG.md index 92956adb..e1d617b3 100644 --- a/packages/typescript/ai-solid/CHANGELOG.md +++ b/packages/typescript/ai-solid/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/ai-solid +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + - @tanstack/ai-client@0.4.4 + ## 0.5.2 ### Patch Changes diff --git a/packages/typescript/ai-solid/package.json b/packages/typescript/ai-solid/package.json index 8d84f46d..bc3f10ce 100644 --- a/packages/typescript/ai-solid/package.json +++ b/packages/typescript/ai-solid/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-solid", - "version": "0.5.2", + "version": "1.0.0", "description": "Solid hooks for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-svelte/CHANGELOG.md b/packages/typescript/ai-svelte/CHANGELOG.md index 47e82746..e33a6dac 100644 --- a/packages/typescript/ai-svelte/CHANGELOG.md +++ b/packages/typescript/ai-svelte/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/ai-svelte +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + - @tanstack/ai-client@0.4.4 + ## 0.5.2 ### Patch Changes diff --git a/packages/typescript/ai-svelte/package.json b/packages/typescript/ai-svelte/package.json index 7f376169..b95288fc 100644 --- a/packages/typescript/ai-svelte/package.json +++ b/packages/typescript/ai-svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-svelte", - "version": "0.5.2", + "version": "1.0.0", "description": "Svelte bindings for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-vue-ui/CHANGELOG.md b/packages/typescript/ai-vue-ui/CHANGELOG.md index 58a28334..21f0842f 100644 --- a/packages/typescript/ai-vue-ui/CHANGELOG.md +++ b/packages/typescript/ai-vue-ui/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/ai-vue-ui +## 0.1.9 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/ai-vue@1.0.0 + ## 0.1.8 ### Patch Changes diff --git a/packages/typescript/ai-vue-ui/package.json b/packages/typescript/ai-vue-ui/package.json index 57902f37..90dd2582 100644 --- a/packages/typescript/ai-vue-ui/package.json +++ b/packages/typescript/ai-vue-ui/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-vue-ui", - "version": "0.1.8", + "version": "0.1.9", "description": "Headless Vue components for building AI chat interfaces", "module": "./src/index.ts", "types": "./src/index.ts", diff --git a/packages/typescript/ai-vue/CHANGELOG.md b/packages/typescript/ai-vue/CHANGELOG.md index 5bdddd1a..a48408ab 100644 --- a/packages/typescript/ai-vue/CHANGELOG.md +++ b/packages/typescript/ai-vue/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/ai-vue +## 1.0.0 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + - @tanstack/ai-client@0.4.4 + ## 0.5.2 ### Patch Changes diff --git a/packages/typescript/ai-vue/package.json b/packages/typescript/ai-vue/package.json index 4f4615f8..58741a6b 100644 --- a/packages/typescript/ai-vue/package.json +++ b/packages/typescript/ai-vue/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-vue", - "version": "0.5.2", + "version": "1.0.0", "description": "Vue hooks for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai/CHANGELOG.md b/packages/typescript/ai/CHANGELOG.md index dfc5e613..4c15252c 100644 --- a/packages/typescript/ai/CHANGELOG.md +++ b/packages/typescript/ai/CHANGELOG.md @@ -1,5 +1,53 @@ # @tanstack/ai +## 0.5.0 + +### Minor Changes + +- Tighten the AG-UI adapter contract and simplify the core stream processor. ([#275](https://github.com/TanStack/ai/pull/275)) + + **Breaking type changes:** + - `TextMessageContentEvent.delta` is now required (was optional) + - `StepFinishedEvent.delta` is now required (was optional) + + All first-party adapters already sent `delta` on every event, so this is a type-level enforcement of existing behavior. Community adapters that follow the reference implementations will not need code changes. + + **Core processor simplifications:** + - `TEXT_MESSAGE_START` now resets text segment state, replacing heuristic overlap detection + - `TOOL_CALL_END` is now the authoritative signal for tool call input completion + - Removed delta/content fallback logic, whitespace-only message cleanup, and finish-reason conflict arbitration from the processor + + **Adapter fixes:** + - Gemini: filter whitespace-only text parts, fix STEP_FINISHED content accumulation, emit fresh TEXT_MESSAGE_START after tool calls + - Anthropic: emit fresh TEXT_MESSAGE_START after tool_use blocks for proper text segmentation + +### Patch Changes + +- fix(ai, ai-client, ai-anthropic, ai-gemini): fix multi-turn conversations failing after tool calls ([#275](https://github.com/TanStack/ai/pull/275)) + + **Core (@tanstack/ai):** + - Lazy assistant message creation: `StreamProcessor` now defers creating the assistant message until the first content-bearing chunk arrives (text, tool call, thinking, or error), eliminating empty `parts: []` messages from appearing during auto-continuation when the model returns no content + - Add `prepareAssistantMessage()` (lazy) alongside deprecated `startAssistantMessage()` (eager, backwards-compatible) + - Add `getCurrentAssistantMessageId()` to check if a message was created + - **Rewrite `uiMessageToModelMessages()` to preserve part ordering**: the function now walks parts sequentially instead of separating by type, producing correctly interleaved assistant/tool messages (text1 + toolCall1 → toolResult1 → text2 + toolCall2 → toolResult2) instead of concatenating all text and batching all tool calls. This fixes multi-round tool flows where the model would see garbled conversation history and re-call tools unnecessarily. + - Deduplicate tool result messages: when a client tool has both a `tool-result` part and a `tool-call` part with `output`, only one `role: 'tool'` message is emitted per tool call ID + + **Client (@tanstack/ai-client):** + - Update `ChatClient.processStream()` to use lazy assistant message creation, preventing UI flicker from empty messages being created then removed + + **Anthropic:** + - Fix consecutive user-role messages violating Anthropic's alternating role requirement by merging them in `formatMessages` + - Deduplicate `tool_result` blocks with the same `tool_use_id` + - Filter out empty assistant messages from conversation history + - Suppress duplicate `RUN_FINISHED` event from `message_stop` when `message_delta` already emitted one + - Fix `TEXT_MESSAGE_END` incorrectly emitting for `tool_use` content blocks + - Add Claude Opus 4.6 model support with adaptive thinking and effort parameter + + **Gemini:** + - Fix consecutive user-role messages violating Gemini's alternating role requirement by merging them in `formatMessages` + - Deduplicate `functionResponse` parts with the same name (tool call ID) + - Filter out empty model messages from conversation history + ## 0.4.2 ### Patch Changes diff --git a/packages/typescript/ai/package.json b/packages/typescript/ai/package.json index 4b76449d..3fe3ccb3 100644 --- a/packages/typescript/ai/package.json +++ b/packages/typescript/ai/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai", - "version": "0.4.2", + "version": "0.5.0", "description": "Core TanStack AI library - Open source AI SDK", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/typescript/preact-ai-devtools/CHANGELOG.md b/packages/typescript/preact-ai-devtools/CHANGELOG.md index 14f38624..43785a94 100644 --- a/packages/typescript/preact-ai-devtools/CHANGELOG.md +++ b/packages/typescript/preact-ai-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/preact-ai-devtools +## 0.1.7 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/ai-devtools-core@0.3.3 + ## 0.1.6 ### Patch Changes diff --git a/packages/typescript/preact-ai-devtools/package.json b/packages/typescript/preact-ai-devtools/package.json index e98092eb..024a00ff 100644 --- a/packages/typescript/preact-ai-devtools/package.json +++ b/packages/typescript/preact-ai-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/preact-ai-devtools", - "version": "0.1.6", + "version": "0.1.7", "description": "Preact Devtools for TanStack AI.", "author": "tannerlinsley", "license": "MIT", diff --git a/packages/typescript/react-ai-devtools/CHANGELOG.md b/packages/typescript/react-ai-devtools/CHANGELOG.md index eb3ed942..92f8c940 100644 --- a/packages/typescript/react-ai-devtools/CHANGELOG.md +++ b/packages/typescript/react-ai-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/react-ai-devtools +## 0.2.7 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/ai-devtools-core@0.3.3 + ## 0.2.6 ### Patch Changes diff --git a/packages/typescript/react-ai-devtools/package.json b/packages/typescript/react-ai-devtools/package.json index 1e53098c..87a731c4 100644 --- a/packages/typescript/react-ai-devtools/package.json +++ b/packages/typescript/react-ai-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-ai-devtools", - "version": "0.2.6", + "version": "0.2.7", "description": "React Devtools for TanStack AI.", "author": "tannerlinsley", "license": "MIT", diff --git a/packages/typescript/smoke-tests/adapters/CHANGELOG.md b/packages/typescript/smoke-tests/adapters/CHANGELOG.md index 8b696792..690aa515 100644 --- a/packages/typescript/smoke-tests/adapters/CHANGELOG.md +++ b/packages/typescript/smoke-tests/adapters/CHANGELOG.md @@ -1,5 +1,18 @@ # @tanstack/tests-adapters +## 0.1.12 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + - @tanstack/ai-anthropic@1.0.0 + - @tanstack/ai-gemini@1.0.0 + - @tanstack/ai-grok@1.0.0 + - @tanstack/ai-ollama@1.0.0 + - @tanstack/ai-openai@1.0.0 + - @tanstack/ai-openrouter@1.0.0 + ## 0.1.11 ### Patch Changes diff --git a/packages/typescript/smoke-tests/adapters/package.json b/packages/typescript/smoke-tests/adapters/package.json index 6db3c656..f51bd9d5 100644 --- a/packages/typescript/smoke-tests/adapters/package.json +++ b/packages/typescript/smoke-tests/adapters/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/tests-adapters", - "version": "0.1.11", + "version": "0.1.12", "private": true, "description": "Tests for TanStack AI adapters", "author": "", diff --git a/packages/typescript/smoke-tests/e2e/CHANGELOG.md b/packages/typescript/smoke-tests/e2e/CHANGELOG.md index 839861b9..7d9e85aa 100644 --- a/packages/typescript/smoke-tests/e2e/CHANGELOG.md +++ b/packages/typescript/smoke-tests/e2e/CHANGELOG.md @@ -1,5 +1,16 @@ # @tanstack/smoke-tests-e2e +## 0.0.16 + +### Patch Changes + +- Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: + - @tanstack/ai@0.5.0 + - @tanstack/ai-client@0.4.4 + - @tanstack/ai-openai@1.0.0 + - @tanstack/ai-react@1.0.0 + - @tanstack/tests-adapters@0.1.12 + ## 0.0.15 ### Patch Changes diff --git a/packages/typescript/smoke-tests/e2e/package.json b/packages/typescript/smoke-tests/e2e/package.json index d39e4974..ef2602a3 100644 --- a/packages/typescript/smoke-tests/e2e/package.json +++ b/packages/typescript/smoke-tests/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/smoke-tests-e2e", - "version": "0.0.15", + "version": "0.0.16", "description": "E2E tests for TanStack AI chat", "private": true, "type": "module", diff --git a/packages/typescript/solid-ai-devtools/CHANGELOG.md b/packages/typescript/solid-ai-devtools/CHANGELOG.md index fe7ec5e3..6b08906a 100644 --- a/packages/typescript/solid-ai-devtools/CHANGELOG.md +++ b/packages/typescript/solid-ai-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/solid-ai-devtools +## 0.2.7 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/ai-devtools-core@0.3.3 + ## 0.2.6 ### Patch Changes diff --git a/packages/typescript/solid-ai-devtools/package.json b/packages/typescript/solid-ai-devtools/package.json index 25bdb41a..3c1630d2 100644 --- a/packages/typescript/solid-ai-devtools/package.json +++ b/packages/typescript/solid-ai-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-ai-devtools", - "version": "0.2.6", + "version": "0.2.7", "description": "Solid TanStack AI Devtools", "author": "", "license": "MIT", From 5e12300b30bafe7eec9b931ff7dcee5c3379a62c Mon Sep 17 00:00:00 2001 From: Jack Herrington Date: Tue, 10 Feb 2026 08:09:03 -0800 Subject: [PATCH 2/4] fix version numbers --- packages/typescript/ai-anthropic/CHANGELOG.md | 2 +- packages/typescript/ai-anthropic/package.json | 2 +- packages/typescript/ai-gemini/CHANGELOG.md | 2 +- packages/typescript/ai-gemini/package.json | 2 +- packages/typescript/ai-grok/CHANGELOG.md | 2 +- packages/typescript/ai-grok/package.json | 2 +- packages/typescript/ai-ollama/CHANGELOG.md | 2 +- packages/typescript/ai-ollama/package.json | 2 +- packages/typescript/ai-openai/CHANGELOG.md | 2 +- packages/typescript/ai-openai/package.json | 2 +- packages/typescript/ai-openrouter/CHANGELOG.md | 2 +- packages/typescript/ai-openrouter/package.json | 2 +- packages/typescript/ai-preact/CHANGELOG.md | 2 +- packages/typescript/ai-preact/package.json | 2 +- packages/typescript/ai-react-ui/CHANGELOG.md | 2 +- packages/typescript/ai-react-ui/package.json | 2 +- packages/typescript/ai-react/CHANGELOG.md | 2 +- packages/typescript/ai-react/package.json | 2 +- packages/typescript/ai-solid-ui/CHANGELOG.md | 2 +- packages/typescript/ai-solid-ui/package.json | 2 +- packages/typescript/ai-solid/CHANGELOG.md | 2 +- packages/typescript/ai-solid/package.json | 2 +- packages/typescript/ai-svelte/CHANGELOG.md | 2 +- packages/typescript/ai-svelte/package.json | 2 +- packages/typescript/ai-vue/CHANGELOG.md | 2 +- packages/typescript/ai-vue/package.json | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/packages/typescript/ai-anthropic/CHANGELOG.md b/packages/typescript/ai-anthropic/CHANGELOG.md index 612fedb1..245ab88c 100644 --- a/packages/typescript/ai-anthropic/CHANGELOG.md +++ b/packages/typescript/ai-anthropic/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-anthropic -## 1.0.0 +## 0.5.0 ### Minor Changes diff --git a/packages/typescript/ai-anthropic/package.json b/packages/typescript/ai-anthropic/package.json index 017dfd69..84b31808 100644 --- a/packages/typescript/ai-anthropic/package.json +++ b/packages/typescript/ai-anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-anthropic", - "version": "1.0.0", + "version": "0.5.0", "description": "Anthropic Claude adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-gemini/CHANGELOG.md b/packages/typescript/ai-gemini/CHANGELOG.md index 02c035f7..88f0a300 100644 --- a/packages/typescript/ai-gemini/CHANGELOG.md +++ b/packages/typescript/ai-gemini/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-gemini -## 1.0.0 +## 0.5.0 ### Minor Changes diff --git a/packages/typescript/ai-gemini/package.json b/packages/typescript/ai-gemini/package.json index d3f5fde3..adc20440 100644 --- a/packages/typescript/ai-gemini/package.json +++ b/packages/typescript/ai-gemini/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-gemini", - "version": "1.0.0", + "version": "0.5.0", "description": "Google Gemini adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-grok/CHANGELOG.md b/packages/typescript/ai-grok/CHANGELOG.md index 5305027e..fdc55668 100644 --- a/packages/typescript/ai-grok/CHANGELOG.md +++ b/packages/typescript/ai-grok/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-grok -## 1.0.0 +## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-grok/package.json b/packages/typescript/ai-grok/package.json index 18fe5f4b..06960f25 100644 --- a/packages/typescript/ai-grok/package.json +++ b/packages/typescript/ai-grok/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-grok", - "version": "1.0.0", + "version": "0.5.0", "description": "Grok (xAI) adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-ollama/CHANGELOG.md b/packages/typescript/ai-ollama/CHANGELOG.md index 288edd4a..516b50f3 100644 --- a/packages/typescript/ai-ollama/CHANGELOG.md +++ b/packages/typescript/ai-ollama/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-ollama -## 1.0.0 +## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-ollama/package.json b/packages/typescript/ai-ollama/package.json index d1296cea..e1d96052 100644 --- a/packages/typescript/ai-ollama/package.json +++ b/packages/typescript/ai-ollama/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-ollama", - "version": "1.0.0", + "version": "0.5.0", "description": "Ollama adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-openai/CHANGELOG.md b/packages/typescript/ai-openai/CHANGELOG.md index f63b8acf..9fa7490e 100644 --- a/packages/typescript/ai-openai/CHANGELOG.md +++ b/packages/typescript/ai-openai/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-openai -## 1.0.0 +## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-openai/package.json b/packages/typescript/ai-openai/package.json index dfcba0b1..ba40cee7 100644 --- a/packages/typescript/ai-openai/package.json +++ b/packages/typescript/ai-openai/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-openai", - "version": "1.0.0", + "version": "0.5.0", "description": "OpenAI adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-openrouter/CHANGELOG.md b/packages/typescript/ai-openrouter/CHANGELOG.md index fa75bb0b..c7394155 100644 --- a/packages/typescript/ai-openrouter/CHANGELOG.md +++ b/packages/typescript/ai-openrouter/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-openrouter -## 1.0.0 +## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-openrouter/package.json b/packages/typescript/ai-openrouter/package.json index 8d93bd50..6db6744a 100644 --- a/packages/typescript/ai-openrouter/package.json +++ b/packages/typescript/ai-openrouter/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-openrouter", - "version": "1.0.0", + "version": "0.5.0", "description": "OpenRouter adapter for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-preact/CHANGELOG.md b/packages/typescript/ai-preact/CHANGELOG.md index 50e0bf8f..e9c639dd 100644 --- a/packages/typescript/ai-preact/CHANGELOG.md +++ b/packages/typescript/ai-preact/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-preact -## 1.0.0 +## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-preact/package.json b/packages/typescript/ai-preact/package.json index 9c0496f4..68cb3bf1 100644 --- a/packages/typescript/ai-preact/package.json +++ b/packages/typescript/ai-preact/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-preact", - "version": "1.0.0", + "version": "0.5.0", "description": "Preact hooks for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-react-ui/CHANGELOG.md b/packages/typescript/ai-react-ui/CHANGELOG.md index 8b16ae2f..ef9f3a0b 100644 --- a/packages/typescript/ai-react-ui/CHANGELOG.md +++ b/packages/typescript/ai-react-ui/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-react-ui -## 1.0.0 +## 0.4.4 ### Patch Changes diff --git a/packages/typescript/ai-react-ui/package.json b/packages/typescript/ai-react-ui/package.json index 905e60b4..99c27729 100644 --- a/packages/typescript/ai-react-ui/package.json +++ b/packages/typescript/ai-react-ui/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-react-ui", - "version": "1.0.0", + "version": "0.4.4", "description": "Headless React components for building AI chat interfaces", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", diff --git a/packages/typescript/ai-react/CHANGELOG.md b/packages/typescript/ai-react/CHANGELOG.md index 90cc5887..8fdde298 100644 --- a/packages/typescript/ai-react/CHANGELOG.md +++ b/packages/typescript/ai-react/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-react -## 1.0.0 +## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-react/package.json b/packages/typescript/ai-react/package.json index 136bf9b9..7043b6eb 100644 --- a/packages/typescript/ai-react/package.json +++ b/packages/typescript/ai-react/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-react", - "version": "1.0.0", + "version": "0.5.0", "description": "React hooks for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-solid-ui/CHANGELOG.md b/packages/typescript/ai-solid-ui/CHANGELOG.md index 0c0f4aa8..168e7ac9 100644 --- a/packages/typescript/ai-solid-ui/CHANGELOG.md +++ b/packages/typescript/ai-solid-ui/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-solid-ui -## 1.0.0 +## 0.4.4 ### Patch Changes diff --git a/packages/typescript/ai-solid-ui/package.json b/packages/typescript/ai-solid-ui/package.json index 2c5c0606..9136abcb 100644 --- a/packages/typescript/ai-solid-ui/package.json +++ b/packages/typescript/ai-solid-ui/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-solid-ui", - "version": "1.0.0", + "version": "0.4.4", "description": "Headless Solid components for building AI chat interfaces", "module": "./src/index.ts", "types": "./src/index.ts", diff --git a/packages/typescript/ai-solid/CHANGELOG.md b/packages/typescript/ai-solid/CHANGELOG.md index e1d617b3..eeee93b7 100644 --- a/packages/typescript/ai-solid/CHANGELOG.md +++ b/packages/typescript/ai-solid/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-solid -## 1.0.0 +## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-solid/package.json b/packages/typescript/ai-solid/package.json index bc3f10ce..2ab0a25b 100644 --- a/packages/typescript/ai-solid/package.json +++ b/packages/typescript/ai-solid/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-solid", - "version": "1.0.0", + "version": "0.5.0", "description": "Solid hooks for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-svelte/CHANGELOG.md b/packages/typescript/ai-svelte/CHANGELOG.md index e33a6dac..8d44f76a 100644 --- a/packages/typescript/ai-svelte/CHANGELOG.md +++ b/packages/typescript/ai-svelte/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-svelte -## 1.0.0 +## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-svelte/package.json b/packages/typescript/ai-svelte/package.json index b95288fc..0fe9e6a6 100644 --- a/packages/typescript/ai-svelte/package.json +++ b/packages/typescript/ai-svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-svelte", - "version": "1.0.0", + "version": "0.5.0", "description": "Svelte bindings for TanStack AI", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-vue/CHANGELOG.md b/packages/typescript/ai-vue/CHANGELOG.md index a48408ab..fffd1933 100644 --- a/packages/typescript/ai-vue/CHANGELOG.md +++ b/packages/typescript/ai-vue/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-vue -## 1.0.0 +## 0.5.0 ### Patch Changes diff --git a/packages/typescript/ai-vue/package.json b/packages/typescript/ai-vue/package.json index 58741a6b..452c6669 100644 --- a/packages/typescript/ai-vue/package.json +++ b/packages/typescript/ai-vue/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-vue", - "version": "1.0.0", + "version": "0.5.0", "description": "Vue hooks for TanStack AI", "author": "", "license": "MIT", From 949928cecd356df27671973ab79bc8f03f6309b6 Mon Sep 17 00:00:00 2001 From: Alem Tuzlak Date: Thu, 12 Feb 2026 09:20:44 +0100 Subject: [PATCH 3/4] fix changelogs --- examples/ts-svelte-chat/CHANGELOG.md | 10 +++++----- examples/ts-vue-chat/CHANGELOG.md | 10 +++++----- packages/typescript/ai-preact/CHANGELOG.md | 2 +- packages/typescript/ai-preact/package.json | 4 ++-- packages/typescript/ai-react-ui/CHANGELOG.md | 4 ++-- packages/typescript/ai-react-ui/package.json | 4 ++-- packages/typescript/ai-react/CHANGELOG.md | 2 +- packages/typescript/ai-react/package.json | 4 ++-- packages/typescript/ai-solid-ui/CHANGELOG.md | 4 ++-- packages/typescript/ai-solid-ui/package.json | 4 ++-- packages/typescript/ai-solid/CHANGELOG.md | 2 +- packages/typescript/ai-solid/package.json | 4 ++-- packages/typescript/ai-svelte/CHANGELOG.md | 2 +- packages/typescript/ai-svelte/package.json | 4 ++-- packages/typescript/ai-vue-ui/CHANGELOG.md | 2 +- packages/typescript/ai-vue/CHANGELOG.md | 2 +- packages/typescript/ai-vue/package.json | 4 ++-- .../typescript/smoke-tests/adapters/CHANGELOG.md | 12 ++++++------ packages/typescript/smoke-tests/e2e/CHANGELOG.md | 4 ++-- 19 files changed, 42 insertions(+), 42 deletions(-) diff --git a/examples/ts-svelte-chat/CHANGELOG.md b/examples/ts-svelte-chat/CHANGELOG.md index afce1b2c..19dd8e31 100644 --- a/examples/ts-svelte-chat/CHANGELOG.md +++ b/examples/ts-svelte-chat/CHANGELOG.md @@ -7,11 +7,11 @@ - Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: - @tanstack/ai@0.5.0 - @tanstack/ai-client@0.4.4 - - @tanstack/ai-anthropic@1.0.0 - - @tanstack/ai-gemini@1.0.0 - - @tanstack/ai-ollama@1.0.0 - - @tanstack/ai-openai@1.0.0 - - @tanstack/ai-svelte@1.0.0 + - @tanstack/ai-anthropic@0.5.0 + - @tanstack/ai-gemini@0.5.0 + - @tanstack/ai-ollama@0.5.0 + - @tanstack/ai-openai@0.5.0 + - @tanstack/ai-svelte@0.5.0 ## 0.1.10 diff --git a/examples/ts-vue-chat/CHANGELOG.md b/examples/ts-vue-chat/CHANGELOG.md index 7c23637c..94a6bed4 100644 --- a/examples/ts-vue-chat/CHANGELOG.md +++ b/examples/ts-vue-chat/CHANGELOG.md @@ -7,11 +7,11 @@ - Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: - @tanstack/ai@0.5.0 - @tanstack/ai-client@0.4.4 - - @tanstack/ai-anthropic@1.0.0 - - @tanstack/ai-gemini@1.0.0 - - @tanstack/ai-ollama@1.0.0 - - @tanstack/ai-openai@1.0.0 - - @tanstack/ai-vue@1.0.0 + - @tanstack/ai-anthropic@0.5.0 + - @tanstack/ai-gemini@0.5.0 + - @tanstack/ai-ollama@0.5.0 + - @tanstack/ai-openai@0.5.0 + - @tanstack/ai-vue@0.5.0 - @tanstack/ai-vue-ui@0.1.9 ## 0.1.10 diff --git a/packages/typescript/ai-preact/CHANGELOG.md b/packages/typescript/ai-preact/CHANGELOG.md index e9c639dd..ff3b3316 100644 --- a/packages/typescript/ai-preact/CHANGELOG.md +++ b/packages/typescript/ai-preact/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-preact -## 0.5.0 +## 0.5.3 ### Patch Changes diff --git a/packages/typescript/ai-preact/package.json b/packages/typescript/ai-preact/package.json index 68cb3bf1..66608805 100644 --- a/packages/typescript/ai-preact/package.json +++ b/packages/typescript/ai-preact/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-preact", - "version": "0.5.0", + "version": "0.5.3", "description": "Preact hooks for TanStack AI", "author": "", "license": "MIT", @@ -54,4 +54,4 @@ "@tanstack/ai": "workspace:^", "preact": ">=10.11.0" } -} +} \ No newline at end of file diff --git a/packages/typescript/ai-react-ui/CHANGELOG.md b/packages/typescript/ai-react-ui/CHANGELOG.md index ef9f3a0b..a967661e 100644 --- a/packages/typescript/ai-react-ui/CHANGELOG.md +++ b/packages/typescript/ai-react-ui/CHANGELOG.md @@ -1,12 +1,12 @@ # @tanstack/ai-react-ui -## 0.4.4 +## 0.5.1 ### Patch Changes - Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: - @tanstack/ai-client@0.4.4 - - @tanstack/ai-react@1.0.0 + - @tanstack/ai-react@0.5.1 ## 0.5.0 diff --git a/packages/typescript/ai-react-ui/package.json b/packages/typescript/ai-react-ui/package.json index 99c27729..c4dccbe7 100644 --- a/packages/typescript/ai-react-ui/package.json +++ b/packages/typescript/ai-react-ui/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-react-ui", - "version": "0.4.4", + "version": "0.5.1", "description": "Headless React components for building AI chat interfaces", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", @@ -60,4 +60,4 @@ "react-dom": "^19.2.3", "vite": "^7.2.7" } -} +} \ No newline at end of file diff --git a/packages/typescript/ai-react/CHANGELOG.md b/packages/typescript/ai-react/CHANGELOG.md index 8fdde298..3e5aa7fa 100644 --- a/packages/typescript/ai-react/CHANGELOG.md +++ b/packages/typescript/ai-react/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-react -## 0.5.0 +## 0.5.3 ### Patch Changes diff --git a/packages/typescript/ai-react/package.json b/packages/typescript/ai-react/package.json index 7043b6eb..15cde8db 100644 --- a/packages/typescript/ai-react/package.json +++ b/packages/typescript/ai-react/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-react", - "version": "0.5.0", + "version": "0.5.3", "description": "React hooks for TanStack AI", "author": "", "license": "MIT", @@ -57,4 +57,4 @@ "react": "^19.2.3", "vite": "^7.2.7" } -} +} \ No newline at end of file diff --git a/packages/typescript/ai-solid-ui/CHANGELOG.md b/packages/typescript/ai-solid-ui/CHANGELOG.md index 168e7ac9..1432490e 100644 --- a/packages/typescript/ai-solid-ui/CHANGELOG.md +++ b/packages/typescript/ai-solid-ui/CHANGELOG.md @@ -1,12 +1,12 @@ # @tanstack/ai-solid-ui -## 0.4.4 +## 0.5.1 ### Patch Changes - Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: - @tanstack/ai-client@0.4.4 - - @tanstack/ai-solid@1.0.0 + - @tanstack/ai-solid@0.5.1 ## 0.5.0 diff --git a/packages/typescript/ai-solid-ui/package.json b/packages/typescript/ai-solid-ui/package.json index 9136abcb..6bf51833 100644 --- a/packages/typescript/ai-solid-ui/package.json +++ b/packages/typescript/ai-solid-ui/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-solid-ui", - "version": "0.4.4", + "version": "0.5.1", "description": "Headless Solid components for building AI chat interfaces", "module": "./src/index.ts", "types": "./src/index.ts", @@ -59,4 +59,4 @@ "solid-js": "^1.9.10", "vite": "^7.2.7" } -} +} \ No newline at end of file diff --git a/packages/typescript/ai-solid/CHANGELOG.md b/packages/typescript/ai-solid/CHANGELOG.md index eeee93b7..a9d57726 100644 --- a/packages/typescript/ai-solid/CHANGELOG.md +++ b/packages/typescript/ai-solid/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-solid -## 0.5.0 +## 0.5.3 ### Patch Changes diff --git a/packages/typescript/ai-solid/package.json b/packages/typescript/ai-solid/package.json index 2ab0a25b..424144f4 100644 --- a/packages/typescript/ai-solid/package.json +++ b/packages/typescript/ai-solid/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-solid", - "version": "0.5.0", + "version": "0.5.3", "description": "Solid hooks for TanStack AI", "author": "", "license": "MIT", @@ -56,4 +56,4 @@ "typescript": "5.9.3", "vitest": "^4.0.14" } -} +} \ No newline at end of file diff --git a/packages/typescript/ai-svelte/CHANGELOG.md b/packages/typescript/ai-svelte/CHANGELOG.md index 8d44f76a..7912fe49 100644 --- a/packages/typescript/ai-svelte/CHANGELOG.md +++ b/packages/typescript/ai-svelte/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-svelte -## 0.5.0 +## 0.5.3 ### Patch Changes diff --git a/packages/typescript/ai-svelte/package.json b/packages/typescript/ai-svelte/package.json index 0fe9e6a6..a7b9df4b 100644 --- a/packages/typescript/ai-svelte/package.json +++ b/packages/typescript/ai-svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-svelte", - "version": "0.5.0", + "version": "0.5.3", "description": "Svelte bindings for TanStack AI", "author": "", "license": "MIT", @@ -61,4 +61,4 @@ "typescript": "5.9.3", "vite": "^7.2.7" } -} +} \ No newline at end of file diff --git a/packages/typescript/ai-vue-ui/CHANGELOG.md b/packages/typescript/ai-vue-ui/CHANGELOG.md index 21f0842f..7348ea9c 100644 --- a/packages/typescript/ai-vue-ui/CHANGELOG.md +++ b/packages/typescript/ai-vue-ui/CHANGELOG.md @@ -5,7 +5,7 @@ ### Patch Changes - Updated dependencies []: - - @tanstack/ai-vue@1.0.0 + - @tanstack/ai-vue@0.5.3 ## 0.1.8 diff --git a/packages/typescript/ai-vue/CHANGELOG.md b/packages/typescript/ai-vue/CHANGELOG.md index fffd1933..665c9cfd 100644 --- a/packages/typescript/ai-vue/CHANGELOG.md +++ b/packages/typescript/ai-vue/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/ai-vue -## 0.5.0 +## 0.5.3 ### Patch Changes diff --git a/packages/typescript/ai-vue/package.json b/packages/typescript/ai-vue/package.json index 452c6669..bef77001 100644 --- a/packages/typescript/ai-vue/package.json +++ b/packages/typescript/ai-vue/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-vue", - "version": "0.5.0", + "version": "0.5.3", "description": "Vue hooks for TanStack AI", "author": "", "license": "MIT", @@ -56,4 +56,4 @@ "vitest": "^4.0.14", "vue": "^3.5.25" } -} +} \ No newline at end of file diff --git a/packages/typescript/smoke-tests/adapters/CHANGELOG.md b/packages/typescript/smoke-tests/adapters/CHANGELOG.md index 690aa515..d5b385ae 100644 --- a/packages/typescript/smoke-tests/adapters/CHANGELOG.md +++ b/packages/typescript/smoke-tests/adapters/CHANGELOG.md @@ -6,12 +6,12 @@ - Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: - @tanstack/ai@0.5.0 - - @tanstack/ai-anthropic@1.0.0 - - @tanstack/ai-gemini@1.0.0 - - @tanstack/ai-grok@1.0.0 - - @tanstack/ai-ollama@1.0.0 - - @tanstack/ai-openai@1.0.0 - - @tanstack/ai-openrouter@1.0.0 + - @tanstack/ai-anthropic@0.5.0 + - @tanstack/ai-gemini@0.5.0 + - @tanstack/ai-grok@0.5.0 + - @tanstack/ai-ollama@0.5.0 + - @tanstack/ai-openai@0.5.0 + - @tanstack/ai-openrouter@0.5.0 ## 0.1.11 diff --git a/packages/typescript/smoke-tests/e2e/CHANGELOG.md b/packages/typescript/smoke-tests/e2e/CHANGELOG.md index 7d9e85aa..61eb1953 100644 --- a/packages/typescript/smoke-tests/e2e/CHANGELOG.md +++ b/packages/typescript/smoke-tests/e2e/CHANGELOG.md @@ -7,8 +7,8 @@ - Updated dependencies [[`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd), [`5d98472`](https://github.com/TanStack/ai/commit/5d984722e1f84725e3cfda834fbda3d0341ecedd)]: - @tanstack/ai@0.5.0 - @tanstack/ai-client@0.4.4 - - @tanstack/ai-openai@1.0.0 - - @tanstack/ai-react@1.0.0 + - @tanstack/ai-openai@0.5.0 + - @tanstack/ai-react@0.5.1 - @tanstack/tests-adapters@0.1.12 ## 0.0.15 From 76edc81c95eafd9a4e07e11f5cd4202d1925f6a3 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 12 Feb 2026 08:21:55 +0000 Subject: [PATCH 4/4] ci: apply automated fixes --- packages/typescript/ai-preact/package.json | 2 +- packages/typescript/ai-react-ui/package.json | 2 +- packages/typescript/ai-react/package.json | 2 +- packages/typescript/ai-solid-ui/package.json | 2 +- packages/typescript/ai-solid/package.json | 2 +- packages/typescript/ai-svelte/package.json | 2 +- packages/typescript/ai-vue/package.json | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/typescript/ai-preact/package.json b/packages/typescript/ai-preact/package.json index 66608805..9209dbe3 100644 --- a/packages/typescript/ai-preact/package.json +++ b/packages/typescript/ai-preact/package.json @@ -54,4 +54,4 @@ "@tanstack/ai": "workspace:^", "preact": ">=10.11.0" } -} \ No newline at end of file +} diff --git a/packages/typescript/ai-react-ui/package.json b/packages/typescript/ai-react-ui/package.json index c4dccbe7..d3c17e6e 100644 --- a/packages/typescript/ai-react-ui/package.json +++ b/packages/typescript/ai-react-ui/package.json @@ -60,4 +60,4 @@ "react-dom": "^19.2.3", "vite": "^7.2.7" } -} \ No newline at end of file +} diff --git a/packages/typescript/ai-react/package.json b/packages/typescript/ai-react/package.json index 15cde8db..4dedb169 100644 --- a/packages/typescript/ai-react/package.json +++ b/packages/typescript/ai-react/package.json @@ -57,4 +57,4 @@ "react": "^19.2.3", "vite": "^7.2.7" } -} \ No newline at end of file +} diff --git a/packages/typescript/ai-solid-ui/package.json b/packages/typescript/ai-solid-ui/package.json index 6bf51833..00ee0849 100644 --- a/packages/typescript/ai-solid-ui/package.json +++ b/packages/typescript/ai-solid-ui/package.json @@ -59,4 +59,4 @@ "solid-js": "^1.9.10", "vite": "^7.2.7" } -} \ No newline at end of file +} diff --git a/packages/typescript/ai-solid/package.json b/packages/typescript/ai-solid/package.json index 424144f4..4cde9784 100644 --- a/packages/typescript/ai-solid/package.json +++ b/packages/typescript/ai-solid/package.json @@ -56,4 +56,4 @@ "typescript": "5.9.3", "vitest": "^4.0.14" } -} \ No newline at end of file +} diff --git a/packages/typescript/ai-svelte/package.json b/packages/typescript/ai-svelte/package.json index a7b9df4b..8f49e3e3 100644 --- a/packages/typescript/ai-svelte/package.json +++ b/packages/typescript/ai-svelte/package.json @@ -61,4 +61,4 @@ "typescript": "5.9.3", "vite": "^7.2.7" } -} \ No newline at end of file +} diff --git a/packages/typescript/ai-vue/package.json b/packages/typescript/ai-vue/package.json index bef77001..6f71c5e6 100644 --- a/packages/typescript/ai-vue/package.json +++ b/packages/typescript/ai-vue/package.json @@ -56,4 +56,4 @@ "vitest": "^4.0.14", "vue": "^3.5.25" } -} \ No newline at end of file +}