Skip to content

Commit f95a6b9

Browse files
ci: Version Packages (TanStack#369)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 570c9f6 commit f95a6b9

55 files changed

Lines changed: 276 additions & 40 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/lemon-pots-speak.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

examples/ts-svelte-chat/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# ts-svelte-chat
22

3+
## 0.1.21
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f62eeb0`](https://github.com/TanStack/ai/commit/f62eeb0d7efd002894435c7f2c8a9f2790f0b6d7)]:
8+
- @tanstack/ai@0.8.0
9+
- @tanstack/ai-client@0.7.1
10+
- @tanstack/ai-anthropic@0.6.2
11+
- @tanstack/ai-gemini@0.8.2
12+
- @tanstack/ai-ollama@0.6.2
13+
- @tanstack/ai-openai@0.7.1
14+
- @tanstack/ai-svelte@0.6.6
15+
316
## 0.1.20
417

518
### Patch Changes

examples/ts-svelte-chat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ts-svelte-chat",
33
"private": true,
4-
"version": "0.1.20",
4+
"version": "0.1.21",
55
"type": "module",
66
"scripts": {
77
"dev": "vite dev --port 3000",

examples/ts-vue-chat/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# ts-vue-chat
22

3+
## 0.1.21
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f62eeb0`](https://github.com/TanStack/ai/commit/f62eeb0d7efd002894435c7f2c8a9f2790f0b6d7)]:
8+
- @tanstack/ai@0.8.0
9+
- @tanstack/ai-client@0.7.1
10+
- @tanstack/ai-anthropic@0.6.2
11+
- @tanstack/ai-gemini@0.8.2
12+
- @tanstack/ai-ollama@0.6.2
13+
- @tanstack/ai-openai@0.7.1
14+
- @tanstack/ai-vue@0.6.6
15+
- @tanstack/ai-vue-ui@0.1.17
16+
317
## 0.1.20
418

519
### Patch Changes

examples/ts-vue-chat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-vue-chat",
3-
"version": "0.1.20",
3+
"version": "0.1.21",
44
"private": true,
55
"type": "module",
66
"scripts": {

examples/vanilla-chat/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# vanilla-chat
22

3+
## 0.0.21
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f62eeb0`](https://github.com/TanStack/ai/commit/f62eeb0d7efd002894435c7f2c8a9f2790f0b6d7)]:
8+
- @tanstack/ai-client@0.7.1
9+
310
## 0.0.20
411

512
### Patch Changes

examples/vanilla-chat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vanilla-chat",
33
"private": true,
44
"type": "module",
5-
"version": "0.0.20",
5+
"version": "0.0.21",
66
"scripts": {
77
"start": "vite --port 3001",
88
"dev": "vite --port 3001",

packages/typescript/ai-anthropic/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @tanstack/ai-anthropic
22

3+
## 0.6.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f62eeb0`](https://github.com/TanStack/ai/commit/f62eeb0d7efd002894435c7f2c8a9f2790f0b6d7)]:
8+
- @tanstack/ai@0.8.0
9+
310
## 0.6.1
411

512
### Patch Changes

packages/typescript/ai-anthropic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/ai-anthropic",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "Anthropic Claude adapter for TanStack AI",
55
"author": "",
66
"license": "MIT",

packages/typescript/ai-client/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @tanstack/ai-client
22

3+
## 0.7.1
4+
5+
### Patch Changes
6+
7+
- feat: add middleware system and content guard middleware ([#367](https://github.com/TanStack/ai/pull/367))
8+
- **@tanstack/ai**: New `@tanstack/ai/middlewares` subpath with composable chat middleware architecture. Includes `contentGuardMiddleware` (delta and buffered strategies) and `toolCacheMiddleware`. Middleware hooks: `onStart`, `onIteration`, `onChunk`, `onToolPhaseComplete`, `onFinish`.
9+
- **@tanstack/ai-event-client**: Initial release. Extracted `devtoolsMiddleware` from `@tanstack/ai` core into a standalone package for tree-shaking. Emits all DevTools events as an observation-only middleware.
10+
- **@tanstack/ai-client**: Updated event types for middleware integration.
11+
- **@tanstack/ai-devtools**: Updated iteration timeline and conversation UI for middleware-aware event handling.
12+
13+
- Updated dependencies [[`f62eeb0`](https://github.com/TanStack/ai/commit/f62eeb0d7efd002894435c7f2c8a9f2790f0b6d7)]:
14+
- @tanstack/ai@0.8.0
15+
- @tanstack/ai-event-client@0.1.0
16+
317
## 0.7.0
418

519
### Minor Changes

0 commit comments

Comments
 (0)