Skip to content

ci(changesets): version packages#1151

Merged
omeraplak merged 1 commit intomainfrom
changeset-release/main
Mar 15, 2026
Merged

ci(changesets): version packages#1151
omeraplak merged 1 commit intomainfrom
changeset-release/main

Conversation

@voltagent-bot
Copy link
Copy Markdown
Member

@voltagent-bot voltagent-bot commented Mar 15, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@voltagent/ag-ui@1.0.6

Patch Changes

  • #1149 19c4fcf Thanks @corners99! - fix: use input instead of args for tool-call parts in message conversion

    When converting CopilotKit assistant messages with tool calls to VoltAgent format,
    the adapter was setting args on tool-call parts. The AI SDK's ToolCallPart
    interface expects input, causing the Anthropic provider to send undefined as
    the tool_use input — rejected by the API with:

    "messages.N.content.N.tool_use.input: Input should be a valid dictionary"

@voltagent/core@2.6.9

Patch Changes

  • #1152 aa5c4d7 Thanks @omeraplak! - Fix stale semantic-search results after Memory.clearMessages().

    Previously, clearMessages() removed conversation messages from storage but left vector
    embeddings behind when a vector adapter was configured. This meant semantic search could
    still return hits for cleared conversations even though the message history had been removed.

    What Changed

    • Memory.clearMessages(userId, conversationId) now deletes vector entries for that
      conversation before clearing storage
    • Memory.clearMessages(userId) now also deletes vector entries across all of the user's
      conversations

    Impact

    • Cleared conversations no longer appear in semantic search results
    • Message storage and vector storage stay in sync after cleanup

Summary by CodeRabbit

  • Bug Fixes

    • Fixed tool-call input handling in ag-ui 1.0.6, resolving API validation errors.
  • Chores

    • Released core package v2.6.9 with memory management improvements.
    • Updated all example dependencies to use the latest core version.

@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages bot commented Mar 15, 2026

Deploying voltagent with  Cloudflare Pages  Cloudflare Pages

Latest commit: f6fc175
Status: ✅  Deploy successful!
Preview URL: https://4a1e7f21.voltagent.pages.dev
Branch Preview URL: https://changeset-release-main.voltagent.pages.dev

View logs

@voltagent-bot voltagent-bot force-pushed the changeset-release/main branch from d5d7191 to 154c20e Compare March 15, 2026 16:39
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Mar 15, 2026

📝 Walkthrough

Walkthrough

Removed a temporary changeset, added a 1.0.6 changelog entry for packages/ag-ui, bumped ag-ui (1.0.5→1.0.6) and several example and core package @voltagent/core versions (to ^2.6.9), and added core 2.6.9 changelog entry.

Changes

Cohort / File(s) Summary
Release management / AG-UI
\.changeset/fix-ag-ui-tool-call-input.md, packages/ag-ui/CHANGELOG.md, packages/ag-ui/package.json
Deleted the temporary changeset, added a 1.0.6 patch entry documenting the fix switching tool-call parts from args to input in message conversion, and bumped package version to 1.0.6.
Core release notes & package
packages/core/CHANGELOG.md, packages/core/package.json
Added 2.6.9 changelog entry and bumped core package version to 2.6.9.
Examples — @voltagent/core bumps
examples/*/package.json, examples/.../*/package.json
Updated @voltagent/core dependency across many example packages from ^2.6.8/^2.6.5/^2.6.8 → ^2.6.9 (patch-level dependency updates only).
E2E package
packages/e2e/package.json
Bumped @voltagent/core dependency to ^2.6.9.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested reviewers

  • omeraplak

Poem

🐰 I hopped through changelogs late at night,
Swapped args for input to make things right.
Bumped the versions, tidy and neat,
Patch notes written, releases complete.
A tiny thump — the repo's light!

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The PR title 'ci(changesets): version packages' accurately reflects the purpose of this automated Changesets release PR, which versions and prepares packages for npm publication.
Description check ✅ Passed The PR description is comprehensive and follows the repository's conventions, documenting the releases and changes with linked PRs, commits, and detailed explanations of fixes.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch changeset-release/main
📝 Coding Plan
  • Generate coding plan for human review comments

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Tip

You can disable sequence diagrams in the walkthrough.

Disable the reviews.sequence_diagrams setting to disable sequence diagrams in the walkthrough.

@joggrbot

This comment has been minimized.

Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 3 files

@voltagent-bot voltagent-bot force-pushed the changeset-release/main branch from 154c20e to f6fc175 Compare March 15, 2026 17:36
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
examples/with-zapier-mcp/package.json (1)

7-7: Inconsistent version specifier.

This example uses a tilde (~2.6.9) for @voltagent/core, while other examples in this PR and other @voltagent/* dependencies in this same file use caret (^). This may be intentional for stricter version pinning, but consider aligning with the caret specifier used elsewhere for consistency.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@examples/with-zapier-mcp/package.json` at line 7, The dependency specifier
for "@voltagent/core" is inconsistent (uses "~2.6.9") compared to other
`@voltagent/`* entries; update the package.json entry for "@voltagent/core" to use
the caret form (e.g., "^2.6.9") so it matches the other dependencies and
maintains consistent versioning across examples.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@examples/with-zapier-mcp/package.json`:
- Line 7: The dependency specifier for "@voltagent/core" is inconsistent (uses
"~2.6.9") compared to other `@voltagent/`* entries; update the package.json entry
for "@voltagent/core" to use the caret form (e.g., "^2.6.9") so it matches the
other dependencies and maintains consistent versioning across examples.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: c818d7fc-eb61-4ab5-b69e-054716f7e33c

📥 Commits

Reviewing files that changed from the base of the PR and between 154c20e and f6fc175.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (85)
  • .changeset/fix-ag-ui-tool-call-input.md
  • examples/base/package.json
  • examples/github-repo-analyzer/package.json
  • examples/github-star-stories/package.json
  • examples/next-js-chatbot-starter-template/package.json
  • examples/with-a2a-server/package.json
  • examples/with-agent-tool/package.json
  • examples/with-airtable/package.json
  • examples/with-amazon-bedrock/package.json
  • examples/with-anthropic/package.json
  • examples/with-auth/package.json
  • examples/with-cerbos/package.json
  • examples/with-chat-sdk/package.json
  • examples/with-chroma/package.json
  • examples/with-client-side-tools/package.json
  • examples/with-cloudflare-workers/package.json
  • examples/with-composio-mcp/package.json
  • examples/with-custom-endpoints/package.json
  • examples/with-dynamic-parameters/package.json
  • examples/with-dynamic-prompts/package.json
  • examples/with-feedback/package.json
  • examples/with-google-ai/package.json
  • examples/with-google-drive-mcp/server/package.json
  • examples/with-google-vertex-ai/package.json
  • examples/with-groq-ai/package.json
  • examples/with-guardrails/package.json
  • examples/with-hooks/package.json
  • examples/with-hugging-face-mcp/package.json
  • examples/with-langfuse/package.json
  • examples/with-mcp-elicitation/package.json
  • examples/with-mcp-server/package.json
  • examples/with-mcp/package.json
  • examples/with-memory-rest-api/package.json
  • examples/with-middleware/package.json
  • examples/with-nestjs/package.json
  • examples/with-netlify-functions/package.json
  • examples/with-nextjs-resumable-stream/package.json
  • examples/with-nextjs/package.json
  • examples/with-nuxt/package.json
  • examples/with-offline-evals/package.json
  • examples/with-ollama/package.json
  • examples/with-peaka-mcp/package.json
  • examples/with-pinecone/package.json
  • examples/with-planagents/package.json
  • examples/with-playwright/package.json
  • examples/with-postgres/package.json
  • examples/with-qdrant/package.json
  • examples/with-rag-chatbot/package.json
  • examples/with-recipe-generator/package.json
  • examples/with-research-assistant/package.json
  • examples/with-resumable-streams/package.json
  • examples/with-retries-fallback/package.json
  • examples/with-retrieval/package.json
  • examples/with-slack/package.json
  • examples/with-subagents/package.json
  • examples/with-summarization/package.json
  • examples/with-supabase/package.json
  • examples/with-tavily-search/package.json
  • examples/with-thinking-tool/package.json
  • examples/with-tool-routing/package.json
  • examples/with-tools/package.json
  • examples/with-turso/package.json
  • examples/with-vector-search/package.json
  • examples/with-vercel-ai/package.json
  • examples/with-viteval/package.json
  • examples/with-voice-elevenlabs/package.json
  • examples/with-voice-openai/package.json
  • examples/with-voice-xsai/package.json
  • examples/with-voltagent-actions/package.json
  • examples/with-voltagent-exporter/package.json
  • examples/with-voltagent-managed-memory/package.json
  • examples/with-voltops-resumable-streams/package.json
  • examples/with-voltops-retrieval/package.json
  • examples/with-whatsapp/package.json
  • examples/with-workflow-chain/package.json
  • examples/with-workflow/package.json
  • examples/with-working-memory/package.json
  • examples/with-workspace/package.json
  • examples/with-youtube-to-blog/package.json
  • examples/with-zapier-mcp/package.json
  • packages/ag-ui/CHANGELOG.md
  • packages/ag-ui/package.json
  • packages/core/CHANGELOG.md
  • packages/core/package.json
  • packages/e2e/package.json
💤 Files with no reviewable changes (1)
  • .changeset/fix-ag-ui-tool-call-input.md
✅ Files skipped from review due to trivial changes (13)
  • examples/with-cerbos/package.json
  • examples/with-auth/package.json
  • packages/core/CHANGELOG.md
  • examples/with-cloudflare-workers/package.json
  • examples/with-whatsapp/package.json
  • examples/with-tools/package.json
  • examples/with-vercel-ai/package.json
  • examples/with-groq-ai/package.json
  • examples/with-subagents/package.json
  • examples/with-langfuse/package.json
  • examples/with-google-vertex-ai/package.json
  • examples/with-workspace/package.json
  • examples/with-hugging-face-mcp/package.json
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/ag-ui/package.json

@omeraplak omeraplak merged commit a3aa5f6 into main Mar 15, 2026
23 checks passed
@omeraplak omeraplak deleted the changeset-release/main branch March 15, 2026 17:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants