diff --git a/.changeset/shy-ravens-sink.md b/.changeset/shy-ravens-sink.md deleted file mode 100644 index 701eef90e7..0000000000 --- a/.changeset/shy-ravens-sink.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@tanstack/ai-client': minor -'@tanstack/ai-preact': minor -'@tanstack/ai-svelte': minor -'@tanstack/ai-react': minor -'@tanstack/ai-solid': minor -'@tanstack/ai-vue': minor ---- - -Added status property to useChat to track the generation lifecycle (ready, submitted, streaming, error) diff --git a/.changeset/tool-race-conditions.md b/.changeset/tool-race-conditions.md deleted file mode 100644 index 80e8de7345..0000000000 --- a/.changeset/tool-race-conditions.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -'@tanstack/ai': patch -'@tanstack/ai-client': patch ---- - -fix: improve tool execution reliability and prevent race conditions - -- Fix client tool execution race conditions by tracking pending tool executions -- Prevent duplicate continuation attempts with continuationPending flag -- Guard against concurrent stream processing in streamResponse -- Add approval info to ToolCall type for server-side decision tracking -- Include approval info in model message conversion for approval workflows -- Check ModelMessage format for approval info extraction in chat activity - -This change improves the reliability of tool execution, especially for: - -- Client tools with async execute functions -- Approval-based tool workflows -- Sequential tool execution scenarios diff --git a/examples/ts-svelte-chat/CHANGELOG.md b/examples/ts-svelte-chat/CHANGELOG.md index 2ff0316576..f0340a3707 100644 --- a/examples/ts-svelte-chat/CHANGELOG.md +++ b/examples/ts-svelte-chat/CHANGELOG.md @@ -1,5 +1,18 @@ # ts-svelte-chat +## 0.1.6 + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai-svelte@0.4.0 + - @tanstack/ai@0.3.1 + - @tanstack/ai-anthropic@0.3.0 + - @tanstack/ai-gemini@0.3.0 + - @tanstack/ai-ollama@0.3.0 + - @tanstack/ai-openai@0.3.0 + ## 0.1.5 ### Patch Changes diff --git a/examples/ts-svelte-chat/package.json b/examples/ts-svelte-chat/package.json index b895d30705..d53bb79e4d 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.5", + "version": "0.1.6", "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 9b0a2fff2a..bdb1b756f4 100644 --- a/examples/ts-vue-chat/CHANGELOG.md +++ b/examples/ts-vue-chat/CHANGELOG.md @@ -1,5 +1,19 @@ # ts-vue-chat +## 0.1.6 + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai-vue@0.4.0 + - @tanstack/ai@0.3.1 + - @tanstack/ai-vue-ui@0.1.5 + - @tanstack/ai-anthropic@0.3.0 + - @tanstack/ai-gemini@0.3.0 + - @tanstack/ai-ollama@0.3.0 + - @tanstack/ai-openai@0.3.0 + ## 0.1.5 ### Patch Changes diff --git a/examples/ts-vue-chat/package.json b/examples/ts-vue-chat/package.json index 929b432672..8f5d07f371 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.5", + "version": "0.1.6", "private": true, "type": "module", "scripts": { diff --git a/examples/vanilla-chat/CHANGELOG.md b/examples/vanilla-chat/CHANGELOG.md index 9efc96401a..cfaf44d6a1 100644 --- a/examples/vanilla-chat/CHANGELOG.md +++ b/examples/vanilla-chat/CHANGELOG.md @@ -1,5 +1,12 @@ # vanilla-chat +## 0.0.9 + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + ## 0.0.8 ### Patch Changes diff --git a/examples/vanilla-chat/package.json b/examples/vanilla-chat/package.json index 6bab3efa84..a481bbb2d8 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.8", + "version": "0.0.9", "scripts": { "start": "vite --port 3001", "dev": "vite --port 3001", diff --git a/packages/typescript/ai-client/CHANGELOG.md b/packages/typescript/ai-client/CHANGELOG.md index e9f464d4cb..3f82bc8685 100644 --- a/packages/typescript/ai-client/CHANGELOG.md +++ b/packages/typescript/ai-client/CHANGELOG.md @@ -1,5 +1,29 @@ # @tanstack/ai-client +## 0.4.0 + +### Minor Changes + +- Added status property to useChat to track the generation lifecycle (ready, submitted, streaming, error) ([#247](https://github.com/TanStack/ai/pull/247)) + +### Patch Changes + +- fix: improve tool execution reliability and prevent race conditions ([#258](https://github.com/TanStack/ai/pull/258)) + - Fix client tool execution race conditions by tracking pending tool executions + - Prevent duplicate continuation attempts with continuationPending flag + - Guard against concurrent stream processing in streamResponse + - Add approval info to ToolCall type for server-side decision tracking + - Include approval info in model message conversion for approval workflows + - Check ModelMessage format for approval info extraction in chat activity + + This change improves the reliability of tool execution, especially for: + - Client tools with async execute functions + - Approval-based tool workflows + - Sequential tool execution scenarios + +- Updated dependencies [[`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai@0.3.1 + ## 0.3.0 ### Minor Changes diff --git a/packages/typescript/ai-client/package.json b/packages/typescript/ai-client/package.json index c2ed49462c..793c30acf5 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.3.0", + "version": "0.4.0", "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 036ef8498c..9c9a35e43a 100644 --- a/packages/typescript/ai-devtools/CHANGELOG.md +++ b/packages/typescript/ai-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/ai-devtools-core +## 0.2.3 + +### Patch Changes + +- Updated dependencies [[`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai@0.3.1 + ## 0.2.2 ### Patch Changes diff --git a/packages/typescript/ai-devtools/package.json b/packages/typescript/ai-devtools/package.json index 4cfc5f3fb6..fc2dcdb5f7 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.2.2", + "version": "0.2.3", "description": "Core TanStack AI Devtools", "author": "", "license": "MIT", diff --git a/packages/typescript/ai-openrouter/CHANGELOG.md b/packages/typescript/ai-openrouter/CHANGELOG.md index 1e4239586b..29e0e1f718 100644 --- a/packages/typescript/ai-openrouter/CHANGELOG.md +++ b/packages/typescript/ai-openrouter/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/ai-openrouter +## 0.3.1 + +### Patch Changes + +- Updated dependencies [[`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai@0.3.1 + ## 0.3.0 ### Minor Changes diff --git a/packages/typescript/ai-openrouter/package.json b/packages/typescript/ai-openrouter/package.json index fa881293d3..4b42282068 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.3.0", + "version": "0.3.1", "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 73448d75cb..f2f748e936 100644 --- a/packages/typescript/ai-preact/CHANGELOG.md +++ b/packages/typescript/ai-preact/CHANGELOG.md @@ -1,5 +1,17 @@ # @tanstack/ai-preact +## 0.4.0 + +### Minor Changes + +- Added status property to useChat to track the generation lifecycle (ready, submitted, streaming, error) ([#247](https://github.com/TanStack/ai/pull/247)) + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai@0.3.1 + ## 0.3.0 ### Patch Changes diff --git a/packages/typescript/ai-preact/package.json b/packages/typescript/ai-preact/package.json index 6f8a8cbf73..7b53376776 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.3.0", + "version": "0.4.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 c5bc224a28..eb9100bfde 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 +## 0.4.0 + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai-react@0.4.0 + ## 0.3.0 ### Patch Changes diff --git a/packages/typescript/ai-react-ui/package.json b/packages/typescript/ai-react-ui/package.json index 8a0d895ecd..3e8f07fe3a 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.3.0", + "version": "0.4.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 b3d664bf36..25ac9196fc 100644 --- a/packages/typescript/ai-react/CHANGELOG.md +++ b/packages/typescript/ai-react/CHANGELOG.md @@ -1,5 +1,17 @@ # @tanstack/ai-react +## 0.4.0 + +### Minor Changes + +- Added status property to useChat to track the generation lifecycle (ready, submitted, streaming, error) ([#247](https://github.com/TanStack/ai/pull/247)) + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai@0.3.1 + ## 0.3.0 ### Patch Changes diff --git a/packages/typescript/ai-react/package.json b/packages/typescript/ai-react/package.json index cb7ffd73a2..6e6eb82116 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.3.0", + "version": "0.4.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 0533901329..60bea482a0 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 +## 0.4.0 + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai-solid@0.4.0 + ## 0.3.0 ### Patch Changes diff --git a/packages/typescript/ai-solid-ui/package.json b/packages/typescript/ai-solid-ui/package.json index 71b4486b85..deaf428e6f 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.3.0", + "version": "0.4.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 50764cd224..24095fc20d 100644 --- a/packages/typescript/ai-solid/CHANGELOG.md +++ b/packages/typescript/ai-solid/CHANGELOG.md @@ -1,5 +1,17 @@ # @tanstack/ai-solid +## 0.4.0 + +### Minor Changes + +- Added status property to useChat to track the generation lifecycle (ready, submitted, streaming, error) ([#247](https://github.com/TanStack/ai/pull/247)) + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai@0.3.1 + ## 0.3.0 ### Patch Changes diff --git a/packages/typescript/ai-solid/package.json b/packages/typescript/ai-solid/package.json index 18dd06105a..77e99cf13e 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.3.0", + "version": "0.4.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 aff79eec13..23cb6a706b 100644 --- a/packages/typescript/ai-svelte/CHANGELOG.md +++ b/packages/typescript/ai-svelte/CHANGELOG.md @@ -1,5 +1,17 @@ # @tanstack/ai-svelte +## 0.4.0 + +### Minor Changes + +- Added status property to useChat to track the generation lifecycle (ready, submitted, streaming, error) ([#247](https://github.com/TanStack/ai/pull/247)) + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai@0.3.1 + ## 0.3.0 ### Patch Changes diff --git a/packages/typescript/ai-svelte/package.json b/packages/typescript/ai-svelte/package.json index 1762e594ee..5f986c882e 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.3.0", + "version": "0.4.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 d01cf65981..0b41c15808 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.5 + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4)]: + - @tanstack/ai-vue@0.4.0 + ## 0.1.4 ### Patch Changes diff --git a/packages/typescript/ai-vue-ui/package.json b/packages/typescript/ai-vue-ui/package.json index 1290bfd1ab..ab89913531 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.4", + "version": "0.1.5", "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 795744239b..a87c4173f4 100644 --- a/packages/typescript/ai-vue/CHANGELOG.md +++ b/packages/typescript/ai-vue/CHANGELOG.md @@ -1,5 +1,17 @@ # @tanstack/ai-vue +## 0.4.0 + +### Minor Changes + +- Added status property to useChat to track the generation lifecycle (ready, submitted, streaming, error) ([#247](https://github.com/TanStack/ai/pull/247)) + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai@0.3.1 + ## 0.3.0 ### Patch Changes diff --git a/packages/typescript/ai-vue/package.json b/packages/typescript/ai-vue/package.json index a9a96ab361..1edeb2d70c 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.3.0", + "version": "0.4.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 e24c5f3ad6..602b531aba 100644 --- a/packages/typescript/ai/CHANGELOG.md +++ b/packages/typescript/ai/CHANGELOG.md @@ -1,5 +1,22 @@ # @tanstack/ai +## 0.3.1 + +### Patch Changes + +- fix: improve tool execution reliability and prevent race conditions ([#258](https://github.com/TanStack/ai/pull/258)) + - Fix client tool execution race conditions by tracking pending tool executions + - Prevent duplicate continuation attempts with continuationPending flag + - Guard against concurrent stream processing in streamResponse + - Add approval info to ToolCall type for server-side decision tracking + - Include approval info in model message conversion for approval workflows + - Check ModelMessage format for approval info extraction in chat activity + + This change improves the reliability of tool execution, especially for: + - Client tools with async execute functions + - Approval-based tool workflows + - Sequential tool execution scenarios + ## 0.3.0 ### Minor Changes diff --git a/packages/typescript/ai/package.json b/packages/typescript/ai/package.json index 7fec07eddd..394fe8834a 100644 --- a/packages/typescript/ai/package.json +++ b/packages/typescript/ai/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai", - "version": "0.3.0", + "version": "0.3.1", "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 f6be19193d..aca0d5ffe0 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.3 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/ai-devtools-core@0.2.3 + ## 0.1.2 ### Patch Changes diff --git a/packages/typescript/preact-ai-devtools/package.json b/packages/typescript/preact-ai-devtools/package.json index acf526583b..efb5c8d42d 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.2", + "version": "0.1.3", "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 ba322602e4..5cff9b6ceb 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.3 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/ai-devtools-core@0.2.3 + ## 0.2.2 ### Patch Changes diff --git a/packages/typescript/react-ai-devtools/package.json b/packages/typescript/react-ai-devtools/package.json index 94f5f7da1a..253ede1f8a 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.2", + "version": "0.2.3", "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 134cc17502..19e3395c6f 100644 --- a/packages/typescript/smoke-tests/adapters/CHANGELOG.md +++ b/packages/typescript/smoke-tests/adapters/CHANGELOG.md @@ -1,5 +1,17 @@ # @tanstack/tests-adapters +## 0.1.7 + +### Patch Changes + +- Updated dependencies [[`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai@0.3.1 + - @tanstack/ai-anthropic@0.3.0 + - @tanstack/ai-gemini@0.3.0 + - @tanstack/ai-ollama@0.3.0 + - @tanstack/ai-openai@0.3.0 + - @tanstack/ai-openrouter@0.3.1 + ## 0.1.6 ### Patch Changes diff --git a/packages/typescript/smoke-tests/adapters/package.json b/packages/typescript/smoke-tests/adapters/package.json index 07b5be4242..55f15fff5c 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.6", + "version": "0.1.7", "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 81429fecf2..79f8edac0f 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.11 + +### Patch Changes + +- Updated dependencies [[`99ccee5`](https://github.com/TanStack/ai/commit/99ccee5c72df12adc13bede98142c6da84d13cc4), [`230bab6`](https://github.com/TanStack/ai/commit/230bab6417c8ff2c25586a12126c85e27dd7bc15)]: + - @tanstack/ai-client@0.4.0 + - @tanstack/ai-react@0.4.0 + - @tanstack/ai@0.3.1 + - @tanstack/ai-openai@0.3.0 + - @tanstack/tests-adapters@0.1.7 + ## 0.0.10 ### Patch Changes diff --git a/packages/typescript/smoke-tests/e2e/package.json b/packages/typescript/smoke-tests/e2e/package.json index 420dab6925..3f13c6543e 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.10", + "version": "0.0.11", "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 95cc094c07..2f364319ce 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.3 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/ai-devtools-core@0.2.3 + ## 0.2.2 ### Patch Changes diff --git a/packages/typescript/solid-ai-devtools/package.json b/packages/typescript/solid-ai-devtools/package.json index 367b5327c5..0d576f89a8 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.2", + "version": "0.2.3", "description": "Solid TanStack AI Devtools", "author": "", "license": "MIT",