diff --git a/.changeset/honor-retry-after-header.md b/.changeset/honor-retry-after-header.md deleted file mode 100644 index 0fa2fec3a..000000000 --- a/.changeset/honor-retry-after-header.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@voltagent/core": patch ---- - -Honor the provider's `Retry-After` header on retried model calls. The retry loop in `executeWithModelFallback` previously always used local exponential backoff capped at 10 seconds, regardless of what the server asked for; this caused concurrent agents under shared 429/503 contention to converge their retry windows. The delay now uses `Retry-After` (delta-seconds or HTTP-date, RFC 7231) as a floor, keeps the exponential floor as a backpressure baseline, and caps at 5 minutes for safety. diff --git a/examples/base/package.json b/examples/base/package.json index dcb309c9d..0f60512b8 100644 --- a/examples/base/package.json +++ b/examples/base/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/github-repo-analyzer/package.json b/examples/github-repo-analyzer/package.json index 476cdbf9d..adf0d1dbb 100644 --- a/examples/github-repo-analyzer/package.json +++ b/examples/github-repo-analyzer/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@octokit/rest": "^21.0.0", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/github-star-stories/package.json b/examples/github-star-stories/package.json index 9c217ec12..09d106b67 100644 --- a/examples/github-star-stories/package.json +++ b/examples/github-star-stories/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", "@voltagent/serverless-hono": "^2.0.11", diff --git a/examples/next-js-chatbot-starter-template/package.json b/examples/next-js-chatbot-starter-template/package.json index 9e7a8401d..30cafe621 100644 --- a/examples/next-js-chatbot-starter-template/package.json +++ b/examples/next-js-chatbot-starter-template/package.json @@ -16,7 +16,7 @@ "@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.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/server-hono": "^2.0.13", "@xyflow/react": "^12.9.2", diff --git a/examples/with-a2a-server/package.json b/examples/with-a2a-server/package.json index 466581e04..c668a2f17 100644 --- a/examples/with-a2a-server/package.json +++ b/examples/with-a2a-server/package.json @@ -2,7 +2,7 @@ "name": "voltagent-example-with-a2a-server", "dependencies": { "@voltagent/a2a-server": "^2.0.3", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/internal": "^1.0.3", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-agent-tool/package.json b/examples/with-agent-tool/package.json index aae6c5057..146e719e0 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.4", + "@voltagent/core": "^2.7.5", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-airtable/package.json b/examples/with-airtable/package.json index 82787afc6..bfd4eb564 100644 --- a/examples/with-airtable/package.json +++ b/examples/with-airtable/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/internal": "^1.0.3", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.3", diff --git a/examples/with-amazon-bedrock/package.json b/examples/with-amazon-bedrock/package.json index c68a85366..c6110d93b 100644 --- a/examples/with-amazon-bedrock/package.json +++ b/examples/with-amazon-bedrock/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-anthropic/package.json b/examples/with-anthropic/package.json index b1d91caab..d3c34a557 100644 --- a/examples/with-anthropic/package.json +++ b/examples/with-anthropic/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-auth/package.json b/examples/with-auth/package.json index 533e1b006..4bf4a3d1f 100644 --- a/examples/with-auth/package.json +++ b/examples/with-auth/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-cerbos/package.json b/examples/with-cerbos/package.json index d12a8face..c8c38c4cb 100644 --- a/examples/with-cerbos/package.json +++ b/examples/with-cerbos/package.json @@ -5,7 +5,7 @@ "@cerbos/grpc": "^0.23.0", "@modelcontextprotocol/sdk": "^1.12.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/server-hono": "^2.0.13", "ai": "^6.0.0", "express": "^5.1.0", diff --git a/examples/with-chat-sdk/package.json b/examples/with-chat-sdk/package.json index 2946de969..987a32a84 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.4", + "@voltagent/core": "^2.7.5", "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 1009d50ab..52c518314 100644 --- a/examples/with-chroma/package.json +++ b/examples/with-chroma/package.json @@ -6,7 +6,7 @@ "@chroma-core/ollama": "^0.1.7", "@chroma-core/openai": "^0.1.7", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-client-side-tools/package.json b/examples/with-client-side-tools/package.json index 046a0c93c..5545c8b27 100644 --- a/examples/with-client-side-tools/package.json +++ b/examples/with-client-side-tools/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/react": "^3.0.0", "@libsql/client": "^0.15.0", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/server-hono": "^2.0.13", "@voltagent/vercel-ai": "^1.0.0", "@voltagent/vercel-ui": "^1.0.1", diff --git a/examples/with-cloudflare-workers/package.json b/examples/with-cloudflare-workers/package.json index 1ea80bc74..69e0a4b6c 100644 --- a/examples/with-cloudflare-workers/package.json +++ b/examples/with-cloudflare-workers/package.json @@ -3,7 +3,7 @@ "description": "VoltAgent example for Cloudflare Workers deployment with in-memory storage", "version": "1.0.0", "dependencies": { - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/serverless-hono": "^2.0.11", "ai": "^6.0.0", "hono": "^4.7.7", diff --git a/examples/with-composio-mcp/package.json b/examples/with-composio-mcp/package.json index c2b12c12e..89525e855 100644 --- a/examples/with-composio-mcp/package.json +++ b/examples/with-composio-mcp/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-custom-endpoints/package.json b/examples/with-custom-endpoints/package.json index 9ba8e4c50..ab11787ca 100644 --- a/examples/with-custom-endpoints/package.json +++ b/examples/with-custom-endpoints/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-dynamic-parameters/package.json b/examples/with-dynamic-parameters/package.json index 134026fb9..9bef07f7f 100644 --- a/examples/with-dynamic-parameters/package.json +++ b/examples/with-dynamic-parameters/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-dynamic-prompts/package.json b/examples/with-dynamic-prompts/package.json index 6037f0245..2c08b4216 100644 --- a/examples/with-dynamic-prompts/package.json +++ b/examples/with-dynamic-prompts/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-feedback/package.json b/examples/with-feedback/package.json index 4841540f7..c589c29f5 100644 --- a/examples/with-feedback/package.json +++ b/examples/with-feedback/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", "ai": "^6.0.0" diff --git a/examples/with-google-ai/package.json b/examples/with-google-ai/package.json index 129394c39..daa4187e3 100644 --- a/examples/with-google-ai/package.json +++ b/examples/with-google-ai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-google-drive-mcp/server/package.json b/examples/with-google-drive-mcp/server/package.json index 14d7eece3..003853a1e 100644 --- a/examples/with-google-drive-mcp/server/package.json +++ b/examples/with-google-drive-mcp/server/package.json @@ -5,7 +5,7 @@ "@hono/node-server": "^1.14.0", "@libsql/client": "^0.15.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-google-vertex-ai/package.json b/examples/with-google-vertex-ai/package.json index 5b7557c93..ac2dce828 100644 --- a/examples/with-google-vertex-ai/package.json +++ b/examples/with-google-vertex-ai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-groq-ai/package.json b/examples/with-groq-ai/package.json index 5becc00ea..6fb7940dd 100644 --- a/examples/with-groq-ai/package.json +++ b/examples/with-groq-ai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-guardrails/package.json b/examples/with-guardrails/package.json index c0023bda5..1042735ca 100644 --- a/examples/with-guardrails/package.json +++ b/examples/with-guardrails/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", "ai": "^6.0.0" diff --git a/examples/with-hooks/package.json b/examples/with-hooks/package.json index 55806ecc5..8c2825bae 100644 --- a/examples/with-hooks/package.json +++ b/examples/with-hooks/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-hugging-face-mcp/package.json b/examples/with-hugging-face-mcp/package.json index 79330b672..4d3cc316b 100644 --- a/examples/with-hugging-face-mcp/package.json +++ b/examples/with-hugging-face-mcp/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-langfuse/package.json b/examples/with-langfuse/package.json index 456502cd0..ba0fd516a 100644 --- a/examples/with-langfuse/package.json +++ b/examples/with-langfuse/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/langfuse-exporter": "^2.0.3", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", diff --git a/examples/with-mcp-elicitation/package.json b/examples/with-mcp-elicitation/package.json index c14162e8b..4cf9d9ddf 100644 --- a/examples/with-mcp-elicitation/package.json +++ b/examples/with-mcp-elicitation/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/mcp-server": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-mcp-server/package.json b/examples/with-mcp-server/package.json index 68e4c1c44..3746691ff 100644 --- a/examples/with-mcp-server/package.json +++ b/examples/with-mcp-server/package.json @@ -1,7 +1,7 @@ { "name": "voltagent-example-with-mcp-server", "dependencies": { - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/mcp-server": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-mcp/package.json b/examples/with-mcp/package.json index b00579aff..dfcdb2d78 100644 --- a/examples/with-mcp/package.json +++ b/examples/with-mcp/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-memory-rest-api/package.json b/examples/with-memory-rest-api/package.json index 67be94bc9..9402481d8 100644 --- a/examples/with-memory-rest-api/package.json +++ b/examples/with-memory-rest-api/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/postgres": "^2.1.2", "@voltagent/server-hono": "^2.0.13" diff --git a/examples/with-middleware/package.json b/examples/with-middleware/package.json index 2d4313ce4..775194d2a 100644 --- a/examples/with-middleware/package.json +++ b/examples/with-middleware/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-nestjs/package.json b/examples/with-nestjs/package.json index d4fccc0a5..ca2a56ff0 100644 --- a/examples/with-nestjs/package.json +++ b/examples/with-nestjs/package.json @@ -6,7 +6,7 @@ "@nestjs/common": "^11.0.0", "@nestjs/core": "^11.0.0", "@nestjs/platform-express": "^11.0.0", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/server-core": "^2.1.16", "@voltagent/server-hono": "^2.0.13", "hono": "^4.7.7", diff --git a/examples/with-netlify-functions/package.json b/examples/with-netlify-functions/package.json index 5c91eccde..236acdf51 100644 --- a/examples/with-netlify-functions/package.json +++ b/examples/with-netlify-functions/package.json @@ -3,7 +3,7 @@ "description": "VoltAgent example deployed as a Netlify Function", "version": "1.0.0", "dependencies": { - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/serverless-hono": "^2.0.11", "ai": "^6.0.0", "hono": "^4.7.7", diff --git a/examples/with-nextjs-resumable-stream/package.json b/examples/with-nextjs-resumable-stream/package.json index 3889408f1..bc7a65b7b 100644 --- a/examples/with-nextjs-resumable-stream/package.json +++ b/examples/with-nextjs-resumable-stream/package.json @@ -17,7 +17,7 @@ "@radix-ui/react-use-controllable-state": "^1.2.2", "@tavily/core": "^0.6.3", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/internal": "^1.0.3", "@voltagent/libsql": "^2.1.2", "@voltagent/resumable-streams": "^2.0.2", diff --git a/examples/with-nextjs/package.json b/examples/with-nextjs/package.json index 3590d95bd..0d33da971 100644 --- a/examples/with-nextjs/package.json +++ b/examples/with-nextjs/package.json @@ -6,7 +6,7 @@ "@libsql/client": "^0.15.0", "@tailwindcss/postcss": "^4.1.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-nuxt/package.json b/examples/with-nuxt/package.json index 1c6b3a466..9ee65c30b 100644 --- a/examples/with-nuxt/package.json +++ b/examples/with-nuxt/package.json @@ -3,7 +3,7 @@ "dependencies": { "@nuxt/eslint": "^1.9.0", "@nuxt/ui": "^4.0.0", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/server-hono": "^2.0.13", "ai": "^6.0.0", diff --git a/examples/with-offline-evals/package.json b/examples/with-offline-evals/package.json index 60a42ac0b..a69474abe 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.4", + "@voltagent/core": "^2.7.5", "@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 0268bac1e..ee628499f 100644 --- a/examples/with-ollama/package.json +++ b/examples/with-ollama/package.json @@ -2,7 +2,7 @@ "name": "voltagent-example-with-ollama", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", "ai": "^6.0.0", diff --git a/examples/with-openrouter/package.json b/examples/with-openrouter/package.json index a5404129d..d5d7a73d0 100644 --- a/examples/with-openrouter/package.json +++ b/examples/with-openrouter/package.json @@ -4,7 +4,7 @@ "dependencies": { "@openrouter/ai-sdk-provider": "^2.3.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-peaka-mcp/package.json b/examples/with-peaka-mcp/package.json index df0514bb1..f8b674b19 100644 --- a/examples/with-peaka-mcp/package.json +++ b/examples/with-peaka-mcp/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-pinecone/package.json b/examples/with-pinecone/package.json index 7d7857571..d1efc7cd2 100644 --- a/examples/with-pinecone/package.json +++ b/examples/with-pinecone/package.json @@ -4,7 +4,7 @@ "dependencies": { "@pinecone-database/pinecone": "^6.1.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-planagents/package.json b/examples/with-planagents/package.json index f4d553dc2..b89bf533f 100644 --- a/examples/with-planagents/package.json +++ b/examples/with-planagents/package.json @@ -5,7 +5,7 @@ "dependencies": { "@tavily/core": "^0.6.3", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-playwright/package.json b/examples/with-playwright/package.json index 4518f6b21..e7dda5408 100644 --- a/examples/with-playwright/package.json +++ b/examples/with-playwright/package.json @@ -7,7 +7,7 @@ "@playwright/browser-webkit": "1.51.1", "@playwright/test": "^1.51.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-postgres/package.json b/examples/with-postgres/package.json index 7e441488b..bb4914760 100644 --- a/examples/with-postgres/package.json +++ b/examples/with-postgres/package.json @@ -4,7 +4,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/postgres": "^2.1.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-qdrant/package.json b/examples/with-qdrant/package.json index 4842a9306..02d60944b 100644 --- a/examples/with-qdrant/package.json +++ b/examples/with-qdrant/package.json @@ -4,7 +4,7 @@ "dependencies": { "@qdrant/js-client-rest": "^1.15.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-rag-chatbot/package.json b/examples/with-rag-chatbot/package.json index 621767d97..61d58a519 100644 --- a/examples/with-rag-chatbot/package.json +++ b/examples/with-rag-chatbot/package.json @@ -4,7 +4,7 @@ "version": "0.0.1", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-recipe-generator/package.json b/examples/with-recipe-generator/package.json index 77e3aab89..4029f8c7f 100644 --- a/examples/with-recipe-generator/package.json +++ b/examples/with-recipe-generator/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", "ai": "^6.0.0", diff --git a/examples/with-research-assistant/package.json b/examples/with-research-assistant/package.json index 14fd6ce37..30f91473d 100644 --- a/examples/with-research-assistant/package.json +++ b/examples/with-research-assistant/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-resumable-streams/package.json b/examples/with-resumable-streams/package.json index 1069b88f1..85bd52fad 100644 --- a/examples/with-resumable-streams/package.json +++ b/examples/with-resumable-streams/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/resumable-streams": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-retries-fallback/package.json b/examples/with-retries-fallback/package.json index 5543542ca..c6597a7f1 100644 --- a/examples/with-retries-fallback/package.json +++ b/examples/with-retries-fallback/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-retrieval/package.json b/examples/with-retrieval/package.json index 35a3d7514..852eae8ee 100644 --- a/examples/with-retrieval/package.json +++ b/examples/with-retrieval/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-slack/package.json b/examples/with-slack/package.json index 8f3f2bf42..21d0389ce 100644 --- a/examples/with-slack/package.json +++ b/examples/with-slack/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.3", diff --git a/examples/with-subagents/package.json b/examples/with-subagents/package.json index 0f1924cb0..e477f3739 100644 --- a/examples/with-subagents/package.json +++ b/examples/with-subagents/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-summarization/package.json b/examples/with-summarization/package.json index 73f6c07f8..7cd6a6c4c 100644 --- a/examples/with-summarization/package.json +++ b/examples/with-summarization/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-supabase/package.json b/examples/with-supabase/package.json index 00d76a1a1..e0f985d4a 100644 --- a/examples/with-supabase/package.json +++ b/examples/with-supabase/package.json @@ -4,7 +4,7 @@ "dependencies": { "@supabase/supabase-js": "^2.49.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", "@voltagent/supabase": "^2.1.3", diff --git a/examples/with-tavily-search/package.json b/examples/with-tavily-search/package.json index 38bc58095..a78892892 100644 --- a/examples/with-tavily-search/package.json +++ b/examples/with-tavily-search/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-thinking-tool/package.json b/examples/with-thinking-tool/package.json index 0e2b7d447..f36623de1 100644 --- a/examples/with-thinking-tool/package.json +++ b/examples/with-thinking-tool/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-tool-routing/package.json b/examples/with-tool-routing/package.json index 4b4a58528..fc9e18398 100644 --- a/examples/with-tool-routing/package.json +++ b/examples/with-tool-routing/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", "ai": "^6.0.0", diff --git a/examples/with-tools/package.json b/examples/with-tools/package.json index bf0703fbf..4f83b3306 100644 --- a/examples/with-tools/package.json +++ b/examples/with-tools/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-turso/package.json b/examples/with-turso/package.json index 91c8d3dfc..4caf4a9f0 100644 --- a/examples/with-turso/package.json +++ b/examples/with-turso/package.json @@ -4,7 +4,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-vector-search/package.json b/examples/with-vector-search/package.json index d4f5f55db..21d07c0b7 100644 --- a/examples/with-vector-search/package.json +++ b/examples/with-vector-search/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-vercel-ai/package.json b/examples/with-vercel-ai/package.json index 192ab54e9..dce4b4615 100644 --- a/examples/with-vercel-ai/package.json +++ b/examples/with-vercel-ai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-viteval/package.json b/examples/with-viteval/package.json index ba5b774a0..eec574ab9 100644 --- a/examples/with-viteval/package.json +++ b/examples/with-viteval/package.json @@ -3,7 +3,7 @@ "author": "VoltAgent", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-voice-elevenlabs/package.json b/examples/with-voice-elevenlabs/package.json index dd1a18564..7d185c617 100644 --- a/examples/with-voice-elevenlabs/package.json +++ b/examples/with-voice-elevenlabs/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-voice-openai/package.json b/examples/with-voice-openai/package.json index 5f1e4dbfc..d323674cc 100644 --- a/examples/with-voice-openai/package.json +++ b/examples/with-voice-openai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-voice-xsai/package.json b/examples/with-voice-xsai/package.json index 1c5fa8b05..0af7a8665 100644 --- a/examples/with-voice-xsai/package.json +++ b/examples/with-voice-xsai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-voltagent-actions/package.json b/examples/with-voltagent-actions/package.json index fcc35f5ec..c03c68757 100644 --- a/examples/with-voltagent-actions/package.json +++ b/examples/with-voltagent-actions/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.3", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-voltagent-exporter/package.json b/examples/with-voltagent-exporter/package.json index f0c0c2620..06bd37cff 100644 --- a/examples/with-voltagent-exporter/package.json +++ b/examples/with-voltagent-exporter/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-voltagent-managed-memory/package.json b/examples/with-voltagent-managed-memory/package.json index a79025230..acae0ae5e 100644 --- a/examples/with-voltagent-managed-memory/package.json +++ b/examples/with-voltagent-managed-memory/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", "@voltagent/voltagent-memory": "^1.0.4", diff --git a/examples/with-voltops-resumable-streams/package.json b/examples/with-voltops-resumable-streams/package.json index b201a6006..d3a5292df 100644 --- a/examples/with-voltops-resumable-streams/package.json +++ b/examples/with-voltops-resumable-streams/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/resumable-streams": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-voltops-retrieval/package.json b/examples/with-voltops-retrieval/package.json index dcb528caa..dd7aa1358 100644 --- a/examples/with-voltops-retrieval/package.json +++ b/examples/with-voltops-retrieval/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-whatsapp/package.json b/examples/with-whatsapp/package.json index a9dc2124f..b0cbfecf8 100644 --- a/examples/with-whatsapp/package.json +++ b/examples/with-whatsapp/package.json @@ -4,7 +4,7 @@ "dependencies": { "@supabase/supabase-js": "^2.49.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-workflow-chain/package.json b/examples/with-workflow-chain/package.json index 2a3ed9c39..91c9474a0 100644 --- a/examples/with-workflow-chain/package.json +++ b/examples/with-workflow-chain/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-workflow/package.json b/examples/with-workflow/package.json index 54a4661b1..4f4794c98 100644 --- a/examples/with-workflow/package.json +++ b/examples/with-workflow/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-working-memory/package.json b/examples/with-working-memory/package.json index f5953ae1a..deb9c8763 100644 --- a/examples/with-working-memory/package.json +++ b/examples/with-working-memory/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-workspace/package.json b/examples/with-workspace/package.json index 16764146d..58bc482c7 100644 --- a/examples/with-workspace/package.json +++ b/examples/with-workspace/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-xquik-tools/package.json b/examples/with-xquik-tools/package.json index 0172cac47..ab430f7d1 100644 --- a/examples/with-xquik-tools/package.json +++ b/examples/with-xquik-tools/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", "ai": "^6.0.0", diff --git a/examples/with-youtube-to-blog/package.json b/examples/with-youtube-to-blog/package.json index 06f0b1129..cf9e325dd 100644 --- a/examples/with-youtube-to-blog/package.json +++ b/examples/with-youtube-to-blog/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.7.4", + "@voltagent/core": "^2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/examples/with-zapier-mcp/package.json b/examples/with-zapier-mcp/package.json index 46a52bd09..17bde5cf9 100644 --- a/examples/with-zapier-mcp/package.json +++ b/examples/with-zapier-mcp/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "~2.7.4", + "@voltagent/core": "~2.7.5", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.13", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index bc79ead33..d34124be0 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @voltagent/core +## 2.7.5 + +### Patch Changes + +- [#1283](https://github.com/VoltAgent/voltagent/pull/1283) [`23cc35a`](https://github.com/VoltAgent/voltagent/commit/23cc35a01b92f032cbc765c0f1ab2ab31dfb35c8) Thanks [@truffle-dev](https://github.com/truffle-dev)! - Honor the provider's `Retry-After` header on retried model calls. The retry loop in `executeWithModelFallback` previously always used local exponential backoff capped at 10 seconds, regardless of what the server asked for; this caused concurrent agents under shared 429/503 contention to converge their retry windows. The delay now uses `Retry-After` (delta-seconds or HTTP-date, RFC 7231) as a floor, keeps the exponential floor as a backpressure baseline, and caps at 5 minutes for safety. + ## 2.7.4 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 7ecb63c53..b65ffcf63 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.4", + "version": "2.7.5", "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 e45ec38c4..6abc3235e 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.4", + "@voltagent/core": "^2.7.5", "@voltagent/internal": "^1.0.3", "@voltagent/libsql": "^2.1.2", "@voltagent/postgres": "^2.1.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1812184f7..eef3f09ce 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.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -154,7 +154,7 @@ importers: specifier: ^21.0.0 version: 21.1.1 '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -191,7 +191,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -267,7 +267,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -388,7 +388,7 @@ importers: specifier: ^2.0.3 version: link:../../packages/a2a-server '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.3 @@ -477,7 +477,7 @@ importers: examples/with-agent-tool: dependencies: '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 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.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.3 @@ -539,7 +539,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -573,7 +573,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -716,7 +716,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -756,7 +756,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/server-hono': specifier: ^2.0.13 @@ -793,7 +793,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 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.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -882,7 +882,7 @@ importers: specifier: ^0.15.0 version: 0.15.10 '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/server-hono': specifier: ^2.0.13 @@ -928,7 +928,7 @@ importers: examples/with-cloudflare-workers: dependencies: '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/serverless-hono': specifier: ^2.0.11 @@ -962,7 +962,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1058,7 +1058,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1092,7 +1092,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1126,7 +1126,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1160,7 +1160,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1188,7 +1188,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1271,7 +1271,7 @@ importers: specifier: ^0.1.21 version: link:../../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1311,7 +1311,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1345,7 +1345,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1379,7 +1379,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1407,7 +1407,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1441,7 +1441,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1549,7 +1549,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/langfuse-exporter': specifier: ^2.0.3 @@ -1611,7 +1611,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1645,7 +1645,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1676,7 +1676,7 @@ importers: examples/with-mcp-server: dependencies: '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1710,7 +1710,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1741,7 +1741,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1781,7 +1781,7 @@ importers: specifier: ^11.0.0 version: 11.1.7(@nestjs/common@11.1.7)(@nestjs/core@11.1.7) '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/server-core': specifier: ^2.1.16 @@ -1827,7 +1827,7 @@ importers: examples/with-netlify-functions: dependencies: '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/serverless-hono': specifier: ^2.0.11 @@ -1867,7 +1867,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1973,7 +1973,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.3 @@ -2091,7 +2091,7 @@ 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.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2125,7 +2125,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/evals': specifier: ^2.0.4 @@ -2159,7 +2159,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2196,7 +2196,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2227,7 +2227,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2264,7 +2264,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2304,7 +2304,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2350,7 +2350,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2396,7 +2396,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2433,7 +2433,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2470,7 +2470,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2504,7 +2504,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2535,7 +2535,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2563,7 +2563,7 @@ importers: examples/with-resumable-streams: dependencies: '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2597,7 +2597,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2631,7 +2631,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2665,7 +2665,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2705,7 +2705,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2742,7 +2742,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2779,7 +2779,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2813,7 +2813,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2847,7 +2847,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2884,7 +2884,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2918,7 +2918,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2952,7 +2952,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2989,7 +2989,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3023,7 +3023,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3057,7 +3057,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3109,7 +3109,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3146,7 +3146,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3189,7 +3189,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3232,7 +3232,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3263,7 +3263,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3297,7 +3297,7 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@3.25.76) '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3328,7 +3328,7 @@ importers: examples/with-voltops-resumable-streams: dependencies: '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3359,7 +3359,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3396,7 +3396,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3433,7 +3433,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3467,7 +3467,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3501,7 +3501,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3538,7 +3538,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3572,7 +3572,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3603,7 +3603,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3634,7 +3634,7 @@ importers: examples/with-zapier-mcp: dependencies: '@voltagent/core': - specifier: ~2.7.4 + specifier: ~2.7.5 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -4085,7 +4085,7 @@ importers: specifier: ^0.15.0 version: 0.15.10 '@voltagent/core': - specifier: ^2.7.4 + specifier: ^2.7.5 version: link:../core '@voltagent/internal': specifier: ^1.0.3 @@ -15401,8 +15401,8 @@ packages: dev: false optional: true - /@oxc-project/types@0.129.0: - resolution: {integrity: sha512-3oz8m3FGdr2nDXVqmFUw7jolKliC4MoyXYIG2c7gpjBnzUWQpUGIYcXYKxTdTi+N2jusvt610ckTMkxdwHkYEg==} + /@oxc-project/types@0.132.0: + resolution: {integrity: sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==} 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.0: - resolution: {integrity: sha512-TWMZnRLMe63C2Lhyicviu7ZHaU4kxa6PS3rofvc9GmcvptzNN11BcfQ4Sl7MwTOsisQoa2keB/EBdNCAnUo8vA==} + /@rolldown/binding-android-arm64@1.0.2: + resolution: {integrity: sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==} 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.0: - resolution: {integrity: sha512-6XcD+8k0gPVItNagEw78/qqcBDwKcwDYS8V2hRmVsfUSIrd8cWe/CBvRDI5toqFyPfj+FJr6t8U6Xj2P2prEew==} + /@rolldown/binding-darwin-arm64@1.0.2: + resolution: {integrity: sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==} 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.0: - resolution: {integrity: sha512-iN/tWVXRQDWvmZlKdceP1Dwug9GDpEymhb9p4xnEe6zvCg5lFmzVljl+1qR1NVx3yfGpr2Na+CuLmv5IU8uzfQ==} + /@rolldown/binding-darwin-x64@1.0.2: + resolution: {integrity: sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==} 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.0: - resolution: {integrity: sha512-jjQMDvvwSOuhOwMszD/klSOjyWMM3zI64hWTj9KT5x4MxRbZAf+7vLQ6qouRhtsLVFHr3f0ILaJAfgENPiQdAQ==} + /@rolldown/binding-freebsd-x64@1.0.2: + resolution: {integrity: sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==} 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.0: - resolution: {integrity: sha512-d//Dtg2x6/m3mbV64yUGNnDGNZaDGRpDLLNGerHQUVObuNaIQaaDp25yUiqGXtHEXX+NP2d0wAlmKgpYgIAJ2A==} + /@rolldown/binding-linux-arm-gnueabihf@1.0.2: + resolution: {integrity: sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==} 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.0: - resolution: {integrity: sha512-n7Ofp0mx+aB2cC+Sdy5YtMnXtY9lchnHbY+3Yt0uq9JsWQExf4f5Whu0tK0R8Jdc9S6RchTHjIFY7uc92puOVQ==} + /@rolldown/binding-linux-arm64-gnu@1.0.2: + resolution: {integrity: sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==} 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.0: - resolution: {integrity: sha512-EIVjy2cgd7uuMMo94FVkBp7F6DhcZAUwNURkSG3RwUmvAXR6s0ISxM81U+IydcZByPG0pZIHsf1b6kTxoFDgJA==} + /@rolldown/binding-linux-arm64-musl@1.0.2: + resolution: {integrity: sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==} 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.0: - resolution: {integrity: sha512-JEwwOPcwTLAcpDQlqSmjEmfs63xJnSiUNIGvLcDLUHCWK4XowpS/7c7tUsUH6uT/ct6bMUTdXKfI8967FYj6mg==} + /@rolldown/binding-linux-ppc64-gnu@1.0.2: + resolution: {integrity: sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==} 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.0: - resolution: {integrity: sha512-0wjCFhLrihtAubnT9iA0N++0pSV0z5Hg7tNGdNJ4RFaINceHadoF+kiFGyY1qSSNVIAZtLotG8Ju1bgDPkjnFA==} + /@rolldown/binding-linux-s390x-gnu@1.0.2: + resolution: {integrity: sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==} 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.0: - resolution: {integrity: sha512-Dfn7iak9BcMMePxcoJfpSbWqnEyrp/dRF63/8qW/eHBdOZov6x5aShLLEYGYdIeSJ6vMLK/XCVB+lGIxm41bQA==} + /@rolldown/binding-linux-x64-gnu@1.0.2: + resolution: {integrity: sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==} 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.0: - resolution: {integrity: sha512-5/utzzDmD/pD/bmuaUcbTf/sZYy0aztwIVlfpoW1fTjCZ0BaPOMVWGZL1zvgxyi7ZIVYWlxKONHmSbHuiOh8Jw==} + /@rolldown/binding-linux-x64-musl@1.0.2: + resolution: {integrity: sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==} 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.0: - resolution: {integrity: sha512-ouJs8VcUomfLfpbUECqFMRqdV4x6aeAK3MA4m6vTrJJjKyWTV5KnxZx7Jd9G+GlDaQQxubcba00x16OyJ1meig==} + /@rolldown/binding-openharmony-arm64@1.0.2: + resolution: {integrity: sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==} 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.0: - resolution: {integrity: sha512-E+oHKGiDA+lsKMmFtffDDw91EryDT7uJocrIuCHqhm6bCTM6xFK+3gaCkYOHfPwQr0cCNarSM2xaELoQDz9jJg==} + /@rolldown/binding-wasm32-wasi@1.0.2: + resolution: {integrity: sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==} 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.0: - resolution: {integrity: sha512-yYK02n8Rngo+gbm1y6G0+7jk1sJ/2Wt7K0me0Y7k/ErBpyf+LJ2gFpqWVTcRV1rUepBlQRmpgWkTQCiiwrK0Ow==} + /@rolldown/binding-win32-arm64-msvc@1.0.2: + resolution: {integrity: sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==} 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.0: - resolution: {integrity: sha512-14bpChMahXRRXiTwahSl+zzHPW6qQTXtkMuJBFlbo+pqSAews2d4BdCSHfrJ/MBsCZtpmTafsY+1QhBzitcmdg==} + /@rolldown/binding-win32-x64-msvc@1.0.2: + resolution: {integrity: sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==} 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.0)(typescript@5.9.2): + /rolldown-plugin-dts@0.16.11(rolldown@1.0.2)(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.0 + rolldown: 1.0.2 typescript: 5.9.2 transitivePeerDependencies: - oxc-resolver - supports-color dev: true - /rolldown@1.0.0: - resolution: {integrity: sha512-yD986aXDESFGS95spT1LAv0jssywP4npMEjmMHyN2/5+eE8qQJUype2AaKkRiLgBgyD0LFlubwAht7VmY8rGoA==} + /rolldown@1.0.2: + resolution: {integrity: sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true dependencies: - '@oxc-project/types': 0.129.0 + '@oxc-project/types': 0.132.0 '@rolldown/pluginutils': 1.0.0 optionalDependencies: - '@rolldown/binding-android-arm64': 1.0.0 - '@rolldown/binding-darwin-arm64': 1.0.0 - '@rolldown/binding-darwin-x64': 1.0.0 - '@rolldown/binding-freebsd-x64': 1.0.0 - '@rolldown/binding-linux-arm-gnueabihf': 1.0.0 - '@rolldown/binding-linux-arm64-gnu': 1.0.0 - '@rolldown/binding-linux-arm64-musl': 1.0.0 - '@rolldown/binding-linux-ppc64-gnu': 1.0.0 - '@rolldown/binding-linux-s390x-gnu': 1.0.0 - '@rolldown/binding-linux-x64-gnu': 1.0.0 - '@rolldown/binding-linux-x64-musl': 1.0.0 - '@rolldown/binding-openharmony-arm64': 1.0.0 - '@rolldown/binding-wasm32-wasi': 1.0.0 - '@rolldown/binding-win32-arm64-msvc': 1.0.0 - '@rolldown/binding-win32-x64-msvc': 1.0.0 + '@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 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.0 - rolldown-plugin-dts: 0.16.11(rolldown@1.0.0)(typescript@5.9.2) + rolldown: 1.0.2 + rolldown-plugin-dts: 0.16.11(rolldown@1.0.2)(typescript@5.9.2) semver: 7.7.2 tinyexec: 1.0.1 tinyglobby: 0.2.15