ci(changesets): version packages#1328
Conversation
This comment has been minimized.
This comment has been minimized.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (94)
💤 Files with no reviewable changes (2)
✅ Files skipped from review due to trivial changes (56)
🚧 Files skipped from review as they are similar to previous changes (29)
📝 WalkthroughWalkthroughBumps core and server package versions and changelogs (core → 2.7.6; server-core → 2.1.18; server-hono → 2.0.14; serverless-hono → 2.0.12; server-elysia → 2.0.9) and updates many example package.json manifests to use the new patch releases. ChangesWorkflow Ownership Validation Release
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 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 |
7d79855 to
cfcea59
Compare
cfcea59 to
749f19f
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/[email protected]
Patch Changes
#1334
a1b4427Thanks @omeraplak! - fix: prevent unhandled rejections when abortingAgent.streamText()streamsThe Problem
Agent.streamText()eagerly read the AI SDK result getters fortext,usage, andfinishReasonwhile constructing VoltAgent's wrapped result. In AI SDK v6 these fields are lazy promises, so reading them early could materialize promises that the caller never consumes.When a caller only consumed the UI/full stream and aborted the run, those unconsumed promises could reject globally as
unhandledRejectionevents.The Solution
VoltAgent now preserves the lazy getter behavior for
text,usage, andfinishReason. The sanitized text promise is also created only whenresult.textis accessed.Impact
streamText()stream no longer emits unhandled rejections for unconsumed result fieldstoUIMessageStream(),toUIMessageStreamResponse(),fullStream, ortextStreamdo not need to attach defensive.catch()handlers totext,usage, orfinishReason@voltagent/[email protected]
Patch Changes
#1318
91abbb4Thanks @ruanchaves! - Validate workflow ownership before suspend and cancel control routes act on an execution.Fixes [BUG] Workflow suspend/cancel endpoints ignore the workflow ID path parameter #1316.
Updated dependencies [
a1b4427]:@voltagent/[email protected]
Patch Changes
#1318
91abbb4Thanks @ruanchaves! - Validate workflow ownership before suspend and cancel control routes act on an execution.Fixes [BUG] Workflow suspend/cancel endpoints ignore the workflow ID path parameter #1316.
Updated dependencies [
a1b4427,91abbb4]:@voltagent/[email protected]
Patch Changes
#1318
91abbb4Thanks @ruanchaves! - Validate workflow ownership before suspend and cancel control routes act on an execution.Fixes [BUG] Workflow suspend/cancel endpoints ignore the workflow ID path parameter #1316.
Updated dependencies [
a1b4427,91abbb4]:@voltagent/[email protected]
Patch Changes
#1318
91abbb4Thanks @ruanchaves! - Validate workflow ownership before suspend and cancel control routes act on an execution.Fixes [BUG] Workflow suspend/cancel endpoints ignore the workflow ID path parameter #1316.
Updated dependencies [
91abbb4]:Summary by CodeRabbit
Bug Fixes
Chores