From e7f63c7ce70dff1e10d79e517dbeba2ddc020073 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2026 10:23:36 +0000 Subject: [PATCH] ci: Version Packages --- .changeset/provider-skills.md | 20 -------------------- packages/ai-anthropic/CHANGELOG.md | 16 ++++++++++++++++ packages/ai-anthropic/package.json | 2 +- packages/ai-grok/CHANGELOG.md | 19 +++++++++++++++++++ packages/ai-grok/package.json | 2 +- packages/ai-groq/CHANGELOG.md | 19 +++++++++++++++++++ packages/ai-groq/package.json | 2 +- packages/ai-openai/CHANGELOG.md | 21 +++++++++++++++++++++ packages/ai-openai/package.json | 2 +- packages/openai-base/CHANGELOG.md | 16 ++++++++++++++++ packages/openai-base/package.json | 2 +- 11 files changed, 96 insertions(+), 25 deletions(-) delete mode 100644 .changeset/provider-skills.md diff --git a/.changeset/provider-skills.md b/.changeset/provider-skills.md deleted file mode 100644 index 808690f18..000000000 --- a/.changeset/provider-skills.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -'@tanstack/ai-anthropic': minor -'@tanstack/ai-openai': minor -'@tanstack/openai-base': minor -'@tanstack/ai-grok': patch -'@tanstack/ai-groq': patch ---- - -feat: attach hosted provider Skills to code-execution / shell tools - -Hosted, provider-managed Agent Skills can now be attached to the server-side execution tool that runs them: - -- **Anthropic** — `codeExecutionTool(config, { skills: [{ type: 'anthropic', skill_id: 'pptx', version: 'latest' }] })`. The adapter lifts the skills into the request's top-level `container.skills` and automatically attaches the required beta headers (`code-execution-2025-08-25` — or `code-execution-2025-05-22` for the legacy `code_execution_20250522` variant — plus `skills-2025-10-02`). -- **OpenAI** — `shellTool({ environment: { type: 'container_auto', skills: [{ type: 'skill_reference', skill_id: '...', version: '2' }] } })`, threaded through the Responses API shell tool. - -Scope: hosted/managed skills referenced by id + version. Skills are inert without the execution tool that runs them. - -Setting skills via Anthropic's `modelOptions.container.skills` is deprecated in favor of `codeExecutionTool(config, { skills })`. - -Bumps the `openai` SDK to `^6.41.0` (required for the typed shell `environment.skills` surface). diff --git a/packages/ai-anthropic/CHANGELOG.md b/packages/ai-anthropic/CHANGELOG.md index 6beef62dc..2ff30634f 100644 --- a/packages/ai-anthropic/CHANGELOG.md +++ b/packages/ai-anthropic/CHANGELOG.md @@ -1,5 +1,21 @@ # @tanstack/ai-anthropic +## 0.15.0 + +### Minor Changes + +- [#695](https://github.com/TanStack/ai/pull/695) [`786b3e4`](https://github.com/TanStack/ai/commit/786b3e4d68815349f3157bdfea1791038c978519) - feat: attach hosted provider Skills to code-execution / shell tools + + Hosted, provider-managed Agent Skills can now be attached to the server-side execution tool that runs them: + - **Anthropic** — `codeExecutionTool(config, { skills: [{ type: 'anthropic', skill_id: 'pptx', version: 'latest' }] })`. The adapter lifts the skills into the request's top-level `container.skills` and automatically attaches the required beta headers (`code-execution-2025-08-25` — or `code-execution-2025-05-22` for the legacy `code_execution_20250522` variant — plus `skills-2025-10-02`). + - **OpenAI** — `shellTool({ environment: { type: 'container_auto', skills: [{ type: 'skill_reference', skill_id: '...', version: '2' }] } })`, threaded through the Responses API shell tool. + + Scope: hosted/managed skills referenced by id + version. Skills are inert without the execution tool that runs them. + + Setting skills via Anthropic's `modelOptions.container.skills` is deprecated in favor of `codeExecutionTool(config, { skills })`. + + Bumps the `openai` SDK to `^6.41.0` (required for the typed shell `environment.skills` surface). + ## 0.14.0 ### Minor Changes diff --git a/packages/ai-anthropic/package.json b/packages/ai-anthropic/package.json index 51e535b54..0e8f66343 100644 --- a/packages/ai-anthropic/package.json +++ b/packages/ai-anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-anthropic", - "version": "0.14.0", + "version": "0.15.0", "description": "Anthropic Claude adapter for TanStack AI chat, tool calling, thinking, and structured outputs.", "author": "", "license": "MIT", diff --git a/packages/ai-grok/CHANGELOG.md b/packages/ai-grok/CHANGELOG.md index c70b35ea9..b6586d808 100644 --- a/packages/ai-grok/CHANGELOG.md +++ b/packages/ai-grok/CHANGELOG.md @@ -1,5 +1,24 @@ # @tanstack/ai-grok +## 0.11.1 + +### Patch Changes + +- [#695](https://github.com/TanStack/ai/pull/695) [`786b3e4`](https://github.com/TanStack/ai/commit/786b3e4d68815349f3157bdfea1791038c978519) - feat: attach hosted provider Skills to code-execution / shell tools + + Hosted, provider-managed Agent Skills can now be attached to the server-side execution tool that runs them: + - **Anthropic** — `codeExecutionTool(config, { skills: [{ type: 'anthropic', skill_id: 'pptx', version: 'latest' }] })`. The adapter lifts the skills into the request's top-level `container.skills` and automatically attaches the required beta headers (`code-execution-2025-08-25` — or `code-execution-2025-05-22` for the legacy `code_execution_20250522` variant — plus `skills-2025-10-02`). + - **OpenAI** — `shellTool({ environment: { type: 'container_auto', skills: [{ type: 'skill_reference', skill_id: '...', version: '2' }] } })`, threaded through the Responses API shell tool. + + Scope: hosted/managed skills referenced by id + version. Skills are inert without the execution tool that runs them. + + Setting skills via Anthropic's `modelOptions.container.skills` is deprecated in favor of `codeExecutionTool(config, { skills })`. + + Bumps the `openai` SDK to `^6.41.0` (required for the typed shell `environment.skills` surface). + +- Updated dependencies [[`786b3e4`](https://github.com/TanStack/ai/commit/786b3e4d68815349f3157bdfea1791038c978519)]: + - @tanstack/openai-base@0.8.0 + ## 0.11.0 ### Minor Changes diff --git a/packages/ai-grok/package.json b/packages/ai-grok/package.json index f8fffb058..5ae6696e7 100644 --- a/packages/ai-grok/package.json +++ b/packages/ai-grok/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-grok", - "version": "0.11.0", + "version": "0.11.1", "description": "xAI Grok adapter for TanStack AI chat, image generation, realtime, and structured outputs.", "author": "", "license": "MIT", diff --git a/packages/ai-groq/CHANGELOG.md b/packages/ai-groq/CHANGELOG.md index cb10f702a..1c0544672 100644 --- a/packages/ai-groq/CHANGELOG.md +++ b/packages/ai-groq/CHANGELOG.md @@ -1,5 +1,24 @@ # @tanstack/ai-groq +## 0.4.1 + +### Patch Changes + +- [#695](https://github.com/TanStack/ai/pull/695) [`786b3e4`](https://github.com/TanStack/ai/commit/786b3e4d68815349f3157bdfea1791038c978519) - feat: attach hosted provider Skills to code-execution / shell tools + + Hosted, provider-managed Agent Skills can now be attached to the server-side execution tool that runs them: + - **Anthropic** — `codeExecutionTool(config, { skills: [{ type: 'anthropic', skill_id: 'pptx', version: 'latest' }] })`. The adapter lifts the skills into the request's top-level `container.skills` and automatically attaches the required beta headers (`code-execution-2025-08-25` — or `code-execution-2025-05-22` for the legacy `code_execution_20250522` variant — plus `skills-2025-10-02`). + - **OpenAI** — `shellTool({ environment: { type: 'container_auto', skills: [{ type: 'skill_reference', skill_id: '...', version: '2' }] } })`, threaded through the Responses API shell tool. + + Scope: hosted/managed skills referenced by id + version. Skills are inert without the execution tool that runs them. + + Setting skills via Anthropic's `modelOptions.container.skills` is deprecated in favor of `codeExecutionTool(config, { skills })`. + + Bumps the `openai` SDK to `^6.41.0` (required for the typed shell `environment.skills` surface). + +- Updated dependencies [[`786b3e4`](https://github.com/TanStack/ai/commit/786b3e4d68815349f3157bdfea1791038c978519)]: + - @tanstack/openai-base@0.8.0 + ## 0.4.0 ### Minor Changes diff --git a/packages/ai-groq/package.json b/packages/ai-groq/package.json index 44e3ebdde..f63f12c48 100644 --- a/packages/ai-groq/package.json +++ b/packages/ai-groq/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-groq", - "version": "0.4.0", + "version": "0.4.1", "type": "module", "description": "Groq adapter for TanStack AI low-latency chat, tool calling, and structured outputs.", "author": "", diff --git a/packages/ai-openai/CHANGELOG.md b/packages/ai-openai/CHANGELOG.md index c0189e9da..52486c1c9 100644 --- a/packages/ai-openai/CHANGELOG.md +++ b/packages/ai-openai/CHANGELOG.md @@ -1,5 +1,26 @@ # @tanstack/ai-openai +## 0.14.0 + +### Minor Changes + +- [#695](https://github.com/TanStack/ai/pull/695) [`786b3e4`](https://github.com/TanStack/ai/commit/786b3e4d68815349f3157bdfea1791038c978519) - feat: attach hosted provider Skills to code-execution / shell tools + + Hosted, provider-managed Agent Skills can now be attached to the server-side execution tool that runs them: + - **Anthropic** — `codeExecutionTool(config, { skills: [{ type: 'anthropic', skill_id: 'pptx', version: 'latest' }] })`. The adapter lifts the skills into the request's top-level `container.skills` and automatically attaches the required beta headers (`code-execution-2025-08-25` — or `code-execution-2025-05-22` for the legacy `code_execution_20250522` variant — plus `skills-2025-10-02`). + - **OpenAI** — `shellTool({ environment: { type: 'container_auto', skills: [{ type: 'skill_reference', skill_id: '...', version: '2' }] } })`, threaded through the Responses API shell tool. + + Scope: hosted/managed skills referenced by id + version. Skills are inert without the execution tool that runs them. + + Setting skills via Anthropic's `modelOptions.container.skills` is deprecated in favor of `codeExecutionTool(config, { skills })`. + + Bumps the `openai` SDK to `^6.41.0` (required for the typed shell `environment.skills` surface). + +### Patch Changes + +- Updated dependencies [[`786b3e4`](https://github.com/TanStack/ai/commit/786b3e4d68815349f3157bdfea1791038c978519)]: + - @tanstack/openai-base@0.8.0 + ## 0.13.0 ### Minor Changes diff --git a/packages/ai-openai/package.json b/packages/ai-openai/package.json index f642352c7..5197a76f5 100644 --- a/packages/ai-openai/package.json +++ b/packages/ai-openai/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/ai-openai", - "version": "0.13.0", + "version": "0.14.0", "description": "OpenAI adapter for TanStack AI chat, tools, images, video, speech, transcription, realtime, and structured outputs.", "author": "", "license": "MIT", diff --git a/packages/openai-base/CHANGELOG.md b/packages/openai-base/CHANGELOG.md index 3b02c970a..f423490b8 100644 --- a/packages/openai-base/CHANGELOG.md +++ b/packages/openai-base/CHANGELOG.md @@ -1,5 +1,21 @@ # @tanstack/openai-base +## 0.8.0 + +### Minor Changes + +- [#695](https://github.com/TanStack/ai/pull/695) [`786b3e4`](https://github.com/TanStack/ai/commit/786b3e4d68815349f3157bdfea1791038c978519) - feat: attach hosted provider Skills to code-execution / shell tools + + Hosted, provider-managed Agent Skills can now be attached to the server-side execution tool that runs them: + - **Anthropic** — `codeExecutionTool(config, { skills: [{ type: 'anthropic', skill_id: 'pptx', version: 'latest' }] })`. The adapter lifts the skills into the request's top-level `container.skills` and automatically attaches the required beta headers (`code-execution-2025-08-25` — or `code-execution-2025-05-22` for the legacy `code_execution_20250522` variant — plus `skills-2025-10-02`). + - **OpenAI** — `shellTool({ environment: { type: 'container_auto', skills: [{ type: 'skill_reference', skill_id: '...', version: '2' }] } })`, threaded through the Responses API shell tool. + + Scope: hosted/managed skills referenced by id + version. Skills are inert without the execution tool that runs them. + + Setting skills via Anthropic's `modelOptions.container.skills` is deprecated in favor of `codeExecutionTool(config, { skills })`. + + Bumps the `openai` SDK to `^6.41.0` (required for the typed shell `environment.skills` surface). + ## 0.7.0 ### Minor Changes diff --git a/packages/openai-base/package.json b/packages/openai-base/package.json index d43c16272..99ca4d65b 100644 --- a/packages/openai-base/package.json +++ b/packages/openai-base/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/openai-base", - "version": "0.7.0", + "version": "0.8.0", "description": "Shared OpenAI SDK base adapters for TanStack AI providers using Chat Completions and Responses APIs.", "author": "", "license": "MIT",