From 749f19fc28a2b1a0b6a42dac4eec7ea346791a8a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 May 2026 17:53:43 +0000 Subject: [PATCH] ci(changesets): version packages --- .changeset/quiet-stream-abort.md | 21 - .changeset/workflow-control-ownership.md | 10 - examples/base/package.json | 4 +- examples/github-repo-analyzer/package.json | 4 +- examples/github-star-stories/package.json | 6 +- .../package.json | 4 +- examples/with-a2a-server/package.json | 4 +- examples/with-agent-tool/package.json | 2 +- examples/with-airtable/package.json | 4 +- examples/with-amazon-bedrock/package.json | 4 +- examples/with-anthropic/package.json | 4 +- examples/with-auth/package.json | 4 +- examples/with-cerbos/package.json | 4 +- examples/with-chat-sdk/package.json | 2 +- examples/with-chroma/package.json | 4 +- examples/with-client-side-tools/package.json | 4 +- examples/with-cloudflare-workers/package.json | 4 +- examples/with-composio-mcp/package.json | 4 +- examples/with-custom-endpoints/package.json | 4 +- examples/with-dynamic-parameters/package.json | 4 +- examples/with-dynamic-prompts/package.json | 4 +- examples/with-feedback/package.json | 4 +- examples/with-google-ai/package.json | 4 +- .../with-google-drive-mcp/server/package.json | 4 +- examples/with-google-vertex-ai/package.json | 4 +- examples/with-groq-ai/package.json | 4 +- examples/with-guardrails/package.json | 4 +- examples/with-hooks/package.json | 4 +- examples/with-hugging-face-mcp/package.json | 4 +- examples/with-langfuse/package.json | 4 +- examples/with-mcp-elicitation/package.json | 4 +- examples/with-mcp-server/package.json | 4 +- examples/with-mcp/package.json | 4 +- examples/with-memory-rest-api/package.json | 4 +- examples/with-middleware/package.json | 4 +- examples/with-nestjs/package.json | 6 +- examples/with-netlify-functions/package.json | 4 +- .../with-nextjs-resumable-stream/package.json | 4 +- examples/with-nextjs/package.json | 4 +- examples/with-nuxt/package.json | 4 +- examples/with-offline-evals/package.json | 2 +- examples/with-ollama/package.json | 4 +- examples/with-openrouter/package.json | 4 +- examples/with-peaka-mcp/package.json | 4 +- examples/with-pinecone/package.json | 4 +- examples/with-planagents/package.json | 4 +- examples/with-playwright/package.json | 4 +- examples/with-postgres/package.json | 4 +- examples/with-qdrant/package.json | 4 +- examples/with-rag-chatbot/package.json | 4 +- examples/with-recipe-generator/package.json | 4 +- examples/with-research-assistant/package.json | 4 +- examples/with-resumable-streams/package.json | 4 +- examples/with-retries-fallback/package.json | 4 +- examples/with-retrieval/package.json | 4 +- examples/with-slack/package.json | 4 +- examples/with-subagents/package.json | 4 +- examples/with-summarization/package.json | 4 +- examples/with-supabase/package.json | 4 +- examples/with-tavily-search/package.json | 4 +- examples/with-thinking-tool/package.json | 4 +- examples/with-tool-routing/package.json | 4 +- examples/with-tools/package.json | 4 +- examples/with-turso/package.json | 4 +- examples/with-vector-search/package.json | 4 +- examples/with-vercel-ai/package.json | 4 +- examples/with-viteval/package.json | 4 +- examples/with-voice-elevenlabs/package.json | 4 +- examples/with-voice-openai/package.json | 4 +- examples/with-voice-xsai/package.json | 4 +- examples/with-voltagent-actions/package.json | 4 +- examples/with-voltagent-exporter/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- examples/with-voltops-retrieval/package.json | 4 +- examples/with-whatsapp/package.json | 4 +- examples/with-workflow-chain/package.json | 4 +- examples/with-workflow/package.json | 4 +- examples/with-working-memory/package.json | 4 +- examples/with-workspace/package.json | 4 +- examples/with-xquik-tools/package.json | 4 +- examples/with-youtube-to-blog/package.json | 4 +- examples/with-zapier-mcp/package.json | 4 +- packages/core/CHANGELOG.md | 21 + packages/core/package.json | 2 +- packages/e2e/package.json | 2 +- packages/server-core/CHANGELOG.md | 11 + packages/server-core/package.json | 4 +- packages/server-elysia/CHANGELOG.md | 12 + packages/server-elysia/package.json | 6 +- packages/server-hono/CHANGELOG.md | 12 + packages/server-hono/package.json | 6 +- packages/serverless-hono/CHANGELOG.md | 11 + packages/serverless-hono/package.json | 4 +- pnpm-lock.yaml | 444 +++++++++--------- 95 files changed, 462 insertions(+), 426 deletions(-) delete mode 100644 .changeset/quiet-stream-abort.md delete mode 100644 .changeset/workflow-control-ownership.md diff --git a/.changeset/quiet-stream-abort.md b/.changeset/quiet-stream-abort.md deleted file mode 100644 index c5bf8cdad..000000000 --- a/.changeset/quiet-stream-abort.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -"@voltagent/core": patch ---- - -fix: prevent unhandled rejections when aborting `Agent.streamText()` streams - -## The Problem - -`Agent.streamText()` eagerly read the AI SDK result getters for `text`, `usage`, and `finishReason` while constructing VoltAgent's wrapped result. In AI SDK v6 these fields are lazy promises, so reading them early could materialize promises that the caller never consumes. - -When a caller only consumed the UI/full stream and aborted the run, those unconsumed promises could reject globally as `unhandledRejection` events. - -## The Solution - -VoltAgent now preserves the lazy getter behavior for `text`, `usage`, and `finishReason`. The sanitized text promise is also created only when `result.text` is accessed. - -## Impact - -- Aborting a consumed `streamText()` stream no longer emits unhandled rejections for unconsumed result fields -- Callers using only `toUIMessageStream()`, `toUIMessageStreamResponse()`, `fullStream`, or `textStream` do not need to attach defensive `.catch()` handlers to `text`, `usage`, or `finishReason` -- Matches AI SDK v6's lazy stream result contract more closely diff --git a/.changeset/workflow-control-ownership.md b/.changeset/workflow-control-ownership.md deleted file mode 100644 index d83f09c3c..000000000 --- a/.changeset/workflow-control-ownership.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@voltagent/server-core": patch -"@voltagent/server-hono": patch -"@voltagent/serverless-hono": patch -"@voltagent/server-elysia": patch ---- - -Validate workflow ownership before suspend and cancel control routes act on an execution. - -Fixes #1316. diff --git a/examples/base/package.json b/examples/base/package.json index 0f60512b8..ee8c94718 100644 --- a/examples/base/package.json +++ b/examples/base/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/github-repo-analyzer/package.json b/examples/github-repo-analyzer/package.json index adf0d1dbb..951972801 100644 --- a/examples/github-repo-analyzer/package.json +++ b/examples/github-repo-analyzer/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@octokit/rest": "^21.0.0", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/github-star-stories/package.json b/examples/github-star-stories/package.json index 09d106b67..835f5b326 100644 --- a/examples/github-star-stories/package.json +++ b/examples/github-star-stories/package.json @@ -3,10 +3,10 @@ "version": "0.0.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", - "@voltagent/serverless-hono": "^2.0.11", + "@voltagent/server-hono": "^2.0.14", + "@voltagent/serverless-hono": "^2.0.12", "dotenv": "^16.4.5", "wrangler": "^3.38.0", "zod": "^3.25.76" diff --git a/examples/next-js-chatbot-starter-template/package.json b/examples/next-js-chatbot-starter-template/package.json index 30cafe621..8abbdf962 100644 --- a/examples/next-js-chatbot-starter-template/package.json +++ b/examples/next-js-chatbot-starter-template/package.json @@ -16,9 +16,9 @@ "@radix-ui/react-tooltip": "^1.2.8", "@radix-ui/react-use-controllable-state": "^1.2.2", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "@xyflow/react": "^12.9.2", "ai": "^6.0.0", "class-variance-authority": "^0.7.1", diff --git a/examples/with-a2a-server/package.json b/examples/with-a2a-server/package.json index c668a2f17..b7d1352cf 100644 --- a/examples/with-a2a-server/package.json +++ b/examples/with-a2a-server/package.json @@ -2,10 +2,10 @@ "name": "voltagent-example-with-a2a-server", "dependencies": { "@voltagent/a2a-server": "^2.0.3", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/internal": "^1.0.3", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-agent-tool/package.json b/examples/with-agent-tool/package.json index 146e719e0..28f12afec 100644 --- a/examples/with-agent-tool/package.json +++ b/examples/with-agent-tool/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-airtable/package.json b/examples/with-airtable/package.json index bfd4eb564..455f23ccb 100644 --- a/examples/with-airtable/package.json +++ b/examples/with-airtable/package.json @@ -3,11 +3,11 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/internal": "^1.0.3", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.3", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-amazon-bedrock/package.json b/examples/with-amazon-bedrock/package.json index c6110d93b..15f32a7aa 100644 --- a/examples/with-amazon-bedrock/package.json +++ b/examples/with-amazon-bedrock/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-anthropic/package.json b/examples/with-anthropic/package.json index d3c34a557..634684b14 100644 --- a/examples/with-anthropic/package.json +++ b/examples/with-anthropic/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-auth/package.json b/examples/with-auth/package.json index 4bf4a3d1f..12ffc826c 100644 --- a/examples/with-auth/package.json +++ b/examples/with-auth/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-cerbos/package.json b/examples/with-cerbos/package.json index c8c38c4cb..26b429ff9 100644 --- a/examples/with-cerbos/package.json +++ b/examples/with-cerbos/package.json @@ -5,8 +5,8 @@ "@cerbos/grpc": "^0.23.0", "@modelcontextprotocol/sdk": "^1.12.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/core": "^2.7.6", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "express": "^5.1.0", "zod": "^3.25.76" diff --git a/examples/with-chat-sdk/package.json b/examples/with-chat-sdk/package.json index 987a32a84..86d0e2bea 100644 --- a/examples/with-chat-sdk/package.json +++ b/examples/with-chat-sdk/package.json @@ -6,7 +6,7 @@ "@chat-adapter/slack": "^4.14.0", "@chat-adapter/state-redis": "^4.14.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "ai": "^6.0.0", "chat": "^4.14.0", "next": "^16.0.7", diff --git a/examples/with-chroma/package.json b/examples/with-chroma/package.json index 52c518314..24bafd80c 100644 --- a/examples/with-chroma/package.json +++ b/examples/with-chroma/package.json @@ -6,10 +6,10 @@ "@chroma-core/ollama": "^0.1.7", "@chroma-core/openai": "^0.1.7", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "chromadb": "^3.0.4", "zod": "^3.25.76" diff --git a/examples/with-client-side-tools/package.json b/examples/with-client-side-tools/package.json index 5545c8b27..7dd11f509 100644 --- a/examples/with-client-side-tools/package.json +++ b/examples/with-client-side-tools/package.json @@ -4,8 +4,8 @@ "dependencies": { "@ai-sdk/react": "^3.0.0", "@libsql/client": "^0.15.0", - "@voltagent/core": "^2.7.5", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/core": "^2.7.6", + "@voltagent/server-hono": "^2.0.14", "@voltagent/vercel-ai": "^1.0.0", "@voltagent/vercel-ui": "^1.0.1", "ai": "^6.0.0", diff --git a/examples/with-cloudflare-workers/package.json b/examples/with-cloudflare-workers/package.json index 69e0a4b6c..2b5b3be12 100644 --- a/examples/with-cloudflare-workers/package.json +++ b/examples/with-cloudflare-workers/package.json @@ -3,8 +3,8 @@ "description": "VoltAgent example for Cloudflare Workers deployment with in-memory storage", "version": "1.0.0", "dependencies": { - "@voltagent/core": "^2.7.5", - "@voltagent/serverless-hono": "^2.0.11", + "@voltagent/core": "^2.7.6", + "@voltagent/serverless-hono": "^2.0.12", "ai": "^6.0.0", "hono": "^4.7.7", "zod": "^3.25.76" diff --git a/examples/with-composio-mcp/package.json b/examples/with-composio-mcp/package.json index 89525e855..59342eeb3 100644 --- a/examples/with-composio-mcp/package.json +++ b/examples/with-composio-mcp/package.json @@ -4,10 +4,10 @@ "version": "0.1.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-custom-endpoints/package.json b/examples/with-custom-endpoints/package.json index ab11787ca..bcf021b27 100644 --- a/examples/with-custom-endpoints/package.json +++ b/examples/with-custom-endpoints/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-dynamic-parameters/package.json b/examples/with-dynamic-parameters/package.json index 9bef07f7f..e2f145a50 100644 --- a/examples/with-dynamic-parameters/package.json +++ b/examples/with-dynamic-parameters/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-dynamic-prompts/package.json b/examples/with-dynamic-prompts/package.json index 2c08b4216..a36cee349 100644 --- a/examples/with-dynamic-prompts/package.json +++ b/examples/with-dynamic-prompts/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-feedback/package.json b/examples/with-feedback/package.json index c589c29f5..47c6f524d 100644 --- a/examples/with-feedback/package.json +++ b/examples/with-feedback/package.json @@ -3,9 +3,9 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0" }, "devDependencies": { diff --git a/examples/with-google-ai/package.json b/examples/with-google-ai/package.json index daa4187e3..dce9ea14a 100644 --- a/examples/with-google-ai/package.json +++ b/examples/with-google-ai/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-google-drive-mcp/server/package.json b/examples/with-google-drive-mcp/server/package.json index 003853a1e..cc38503fd 100644 --- a/examples/with-google-drive-mcp/server/package.json +++ b/examples/with-google-drive-mcp/server/package.json @@ -5,10 +5,10 @@ "@hono/node-server": "^1.14.0", "@libsql/client": "^0.15.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "composio-core": "^0.5.33", "hono": "^4.7.7", "zod": "^3.25.76", diff --git a/examples/with-google-vertex-ai/package.json b/examples/with-google-vertex-ai/package.json index ac2dce828..fafe1f4e9 100644 --- a/examples/with-google-vertex-ai/package.json +++ b/examples/with-google-vertex-ai/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-groq-ai/package.json b/examples/with-groq-ai/package.json index 6fb7940dd..8bfbef445 100644 --- a/examples/with-groq-ai/package.json +++ b/examples/with-groq-ai/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-guardrails/package.json b/examples/with-guardrails/package.json index 1042735ca..c16ac852a 100644 --- a/examples/with-guardrails/package.json +++ b/examples/with-guardrails/package.json @@ -3,9 +3,9 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0" }, "devDependencies": { diff --git a/examples/with-hooks/package.json b/examples/with-hooks/package.json index 8c2825bae..99f5767f3 100644 --- a/examples/with-hooks/package.json +++ b/examples/with-hooks/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-hugging-face-mcp/package.json b/examples/with-hugging-face-mcp/package.json index 4d3cc316b..68cb13c27 100644 --- a/examples/with-hugging-face-mcp/package.json +++ b/examples/with-hugging-face-mcp/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-langfuse/package.json b/examples/with-langfuse/package.json index ba0fd516a..df5bcae59 100644 --- a/examples/with-langfuse/package.json +++ b/examples/with-langfuse/package.json @@ -3,11 +3,11 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/langfuse-exporter": "^2.0.3", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-mcp-elicitation/package.json b/examples/with-mcp-elicitation/package.json index 4cf9d9ddf..60dc0d18e 100644 --- a/examples/with-mcp-elicitation/package.json +++ b/examples/with-mcp-elicitation/package.json @@ -4,10 +4,10 @@ "version": "0.1.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", "@voltagent/mcp-server": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-mcp-server/package.json b/examples/with-mcp-server/package.json index 3746691ff..b703951f9 100644 --- a/examples/with-mcp-server/package.json +++ b/examples/with-mcp-server/package.json @@ -1,10 +1,10 @@ { "name": "voltagent-example-with-mcp-server", "dependencies": { - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", "@voltagent/mcp-server": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-mcp/package.json b/examples/with-mcp/package.json index dfcdb2d78..61f732209 100644 --- a/examples/with-mcp/package.json +++ b/examples/with-mcp/package.json @@ -4,10 +4,10 @@ "version": "0.1.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-memory-rest-api/package.json b/examples/with-memory-rest-api/package.json index 9402481d8..cd71ecff4 100644 --- a/examples/with-memory-rest-api/package.json +++ b/examples/with-memory-rest-api/package.json @@ -4,10 +4,10 @@ "version": "1.0.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", "@voltagent/postgres": "^2.1.2", - "@voltagent/server-hono": "^2.0.13" + "@voltagent/server-hono": "^2.0.14" }, "devDependencies": { "@types/node": "^24.2.1", diff --git a/examples/with-middleware/package.json b/examples/with-middleware/package.json index 775194d2a..f145c278f 100644 --- a/examples/with-middleware/package.json +++ b/examples/with-middleware/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-nestjs/package.json b/examples/with-nestjs/package.json index 1ababf153..af2c38905 100644 --- a/examples/with-nestjs/package.json +++ b/examples/with-nestjs/package.json @@ -6,9 +6,9 @@ "@nestjs/common": "^11.0.0", "@nestjs/core": "^11.0.0", "@nestjs/platform-express": "^11.0.0", - "@voltagent/core": "^2.7.5", - "@voltagent/server-core": "^2.1.17", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/core": "^2.7.6", + "@voltagent/server-core": "^2.1.18", + "@voltagent/server-hono": "^2.0.14", "hono": "^4.7.7", "reflect-metadata": "^0.2.0", "rxjs": "^7.8.1", diff --git a/examples/with-netlify-functions/package.json b/examples/with-netlify-functions/package.json index 236acdf51..cbaef210e 100644 --- a/examples/with-netlify-functions/package.json +++ b/examples/with-netlify-functions/package.json @@ -3,8 +3,8 @@ "description": "VoltAgent example deployed as a Netlify Function", "version": "1.0.0", "dependencies": { - "@voltagent/core": "^2.7.5", - "@voltagent/serverless-hono": "^2.0.11", + "@voltagent/core": "^2.7.6", + "@voltagent/serverless-hono": "^2.0.12", "ai": "^6.0.0", "hono": "^4.7.7", "zod": "^3.25.76" diff --git a/examples/with-nextjs-resumable-stream/package.json b/examples/with-nextjs-resumable-stream/package.json index bc7a65b7b..09a882dcc 100644 --- a/examples/with-nextjs-resumable-stream/package.json +++ b/examples/with-nextjs-resumable-stream/package.json @@ -17,11 +17,11 @@ "@radix-ui/react-use-controllable-state": "^1.2.2", "@tavily/core": "^0.6.3", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/internal": "^1.0.3", "@voltagent/libsql": "^2.1.2", "@voltagent/resumable-streams": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "@xyflow/react": "^12.9.2", "ai": "^6.0.0", "class-variance-authority": "^0.7.1", diff --git a/examples/with-nextjs/package.json b/examples/with-nextjs/package.json index 0d33da971..e4f15387d 100644 --- a/examples/with-nextjs/package.json +++ b/examples/with-nextjs/package.json @@ -6,10 +6,10 @@ "@libsql/client": "^0.15.0", "@tailwindcss/postcss": "^4.1.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "import-in-the-middle": "^1.14.2", "next": "^16.0.7", diff --git a/examples/with-nuxt/package.json b/examples/with-nuxt/package.json index 9ee65c30b..9a59d4a8d 100644 --- a/examples/with-nuxt/package.json +++ b/examples/with-nuxt/package.json @@ -3,9 +3,9 @@ "dependencies": { "@nuxt/eslint": "^1.9.0", "@nuxt/ui": "^4.0.0", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "nuxt": "^4.1.2", "vue": "^3.5.22", diff --git a/examples/with-offline-evals/package.json b/examples/with-offline-evals/package.json index a69474abe..eab8c96ed 100644 --- a/examples/with-offline-evals/package.json +++ b/examples/with-offline-evals/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/evals": "^2.0.4", "@voltagent/scorers": "^2.1.0", "@voltagent/sdk": "^2.0.3", diff --git a/examples/with-ollama/package.json b/examples/with-ollama/package.json index ee628499f..8274e0919 100644 --- a/examples/with-ollama/package.json +++ b/examples/with-ollama/package.json @@ -2,9 +2,9 @@ "name": "voltagent-example-with-ollama", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "ollama-ai-provider-v2": "^1.5.3", "zod": "^3.25.76" diff --git a/examples/with-openrouter/package.json b/examples/with-openrouter/package.json index d5d7a73d0..0e2c6e97a 100644 --- a/examples/with-openrouter/package.json +++ b/examples/with-openrouter/package.json @@ -4,10 +4,10 @@ "dependencies": { "@openrouter/ai-sdk-provider": "^2.3.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0" }, "devDependencies": { diff --git a/examples/with-peaka-mcp/package.json b/examples/with-peaka-mcp/package.json index f8b674b19..176e51210 100644 --- a/examples/with-peaka-mcp/package.json +++ b/examples/with-peaka-mcp/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-pinecone/package.json b/examples/with-pinecone/package.json index d1efc7cd2..cadc6b65c 100644 --- a/examples/with-pinecone/package.json +++ b/examples/with-pinecone/package.json @@ -4,10 +4,10 @@ "dependencies": { "@pinecone-database/pinecone": "^6.1.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "openai": "^4.91.0", "zod": "^3.25.76" diff --git a/examples/with-planagents/package.json b/examples/with-planagents/package.json index b89bf533f..07ae83c13 100644 --- a/examples/with-planagents/package.json +++ b/examples/with-planagents/package.json @@ -5,10 +5,10 @@ "dependencies": { "@tavily/core": "^0.6.3", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-playwright/package.json b/examples/with-playwright/package.json index e7dda5408..35e8080e8 100644 --- a/examples/with-playwright/package.json +++ b/examples/with-playwright/package.json @@ -7,10 +7,10 @@ "@playwright/browser-webkit": "1.51.1", "@playwright/test": "^1.51.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "axios": "^1.5.0", "playwright": "1.51.1", diff --git a/examples/with-postgres/package.json b/examples/with-postgres/package.json index bb4914760..72d3bb908 100644 --- a/examples/with-postgres/package.json +++ b/examples/with-postgres/package.json @@ -4,10 +4,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", "@voltagent/postgres": "^2.1.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-qdrant/package.json b/examples/with-qdrant/package.json index 02d60944b..cdfbefa86 100644 --- a/examples/with-qdrant/package.json +++ b/examples/with-qdrant/package.json @@ -4,10 +4,10 @@ "dependencies": { "@qdrant/js-client-rest": "^1.15.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "openai": "^4.91.0", "zod": "^3.25.76" diff --git a/examples/with-rag-chatbot/package.json b/examples/with-rag-chatbot/package.json index 61d58a519..4ebe7ac40 100644 --- a/examples/with-rag-chatbot/package.json +++ b/examples/with-rag-chatbot/package.json @@ -4,10 +4,10 @@ "version": "0.0.1", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-recipe-generator/package.json b/examples/with-recipe-generator/package.json index 4029f8c7f..c74a18e70 100644 --- a/examples/with-recipe-generator/package.json +++ b/examples/with-recipe-generator/package.json @@ -3,9 +3,9 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-research-assistant/package.json b/examples/with-research-assistant/package.json index 30f91473d..2b9226dd5 100644 --- a/examples/with-research-assistant/package.json +++ b/examples/with-research-assistant/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "zod": "^3.25.76" }, "devDependencies": { diff --git a/examples/with-resumable-streams/package.json b/examples/with-resumable-streams/package.json index 85bd52fad..0b0f5fd66 100644 --- a/examples/with-resumable-streams/package.json +++ b/examples/with-resumable-streams/package.json @@ -4,10 +4,10 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", "@voltagent/resumable-streams": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0" }, "devDependencies": { diff --git a/examples/with-retries-fallback/package.json b/examples/with-retries-fallback/package.json index c6597a7f1..5311f86a0 100644 --- a/examples/with-retries-fallback/package.json +++ b/examples/with-retries-fallback/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-retrieval/package.json b/examples/with-retrieval/package.json index 852eae8ee..b36b2cd8c 100644 --- a/examples/with-retrieval/package.json +++ b/examples/with-retrieval/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-slack/package.json b/examples/with-slack/package.json index 21d0389ce..ab4a0c322 100644 --- a/examples/with-slack/package.json +++ b/examples/with-slack/package.json @@ -3,11 +3,11 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.3", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-subagents/package.json b/examples/with-subagents/package.json index e477f3739..1c2fa2557 100644 --- a/examples/with-subagents/package.json +++ b/examples/with-subagents/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-summarization/package.json b/examples/with-summarization/package.json index 7cd6a6c4c..28e5bc550 100644 --- a/examples/with-summarization/package.json +++ b/examples/with-summarization/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-supabase/package.json b/examples/with-supabase/package.json index e0f985d4a..c8f83f03e 100644 --- a/examples/with-supabase/package.json +++ b/examples/with-supabase/package.json @@ -4,9 +4,9 @@ "dependencies": { "@supabase/supabase-js": "^2.49.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "@voltagent/supabase": "^2.1.3", "ai": "^6.0.0", "zod": "^3.25.76" diff --git a/examples/with-tavily-search/package.json b/examples/with-tavily-search/package.json index a78892892..95df5edf6 100644 --- a/examples/with-tavily-search/package.json +++ b/examples/with-tavily-search/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-thinking-tool/package.json b/examples/with-thinking-tool/package.json index f36623de1..204e17174 100644 --- a/examples/with-thinking-tool/package.json +++ b/examples/with-thinking-tool/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-tool-routing/package.json b/examples/with-tool-routing/package.json index fc9e18398..5b3861f2e 100644 --- a/examples/with-tool-routing/package.json +++ b/examples/with-tool-routing/package.json @@ -4,9 +4,9 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-tools/package.json b/examples/with-tools/package.json index 4f83b3306..e4c8cb6d1 100644 --- a/examples/with-tools/package.json +++ b/examples/with-tools/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-turso/package.json b/examples/with-turso/package.json index 4caf4a9f0..c1ade07f2 100644 --- a/examples/with-turso/package.json +++ b/examples/with-turso/package.json @@ -4,10 +4,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-vector-search/package.json b/examples/with-vector-search/package.json index 21d07c0b7..954318c93 100644 --- a/examples/with-vector-search/package.json +++ b/examples/with-vector-search/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-vercel-ai/package.json b/examples/with-vercel-ai/package.json index dce4b4615..b29304a9d 100644 --- a/examples/with-vercel-ai/package.json +++ b/examples/with-vercel-ai/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-viteval/package.json b/examples/with-viteval/package.json index eec574ab9..7c13b5f33 100644 --- a/examples/with-viteval/package.json +++ b/examples/with-viteval/package.json @@ -3,10 +3,10 @@ "author": "VoltAgent", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "consola": "^3.4.2", "envalid": "^8.1.0", diff --git a/examples/with-voice-elevenlabs/package.json b/examples/with-voice-elevenlabs/package.json index 7d185c617..3f6a6c7e5 100644 --- a/examples/with-voice-elevenlabs/package.json +++ b/examples/with-voice-elevenlabs/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "@voltagent/voice": "^2.1.0", "ai": "^6.0.0", "zod": "^3.25.76" diff --git a/examples/with-voice-openai/package.json b/examples/with-voice-openai/package.json index d323674cc..a8aff066c 100644 --- a/examples/with-voice-openai/package.json +++ b/examples/with-voice-openai/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "@voltagent/voice": "^2.1.0", "ai": "^6.0.0", "dotenv": "^16.4.5", diff --git a/examples/with-voice-xsai/package.json b/examples/with-voice-xsai/package.json index 0af7a8665..fdc1b5cf5 100644 --- a/examples/with-voice-xsai/package.json +++ b/examples/with-voice-xsai/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "@voltagent/voice": "^2.1.0", "ai": "^6.0.0", "dotenv": "^16.4.5", diff --git a/examples/with-voltagent-actions/package.json b/examples/with-voltagent-actions/package.json index c03c68757..bf4c7cca9 100644 --- a/examples/with-voltagent-actions/package.json +++ b/examples/with-voltagent-actions/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.3", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "zod": "^3.25.76" }, "devDependencies": { diff --git a/examples/with-voltagent-exporter/package.json b/examples/with-voltagent-exporter/package.json index 06bd37cff..d76e0f849 100644 --- a/examples/with-voltagent-exporter/package.json +++ b/examples/with-voltagent-exporter/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-voltagent-managed-memory/package.json b/examples/with-voltagent-managed-memory/package.json index acae0ae5e..6f70ca1ed 100644 --- a/examples/with-voltagent-managed-memory/package.json +++ b/examples/with-voltagent-managed-memory/package.json @@ -3,9 +3,9 @@ "author": "", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "@voltagent/voltagent-memory": "^1.0.4", "ai": "^6.0.0", "zod": "^3.25.76" diff --git a/examples/with-voltops-resumable-streams/package.json b/examples/with-voltops-resumable-streams/package.json index d3a5292df..e4f0764b5 100644 --- a/examples/with-voltops-resumable-streams/package.json +++ b/examples/with-voltops-resumable-streams/package.json @@ -4,10 +4,10 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", "@voltagent/resumable-streams": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0" }, "devDependencies": { diff --git a/examples/with-voltops-retrieval/package.json b/examples/with-voltops-retrieval/package.json index dd7aa1358..a761263a7 100644 --- a/examples/with-voltops-retrieval/package.json +++ b/examples/with-voltops-retrieval/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-whatsapp/package.json b/examples/with-whatsapp/package.json index b0cbfecf8..b779633bb 100644 --- a/examples/with-whatsapp/package.json +++ b/examples/with-whatsapp/package.json @@ -4,10 +4,10 @@ "dependencies": { "@supabase/supabase-js": "^2.49.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "dotenv": "^16.4.5", "zod": "^3.25.76" diff --git a/examples/with-workflow-chain/package.json b/examples/with-workflow-chain/package.json index 91c9474a0..aa8c15966 100644 --- a/examples/with-workflow-chain/package.json +++ b/examples/with-workflow-chain/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-workflow/package.json b/examples/with-workflow/package.json index 4f4794c98..0fdd6e2ec 100644 --- a/examples/with-workflow/package.json +++ b/examples/with-workflow/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-working-memory/package.json b/examples/with-working-memory/package.json index deb9c8763..38a01e3d6 100644 --- a/examples/with-working-memory/package.json +++ b/examples/with-working-memory/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-workspace/package.json b/examples/with-workspace/package.json index 58bc482c7..e451b5e07 100644 --- a/examples/with-workspace/package.json +++ b/examples/with-workspace/package.json @@ -4,10 +4,10 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-xquik-tools/package.json b/examples/with-xquik-tools/package.json index ab430f7d1..b9e4e0dd6 100644 --- a/examples/with-xquik-tools/package.json +++ b/examples/with-xquik-tools/package.json @@ -3,9 +3,9 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-youtube-to-blog/package.json b/examples/with-youtube-to-blog/package.json index cf9e325dd..83ee7239f 100644 --- a/examples/with-youtube-to-blog/package.json +++ b/examples/with-youtube-to-blog/package.json @@ -3,10 +3,10 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-zapier-mcp/package.json b/examples/with-zapier-mcp/package.json index 17bde5cf9..c130cfb59 100644 --- a/examples/with-zapier-mcp/package.json +++ b/examples/with-zapier-mcp/package.json @@ -4,10 +4,10 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "~2.7.5", + "@voltagent/core": "~2.7.6", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", - "@voltagent/server-hono": "^2.0.13", + "@voltagent/server-hono": "^2.0.14", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index d34124be0..6a8595ea1 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,26 @@ # @voltagent/core +## 2.7.6 + +### Patch Changes + +- [#1334](https://github.com/VoltAgent/voltagent/pull/1334) [`a1b4427`](https://github.com/VoltAgent/voltagent/commit/a1b44273b06deba50379a6f8f8a06347439a525f) Thanks [@omeraplak](https://github.com/omeraplak)! - fix: prevent unhandled rejections when aborting `Agent.streamText()` streams + + ## The Problem + + `Agent.streamText()` eagerly read the AI SDK result getters for `text`, `usage`, and `finishReason` while constructing VoltAgent's wrapped result. In AI SDK v6 these fields are lazy promises, so reading them early could materialize promises that the caller never consumes. + + When a caller only consumed the UI/full stream and aborted the run, those unconsumed promises could reject globally as `unhandledRejection` events. + + ## The Solution + + VoltAgent now preserves the lazy getter behavior for `text`, `usage`, and `finishReason`. The sanitized text promise is also created only when `result.text` is accessed. + + ## Impact + - Aborting a consumed `streamText()` stream no longer emits unhandled rejections for unconsumed result fields + - Callers using only `toUIMessageStream()`, `toUIMessageStreamResponse()`, `fullStream`, or `textStream` do not need to attach defensive `.catch()` handlers to `text`, `usage`, or `finishReason` + - Matches AI SDK v6's lazy stream result contract more closely + ## 2.7.5 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index b65ffcf63..577719bf1 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@voltagent/core", "description": "VoltAgent Core - AI agent framework for JavaScript", - "version": "2.7.5", + "version": "2.7.6", "dependencies": { "@ai-sdk/amazon-bedrock": "^3.0.0", "@ai-sdk/anthropic": "^3.0.0", diff --git a/packages/e2e/package.json b/packages/e2e/package.json index 6abc3235e..e32e4ecbf 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -2,7 +2,7 @@ "name": "@voltagent/e2e", "dependencies": { "@libsql/client": "^0.15.0", - "@voltagent/core": "^2.7.5", + "@voltagent/core": "^2.7.6", "@voltagent/internal": "^1.0.3", "@voltagent/libsql": "^2.1.2", "@voltagent/postgres": "^2.1.2", diff --git a/packages/server-core/CHANGELOG.md b/packages/server-core/CHANGELOG.md index 0fd4a2883..008331d3c 100644 --- a/packages/server-core/CHANGELOG.md +++ b/packages/server-core/CHANGELOG.md @@ -1,5 +1,16 @@ # @voltagent/server-core +## 2.1.18 + +### Patch Changes + +- [#1318](https://github.com/VoltAgent/voltagent/pull/1318) [`91abbb4`](https://github.com/VoltAgent/voltagent/commit/91abbb450312d92dc3dd690c0579b5f0325370d9) Thanks [@ruanchaves](https://github.com/ruanchaves)! - Validate workflow ownership before suspend and cancel control routes act on an execution. + + Fixes #1316. + +- Updated dependencies [[`a1b4427`](https://github.com/VoltAgent/voltagent/commit/a1b44273b06deba50379a6f8f8a06347439a525f)]: + - @voltagent/core@2.7.6 + ## 2.1.17 ### Patch Changes diff --git a/packages/server-core/package.json b/packages/server-core/package.json index 841acba2a..3f80c4f9a 100644 --- a/packages/server-core/package.json +++ b/packages/server-core/package.json @@ -1,10 +1,10 @@ { "name": "@voltagent/server-core", "description": "Framework-agnostic server core for VoltAgent", - "version": "2.1.17", + "version": "2.1.18", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", - "@voltagent/core": "^2.7.3", + "@voltagent/core": "^2.7.6", "@voltagent/internal": "^1.0.2", "ai": "^6.0.0", "jsonwebtoken": "^9.0.2", diff --git a/packages/server-elysia/CHANGELOG.md b/packages/server-elysia/CHANGELOG.md index 1b7849b3c..ce6cbe4be 100644 --- a/packages/server-elysia/CHANGELOG.md +++ b/packages/server-elysia/CHANGELOG.md @@ -1,5 +1,17 @@ # @voltagent/server-elysia +## 2.0.9 + +### Patch Changes + +- [#1318](https://github.com/VoltAgent/voltagent/pull/1318) [`91abbb4`](https://github.com/VoltAgent/voltagent/commit/91abbb450312d92dc3dd690c0579b5f0325370d9) Thanks [@ruanchaves](https://github.com/ruanchaves)! - Validate workflow ownership before suspend and cancel control routes act on an execution. + + Fixes #1316. + +- Updated dependencies [[`a1b4427`](https://github.com/VoltAgent/voltagent/commit/a1b44273b06deba50379a6f8f8a06347439a525f), [`91abbb4`](https://github.com/VoltAgent/voltagent/commit/91abbb450312d92dc3dd690c0579b5f0325370d9)]: + - @voltagent/core@2.7.6 + - @voltagent/server-core@2.1.18 + ## 2.0.8 ### Patch Changes diff --git a/packages/server-elysia/package.json b/packages/server-elysia/package.json index 55c21e3ff..d7e2f3dca 100644 --- a/packages/server-elysia/package.json +++ b/packages/server-elysia/package.json @@ -1,17 +1,17 @@ { "name": "@voltagent/server-elysia", "description": "Elysia server implementation for VoltAgent", - "version": "2.0.8", + "version": "2.0.9", "dependencies": { "@elysiajs/cors": "^1.2.2", "@elysiajs/swagger": "^1.2.4", "@sinclair/typebox": "^0.34.45", "@voltagent/a2a-server": "^2.0.3", - "@voltagent/core": "^2.7.1", + "@voltagent/core": "^2.7.6", "@voltagent/internal": "^1.0.2", "@voltagent/mcp-server": "^2.0.2", "@voltagent/resumable-streams": "^2.0.1", - "@voltagent/server-core": "^2.1.14", + "@voltagent/server-core": "^2.1.18", "elysia": "^1.1.29", "zod": "^3.25.76", "zod-to-json-schema": "^3.25.1" diff --git a/packages/server-hono/CHANGELOG.md b/packages/server-hono/CHANGELOG.md index 857ae23f0..2fa119c0f 100644 --- a/packages/server-hono/CHANGELOG.md +++ b/packages/server-hono/CHANGELOG.md @@ -1,5 +1,17 @@ # @voltagent/server-hono +## 2.0.14 + +### Patch Changes + +- [#1318](https://github.com/VoltAgent/voltagent/pull/1318) [`91abbb4`](https://github.com/VoltAgent/voltagent/commit/91abbb450312d92dc3dd690c0579b5f0325370d9) Thanks [@ruanchaves](https://github.com/ruanchaves)! - Validate workflow ownership before suspend and cancel control routes act on an execution. + + Fixes #1316. + +- Updated dependencies [[`a1b4427`](https://github.com/VoltAgent/voltagent/commit/a1b44273b06deba50379a6f8f8a06347439a525f), [`91abbb4`](https://github.com/VoltAgent/voltagent/commit/91abbb450312d92dc3dd690c0579b5f0325370d9)]: + - @voltagent/core@2.7.6 + - @voltagent/server-core@2.1.18 + ## 2.0.13 ### Patch Changes diff --git a/packages/server-hono/package.json b/packages/server-hono/package.json index c0027e0d1..bd4cd9797 100644 --- a/packages/server-hono/package.json +++ b/packages/server-hono/package.json @@ -1,16 +1,16 @@ { "name": "@voltagent/server-hono", "description": "Hono server implementation for VoltAgent", - "version": "2.0.13", + "version": "2.0.14", "dependencies": { "@hono/node-server": "^1.14.0", "@hono/swagger-ui": "^0.5.1", "@voltagent/a2a-server": "^2.0.3", - "@voltagent/core": "^2.7.3", + "@voltagent/core": "^2.7.6", "@voltagent/internal": "^1.0.2", "@voltagent/mcp-server": "^2.0.2", "@voltagent/resumable-streams": "^2.0.1", - "@voltagent/server-core": "^2.1.16", + "@voltagent/server-core": "^2.1.18", "fetch-to-node": "^2.1.0", "hono": "^4.7.7", "openapi3-ts": "^4.5.0" diff --git a/packages/serverless-hono/CHANGELOG.md b/packages/serverless-hono/CHANGELOG.md index 6e2725cba..e06d66a06 100644 --- a/packages/serverless-hono/CHANGELOG.md +++ b/packages/serverless-hono/CHANGELOG.md @@ -1,5 +1,16 @@ # @voltagent/serverless-hono +## 2.0.12 + +### Patch Changes + +- [#1318](https://github.com/VoltAgent/voltagent/pull/1318) [`91abbb4`](https://github.com/VoltAgent/voltagent/commit/91abbb450312d92dc3dd690c0579b5f0325370d9) Thanks [@ruanchaves](https://github.com/ruanchaves)! - Validate workflow ownership before suspend and cancel control routes act on an execution. + + Fixes #1316. + +- Updated dependencies [[`91abbb4`](https://github.com/VoltAgent/voltagent/commit/91abbb450312d92dc3dd690c0579b5f0325370d9)]: + - @voltagent/server-core@2.1.18 + ## 2.0.11 ### Patch Changes diff --git a/packages/serverless-hono/package.json b/packages/serverless-hono/package.json index 036f6c487..2188c9767 100644 --- a/packages/serverless-hono/package.json +++ b/packages/serverless-hono/package.json @@ -1,11 +1,11 @@ { "name": "@voltagent/serverless-hono", "description": "Serverless (fetch-based) runtime provider for VoltAgent using Hono", - "version": "2.0.11", + "version": "2.0.12", "dependencies": { "@voltagent/internal": "^1.0.2", "@voltagent/resumable-streams": "^2.0.1", - "@voltagent/server-core": "^2.1.14", + "@voltagent/server-core": "^2.1.18", "hono": "^4.7.7" }, "devDependencies": {}, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fdc45c581..06d102ee5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -117,7 +117,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -126,7 +126,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -154,7 +154,7 @@ importers: specifier: ^21.0.0 version: 21.1.1 '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -163,7 +163,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -191,16 +191,16 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono '@voltagent/serverless-hono': - specifier: ^2.0.11 + specifier: ^2.0.12 version: link:../../packages/serverless-hono dotenv: specifier: ^16.4.5 @@ -267,13 +267,13 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 version: link:../../packages/libsql '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono '@xyflow/react': specifier: ^12.9.2 @@ -388,7 +388,7 @@ importers: specifier: ^2.0.3 version: link:../../packages/a2a-server '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.3 @@ -397,7 +397,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -477,7 +477,7 @@ importers: examples/with-agent-tool: dependencies: '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core ai: specifier: ^6.0.0 @@ -502,7 +502,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.3 @@ -514,7 +514,7 @@ importers: specifier: ^2.0.3 version: link:../../packages/sdk '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -539,7 +539,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -548,7 +548,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -573,7 +573,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -582,7 +582,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -716,7 +716,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -725,7 +725,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -756,10 +756,10 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -793,7 +793,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core ai: specifier: ^6.0.0 @@ -842,7 +842,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -851,7 +851,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -882,10 +882,10 @@ importers: specifier: ^0.15.0 version: 0.15.10 '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono '@voltagent/vercel-ai': specifier: ^1.0.0 @@ -928,10 +928,10 @@ importers: examples/with-cloudflare-workers: dependencies: '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/serverless-hono': - specifier: ^2.0.11 + specifier: ^2.0.12 version: link:../../packages/serverless-hono ai: specifier: ^6.0.0 @@ -962,7 +962,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -971,7 +971,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1058,7 +1058,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1067,7 +1067,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1092,7 +1092,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1101,7 +1101,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1126,7 +1126,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1135,7 +1135,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1160,13 +1160,13 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1188,7 +1188,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1197,7 +1197,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1271,7 +1271,7 @@ importers: specifier: ^0.1.21 version: link:../../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1280,7 +1280,7 @@ importers: specifier: ^2.0.2 version: link:../../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../../packages/server-hono composio-core: specifier: ^0.5.33 @@ -1311,7 +1311,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1320,7 +1320,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1345,7 +1345,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1354,7 +1354,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1379,13 +1379,13 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1407,7 +1407,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1416,7 +1416,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1441,7 +1441,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1450,7 +1450,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1549,7 +1549,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/langfuse-exporter': specifier: ^2.0.3 @@ -1561,7 +1561,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1611,7 +1611,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1620,7 +1620,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1645,7 +1645,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1654,7 +1654,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/mcp-server '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1676,7 +1676,7 @@ importers: examples/with-mcp-server: dependencies: '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1685,7 +1685,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/mcp-server '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1710,7 +1710,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1719,7 +1719,7 @@ importers: specifier: ^2.1.2 version: link:../../packages/postgres '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono devDependencies: '@types/node': @@ -1741,7 +1741,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1750,7 +1750,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1781,13 +1781,13 @@ importers: specifier: ^11.0.0 version: 11.1.7(@nestjs/common@11.1.7)(@nestjs/core@11.1.7) '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/server-core': - specifier: ^2.1.17 + specifier: ^2.1.18 version: link:../../packages/server-core '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono hono: specifier: ^4.7.7 @@ -1827,10 +1827,10 @@ importers: examples/with-netlify-functions: dependencies: '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/serverless-hono': - specifier: ^2.0.11 + specifier: ^2.0.12 version: link:../../packages/serverless-hono ai: specifier: ^6.0.0 @@ -1867,7 +1867,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1876,7 +1876,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -1973,7 +1973,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.3 @@ -1985,7 +1985,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/resumable-streams '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono '@xyflow/react': specifier: ^12.9.2 @@ -2091,13 +2091,13 @@ importers: specifier: ^4.0.0 version: 4.0.1(embla-carousel@8.6.0)(typescript@5.9.3)(vite@7.2.7)(vue-router@4.5.1)(vue@3.5.22)(zod@3.25.76) '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 version: link:../../packages/libsql '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2125,7 +2125,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/evals': specifier: ^2.0.4 @@ -2159,13 +2159,13 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2196,7 +2196,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2205,7 +2205,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2227,7 +2227,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2236,7 +2236,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2264,7 +2264,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2273,7 +2273,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2304,7 +2304,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2313,7 +2313,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2350,7 +2350,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2359,7 +2359,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2396,7 +2396,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2405,7 +2405,7 @@ importers: specifier: ^2.1.2 version: link:../../packages/postgres '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2433,7 +2433,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2442,7 +2442,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2470,7 +2470,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2479,7 +2479,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2504,13 +2504,13 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2535,7 +2535,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2544,7 +2544,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono zod: specifier: ^3.25.76 @@ -2563,7 +2563,7 @@ importers: examples/with-resumable-streams: dependencies: '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2572,7 +2572,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/resumable-streams '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2597,7 +2597,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2606,7 +2606,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2631,7 +2631,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2640,7 +2640,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2665,7 +2665,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2677,7 +2677,7 @@ importers: specifier: ^2.0.3 version: link:../../packages/sdk '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2705,7 +2705,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2714,7 +2714,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2742,7 +2742,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2751,7 +2751,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2779,13 +2779,13 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono '@voltagent/supabase': specifier: ^2.1.3 @@ -2813,7 +2813,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2822,7 +2822,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2847,7 +2847,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2856,7 +2856,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2884,13 +2884,13 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2918,7 +2918,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2927,7 +2927,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2952,7 +2952,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2961,7 +2961,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -2989,7 +2989,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2998,7 +2998,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3023,7 +3023,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3032,7 +3032,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3057,7 +3057,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3066,7 +3066,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3109,7 +3109,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3118,7 +3118,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono '@voltagent/voice': specifier: ^2.1.0 @@ -3146,7 +3146,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3155,7 +3155,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono '@voltagent/voice': specifier: ^2.1.0 @@ -3189,7 +3189,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3198,7 +3198,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono '@voltagent/voice': specifier: ^2.1.0 @@ -3232,7 +3232,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3241,7 +3241,7 @@ importers: specifier: ^2.0.3 version: link:../../packages/sdk '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono zod: specifier: ^3.25.76 @@ -3263,7 +3263,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3272,7 +3272,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3297,13 +3297,13 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@3.25.76) '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono '@voltagent/voltagent-memory': specifier: ^1.0.4 @@ -3328,7 +3328,7 @@ importers: examples/with-voltops-resumable-streams: dependencies: '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3337,7 +3337,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/resumable-streams '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3359,7 +3359,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3368,7 +3368,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3396,7 +3396,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3405,7 +3405,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3433,7 +3433,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3442,7 +3442,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3467,7 +3467,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3476,7 +3476,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3501,7 +3501,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3510,7 +3510,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3538,7 +3538,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3547,7 +3547,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3572,13 +3572,13 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3603,7 +3603,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3612,7 +3612,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -3634,7 +3634,7 @@ importers: examples/with-zapier-mcp: dependencies: '@voltagent/core': - specifier: ~2.7.5 + specifier: ~2.7.6 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3643,7 +3643,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/logger '@voltagent/server-hono': - specifier: ^2.0.13 + specifier: ^2.0.14 version: link:../../packages/server-hono ai: specifier: ^6.0.0 @@ -4085,7 +4085,7 @@ importers: specifier: ^0.15.0 version: 0.15.10 '@voltagent/core': - specifier: ^2.7.5 + specifier: ^2.7.6 version: link:../core '@voltagent/internal': specifier: ^1.0.3 @@ -4374,7 +4374,7 @@ importers: specifier: ^1.12.1 version: 1.17.2 '@voltagent/core': - specifier: ^2.7.3 + specifier: ^2.7.6 version: link:../core '@voltagent/internal': specifier: ^1.0.2 @@ -4420,7 +4420,7 @@ importers: specifier: ^2.0.3 version: link:../a2a-server '@voltagent/core': - specifier: ^2.7.1 + specifier: ^2.7.6 version: link:../core '@voltagent/internal': specifier: ^1.0.2 @@ -4432,7 +4432,7 @@ importers: specifier: ^2.0.1 version: link:../resumable-streams '@voltagent/server-core': - specifier: ^2.1.14 + specifier: ^2.1.18 version: link:../server-core elysia: specifier: ^1.1.29 @@ -4460,7 +4460,7 @@ importers: specifier: ^2.0.3 version: link:../a2a-server '@voltagent/core': - specifier: ^2.7.3 + specifier: ^2.7.6 version: link:../core '@voltagent/internal': specifier: ^1.0.2 @@ -4472,7 +4472,7 @@ importers: specifier: ^2.0.1 version: link:../resumable-streams '@voltagent/server-core': - specifier: ^2.1.16 + specifier: ^2.1.18 version: link:../server-core fetch-to-node: specifier: ^2.1.0 @@ -4503,7 +4503,7 @@ importers: specifier: ^2.0.1 version: link:../resumable-streams '@voltagent/server-core': - specifier: ^2.1.14 + specifier: ^2.1.18 version: link:../server-core hono: specifier: ^4.7.7 @@ -15401,8 +15401,8 @@ packages: dev: false optional: true - /@oxc-project/types@0.132.0: - resolution: {integrity: sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==} + /@oxc-project/types@0.133.0: + resolution: {integrity: sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==} dev: true /@oxc-project/types@0.94.0: @@ -17614,8 +17614,8 @@ packages: /@repeaterjs/repeater@3.0.6: resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==} - /@rolldown/binding-android-arm64@1.0.2: - resolution: {integrity: sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==} + /@rolldown/binding-android-arm64@1.0.3: + resolution: {integrity: sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] @@ -17623,8 +17623,8 @@ packages: dev: true optional: true - /@rolldown/binding-darwin-arm64@1.0.2: - resolution: {integrity: sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==} + /@rolldown/binding-darwin-arm64@1.0.3: + resolution: {integrity: sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] @@ -17632,8 +17632,8 @@ packages: dev: true optional: true - /@rolldown/binding-darwin-x64@1.0.2: - resolution: {integrity: sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==} + /@rolldown/binding-darwin-x64@1.0.3: + resolution: {integrity: sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] @@ -17641,8 +17641,8 @@ packages: dev: true optional: true - /@rolldown/binding-freebsd-x64@1.0.2: - resolution: {integrity: sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==} + /@rolldown/binding-freebsd-x64@1.0.3: + resolution: {integrity: sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] @@ -17650,8 +17650,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-arm-gnueabihf@1.0.2: - resolution: {integrity: sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==} + /@rolldown/binding-linux-arm-gnueabihf@1.0.3: + resolution: {integrity: sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] @@ -17659,8 +17659,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-arm64-gnu@1.0.2: - resolution: {integrity: sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==} + /@rolldown/binding-linux-arm64-gnu@1.0.3: + resolution: {integrity: sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] @@ -17668,8 +17668,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-arm64-musl@1.0.2: - resolution: {integrity: sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==} + /@rolldown/binding-linux-arm64-musl@1.0.3: + resolution: {integrity: sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] @@ -17677,8 +17677,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-ppc64-gnu@1.0.2: - resolution: {integrity: sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==} + /@rolldown/binding-linux-ppc64-gnu@1.0.3: + resolution: {integrity: sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] @@ -17686,8 +17686,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-s390x-gnu@1.0.2: - resolution: {integrity: sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==} + /@rolldown/binding-linux-s390x-gnu@1.0.3: + resolution: {integrity: sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] @@ -17695,8 +17695,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-x64-gnu@1.0.2: - resolution: {integrity: sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==} + /@rolldown/binding-linux-x64-gnu@1.0.3: + resolution: {integrity: sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] @@ -17704,8 +17704,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-x64-musl@1.0.2: - resolution: {integrity: sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==} + /@rolldown/binding-linux-x64-musl@1.0.3: + resolution: {integrity: sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] @@ -17713,8 +17713,8 @@ packages: dev: true optional: true - /@rolldown/binding-openharmony-arm64@1.0.2: - resolution: {integrity: sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==} + /@rolldown/binding-openharmony-arm64@1.0.3: + resolution: {integrity: sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] @@ -17722,8 +17722,8 @@ packages: dev: true optional: true - /@rolldown/binding-wasm32-wasi@1.0.2: - resolution: {integrity: sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==} + /@rolldown/binding-wasm32-wasi@1.0.3: + resolution: {integrity: sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] requiresBuild: true @@ -17734,8 +17734,8 @@ packages: dev: true optional: true - /@rolldown/binding-win32-arm64-msvc@1.0.2: - resolution: {integrity: sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==} + /@rolldown/binding-win32-arm64-msvc@1.0.3: + resolution: {integrity: sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] @@ -17743,8 +17743,8 @@ packages: dev: true optional: true - /@rolldown/binding-win32-x64-msvc@1.0.2: - resolution: {integrity: sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==} + /@rolldown/binding-win32-x64-msvc@1.0.3: + resolution: {integrity: sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] @@ -37557,7 +37557,7 @@ packages: resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} dev: false - /rolldown-plugin-dts@0.16.11(rolldown@1.0.2)(typescript@5.9.2): + /rolldown-plugin-dts@0.16.11(rolldown@1.0.3)(typescript@5.9.2): resolution: {integrity: sha512-9IQDaPvPqTx3RjG2eQCK5GYZITo203BxKunGI80AGYicu1ySFTUyugicAaTZWRzFWh9DSnzkgNeMNbDWBbSs0w==} engines: {node: '>=20.18.0'} peerDependencies: @@ -37585,36 +37585,36 @@ packages: dts-resolver: 2.1.2 get-tsconfig: 4.10.1 magic-string: 0.30.19 - rolldown: 1.0.2 + rolldown: 1.0.3 typescript: 5.9.2 transitivePeerDependencies: - oxc-resolver - supports-color dev: true - /rolldown@1.0.2: - resolution: {integrity: sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==} + /rolldown@1.0.3: + resolution: {integrity: sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true dependencies: - '@oxc-project/types': 0.132.0 + '@oxc-project/types': 0.133.0 '@rolldown/pluginutils': 1.0.0 optionalDependencies: - '@rolldown/binding-android-arm64': 1.0.2 - '@rolldown/binding-darwin-arm64': 1.0.2 - '@rolldown/binding-darwin-x64': 1.0.2 - '@rolldown/binding-freebsd-x64': 1.0.2 - '@rolldown/binding-linux-arm-gnueabihf': 1.0.2 - '@rolldown/binding-linux-arm64-gnu': 1.0.2 - '@rolldown/binding-linux-arm64-musl': 1.0.2 - '@rolldown/binding-linux-ppc64-gnu': 1.0.2 - '@rolldown/binding-linux-s390x-gnu': 1.0.2 - '@rolldown/binding-linux-x64-gnu': 1.0.2 - '@rolldown/binding-linux-x64-musl': 1.0.2 - '@rolldown/binding-openharmony-arm64': 1.0.2 - '@rolldown/binding-wasm32-wasi': 1.0.2 - '@rolldown/binding-win32-arm64-msvc': 1.0.2 - '@rolldown/binding-win32-x64-msvc': 1.0.2 + '@rolldown/binding-android-arm64': 1.0.3 + '@rolldown/binding-darwin-arm64': 1.0.3 + '@rolldown/binding-darwin-x64': 1.0.3 + '@rolldown/binding-freebsd-x64': 1.0.3 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.3 + '@rolldown/binding-linux-arm64-gnu': 1.0.3 + '@rolldown/binding-linux-arm64-musl': 1.0.3 + '@rolldown/binding-linux-ppc64-gnu': 1.0.3 + '@rolldown/binding-linux-s390x-gnu': 1.0.3 + '@rolldown/binding-linux-x64-gnu': 1.0.3 + '@rolldown/binding-linux-x64-musl': 1.0.3 + '@rolldown/binding-openharmony-arm64': 1.0.3 + '@rolldown/binding-wasm32-wasi': 1.0.3 + '@rolldown/binding-win32-arm64-msvc': 1.0.3 + '@rolldown/binding-win32-x64-msvc': 1.0.3 dev: true /rollup-plugin-inject@3.0.2: @@ -39801,8 +39801,8 @@ packages: empathic: 2.0.0 hookable: 5.5.3 publint: 0.3.12 - rolldown: 1.0.2 - rolldown-plugin-dts: 0.16.11(rolldown@1.0.2)(typescript@5.9.2) + rolldown: 1.0.3 + rolldown-plugin-dts: 0.16.11(rolldown@1.0.3)(typescript@5.9.2) semver: 7.7.2 tinyexec: 1.0.1 tinyglobby: 0.2.15