Conversation
Deploying voltagent with
|
| Latest commit: |
819efb8
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://618d63d9.voltagent.pages.dev |
| Branch Preview URL: | https://changeset-release-main.voltagent.pages.dev |
This comment has been minimized.
This comment has been minimized.
|
No actionable comments were generated in the recent review. 🎉 📝 WalkthroughWalkthroughRemoved a changeset and applied package version bumps and changelog additions across core, server, and SQL adapter packages; many example package.json files updated to reference the new versions. No source-code logic edits beyond changelog and manifest updates in this diff. Changes
Sequence Diagram(s)mermaid Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
🧹 Nitpick comments (1)
examples/with-nextjs-resumable-stream/package.json (1)
63-63: Stalerepository.directory— should beexamples/with-nextjs-resumable-streamThe
repository.directoryfield reads"examples/with-nextjs-ai-elements", which doesn't match this package's actual path. This is pre-existing and unrelated to this PR's changes, but worth correcting since npm uses this field to link back to the monorepo directory.✏️ Proposed fix
- "directory": "examples/with-nextjs-ai-elements" + "directory": "examples/with-nextjs-resumable-stream"🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@examples/with-nextjs-resumable-stream/package.json` at line 63, Update the repository.directory field in package.json for the examples/with-nextjs-resumable-stream package: locate the repository object and change repository.directory from "examples/with-nextjs-ai-elements" to the correct path "examples/with-nextjs-resumable-stream" so the package points to its actual monorepo directory.
🤖 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-nextjs-resumable-stream/package.json`:
- Line 63: Update the repository.directory field in package.json for the
examples/with-nextjs-resumable-stream package: locate the repository object and
change repository.directory from "examples/with-nextjs-ai-elements" to the
correct path "examples/with-nextjs-resumable-stream" so the package points to
its actual monorepo directory.
cc39c8e to
fa5b09e
Compare
There was a problem hiding this comment.
🧹 Nitpick comments (1)
packages/serverless-hono/package.json (1)
4-8: LGTM — version bump and server-core dependency update are correct.One pre-existing nuance worth noting:
peerDependencies["@voltagent/server-core"]remains"^2.0.0"whiledependencies["@voltagent/server-core"]is now"^2.1.7". A consumer pinned to server-core^2.0.xwould satisfy the peer constraint but miss the actual minimum required version. This gap predates this PR (it was^2.1.4vs^2.0.0before), but it continues to widen with each direct-dep bump. Consider aligning the peerDependency floor to the minimum functionally required version in a follow-up.🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@packages/serverless-hono/package.json` around lines 4 - 8, The peerDependencies floor for "@voltagent/server-core" is out of sync with the actual dependency version; update the peerDependencies entry for "@voltagent/server-core" to match the minimum required version used in dependencies (i.e., change the peer dependency from "^2.0.0" to the same semver range as dependencies, e.g. "^2.1.7") so consumers cannot satisfy the peer constraint with an older incompatible 2.0.x release; update the package.json peerDependencies block accordingly and run a quick install/test to ensure compatibility.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Nitpick comments:
In `@packages/serverless-hono/package.json`:
- Around line 4-8: The peerDependencies floor for "@voltagent/server-core" is
out of sync with the actual dependency version; update the peerDependencies
entry for "@voltagent/server-core" to match the minimum required version used in
dependencies (i.e., change the peer dependency from "^2.0.0" to the same semver
range as dependencies, e.g. "^2.1.7") so consumers cannot satisfy the peer
constraint with an older incompatible 2.0.x release; update the package.json
peerDependencies block accordingly and run a quick install/test to ensure
compatibility.
fa5b09e to
819efb8
Compare
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/cloudflare-d1@2.1.2
Patch Changes
#1085
f275dafThanks @omeraplak! - Fix workflow execution filtering by persisted metadata across adapters.options.metadataon workflow execution state so/workflows/executionsfilters can match tenant/user metadata.options.metadatain server workflow execution request schema.metadataandmetadata.<key>filters.#1082
73cf1d3Thanks @omeraplak! - Fix workflow state persistence parity across SQL adapters.This update persists and returns
input,context, and top-levelworkflowStatein workflow state operations. It also ensures suspended workflow state queries includeevents,output, andcancellation, and adds adapter migrations/column additions where needed.@voltagent/core@2.4.4
Patch Changes
#1085
f275dafThanks @omeraplak! - Fix workflow execution filtering by persisted metadata across adapters.options.metadataon workflow execution state so/workflows/executionsfilters can match tenant/user metadata.options.metadatain server workflow execution request schema.metadataandmetadata.<key>filters.#1084
95ad610Thanks @omeraplak! - Add stream attach support for in-progress workflow executions.GET /workflows/:id/executions/:executionId/streamto attach to an active workflow SSE stream.fromSequenceandLast-Event-ID.POST /workflows/:id/streambehavior unchanged for starting new executions.@voltagent/libsql@2.1.2
Patch Changes
#1085
f275dafThanks @omeraplak! - Fix workflow execution filtering by persisted metadata across adapters.options.metadataon workflow execution state so/workflows/executionsfilters can match tenant/user metadata.options.metadatain server workflow execution request schema.metadataandmetadata.<key>filters.#1082
73cf1d3Thanks @omeraplak! - Fix workflow state persistence parity across SQL adapters.This update persists and returns
input,context, and top-levelworkflowStatein workflow state operations. It also ensures suspended workflow state queries includeevents,output, andcancellation, and adds adapter migrations/column additions where needed.@voltagent/postgres@2.1.2
Patch Changes
#1082
73cf1d3Thanks @omeraplak! - Fix workflow state persistence parity across SQL adapters.This update persists and returns
input,context, and top-levelworkflowStatein workflow state operations. It also ensures suspended workflow state queries includeevents,output, andcancellation, and adds adapter migrations/column additions where needed.@voltagent/server-core@2.1.7
Patch Changes
#1085
f275dafThanks @omeraplak! - Fix workflow execution filtering by persisted metadata across adapters.options.metadataon workflow execution state so/workflows/executionsfilters can match tenant/user metadata.options.metadatain server workflow execution request schema.metadataandmetadata.<key>filters.#1084
95ad610Thanks @omeraplak! - Add stream attach support for in-progress workflow executions.GET /workflows/:id/executions/:executionId/streamto attach to an active workflow SSE stream.fromSequenceandLast-Event-ID.POST /workflows/:id/streambehavior unchanged for starting new executions.Updated dependencies [
f275daf,95ad610]:@voltagent/server-elysia@2.0.6
Patch Changes
#1084
95ad610Thanks @omeraplak! - Add stream attach support for in-progress workflow executions.GET /workflows/:id/executions/:executionId/streamto attach to an active workflow SSE stream.fromSequenceandLast-Event-ID.POST /workflows/:id/streambehavior unchanged for starting new executions.Updated dependencies [
f275daf,95ad610]:@voltagent/server-hono@2.0.7
Patch Changes
#1084
95ad610Thanks @omeraplak! - Add stream attach support for in-progress workflow executions.GET /workflows/:id/executions/:executionId/streamto attach to an active workflow SSE stream.fromSequenceandLast-Event-ID.POST /workflows/:id/streambehavior unchanged for starting new executions.Updated dependencies [
f275daf,95ad610]:@voltagent/serverless-hono@2.0.9
Patch Changes
#1084
95ad610Thanks @omeraplak! - Add stream attach support for in-progress workflow executions.GET /workflows/:id/executions/:executionId/streamto attach to an active workflow SSE stream.fromSequenceandLast-Event-ID.POST /workflows/:id/streambehavior unchanged for starting new executions.Updated dependencies [
f275daf,95ad610]:@voltagent/supabase@2.1.3
Patch Changes
#1082
73cf1d3Thanks @omeraplak! - Fix workflow state persistence parity across SQL adapters.This update persists and returns
input,context, and top-levelworkflowStatein workflow state operations. It also ensures suspended workflow state queries includeevents,output, andcancellation, and adds adapter migrations/column additions where needed.Summary by CodeRabbit
New Features
Bug Fixes
Chores