Skip to content

ci(changesets): version packages#968

Merged
omeraplak merged 1 commit intomainfrom
changeset-release/main
Jan 20, 2026
Merged

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

Conversation

@voltagent-bot
Copy link
Member

@voltagent-bot voltagent-bot commented Jan 20, 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/core@2.1.5

Patch Changes

  • #967 94299c0 Thanks @omeraplak! - feat: add VoltAgent-level default memory for agents and workflows

    You can now define defaults once at the VoltAgent entrypoint. Agent/workflow instances still win when they set memory, and agentMemory/workflowMemory fall back to the shared memory option.

    Usage

    import { Agent, Memory, VoltAgent } from "@voltagent/core";
    import { LibSQLMemoryAdapter } from "@voltagent/libsql";
    
    const sharedMemory = new Memory({
      storage: new LibSQLMemoryAdapter({ url: "file:./.voltagent/shared.db" }),
    });
    
    const agentMemory = new Memory({
      storage: new LibSQLMemoryAdapter({ url: "file:./.voltagent/agents.db" }),
    });
    
    const workflowMemory = new Memory({
      storage: new LibSQLMemoryAdapter({ url: "file:./.voltagent/workflows.db" }),
    });
    
    const assistant = new Agent({
      name: "assistant",
      instructions: "Be helpful.",
      model: "openai/gpt-4o-mini",
    });
    
    new VoltAgent({
      agents: { assistant },
      memory: sharedMemory,
      agentMemory,
      workflowMemory,
    });

Summary by cubic

Publish @voltagent/core v2.1.5 with VoltAgent-level default memory for agents and workflows, and update all example apps to use the new version.

  • New Features

    • Set shared memory defaults at the VoltAgent entry point. Agent/workflow instances still override with their own memory, and agentMemory/workflowMemory fall back to the shared memory option.
  • Dependencies

    • Bump @voltagent/core to ^2.1.5 across examples and update pnpm-lock.yaml.

Written for commit 4cacadc. Summary will update on new commits.

Summary by CodeRabbit

  • New Features

    • Added VoltAgent-level default memory configuration supporting shared memory instances and per-agent/per-workflow memory options at the VoltAgent entrypoint. Per-instance memory settings take precedence when explicitly set.
  • Chores

    • Updated core package dependency from version 2.1.4 to 2.1.5 across all example projects.

✏️ Tip: You can customize this high-level summary in your review settings.

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Jan 20, 2026

Deploying voltagent with  Cloudflare Pages  Cloudflare Pages

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

View logs

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 20, 2026

📝 Walkthrough

Walkthrough

Version bump of the core package from 2.1.4 to 2.1.5 with corresponding dependency updates across 54 example projects. The CHANGELOG documents VoltAgent-level default memory support, and the associated changeset entry was removed post-release.

Changes

Cohort / File(s) Summary
Core Release
packages/core/package.json, packages/core/CHANGELOG.md
Version bumped to 2.1.5. CHANGELOG documents new VoltAgent-level default memory feature enabling shared memory instances for agents and workflows.
Changeset Cleanup
.changeset/every-waves-win.md
Removed changelog entry documenting the VoltAgent-level default memory feature post-release.
Example Dependencies
examples/*/package.json (54 files)
Updated @voltagent/core dependency from ^2.1.4 to ^2.1.5 across all example projects: base, github-repo-analyzer, github-star-stories, next-js-chatbot-starter-template, with-a2a-server, with-agent-tool, with-airtable, with-amazon-bedrock, with-anthropic, with-auth, with-cerbos, with-chroma, with-client-side-tools, with-cloudflare-workers, with-composio-mcp, with-custom-endpoints, with-dynamic-parameters, with-dynamic-prompts, with-feedback, with-google-ai, with-google-drive-mcp/server, with-google-vertex-ai, with-groq-ai, with-guardrails, with-hooks, with-hugging-face-mcp, with-langfuse, with-mcp-elicitation, with-mcp-server, with-mcp, with-memory-rest-api, with-middleware, with-nestjs, with-netlify-functions, with-nextjs-resumable-stream, with-nextjs, with-nuxt, with-offline-evals, with-ollama, with-peaka-mcp, with-pinecone, with-planagents, with-playwright, with-postgres, with-qdrant, with-rag-chatbot, with-recipe-generator, with-research-assistant, with-resumable-streams, with-retries-fallback, with-retrieval, with-slack, with-subagents, with-supabase, with-tavily-search, with-thinking-tool, with-tools, with-turso, with-vector-search, with-vercel-ai, with-viteval, with-voice-elevenlabs, with-voice-openai, with-voice-xsai, with-voltagent-actions, with-voltagent-exporter, with-voltagent-managed-memory, with-voltops-resumable-streams, with-voltops-retrieval, with-whatsapp, with-workflow, with-working-memory, with-youtube-to-blog, with-zapier-mcp.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Possibly related PRs

Poem

🐰 A nibble and a bump, version clean and tight,
From 2.1.4 to 2.1.5, everything's right!
Shared memories wired, examples all in sync,
Fifty-four little warrens updated in a blink!

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title 'ci(changesets): version packages' accurately describes the main purpose of this PR—an automated version bump via the Changesets release action.
Description check ✅ Passed The PR description is comprehensive, explaining the Changesets action purpose, listing the @voltagent/core@2.1.5 release with detailed patch notes including the new memory feature and usage example.
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.


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

@joggrbot

This comment has been minimized.

Copy link
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 78 files

Note: This PR contains a large number of files. cubic only reviews up to 75 files per PR, so some files may not have been reviewed.

@omeraplak omeraplak merged commit 7ef75fb into main Jan 20, 2026
23 checks passed
@omeraplak omeraplak deleted the changeset-release/main branch January 20, 2026 03:29
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