ci(changesets): version packages #702
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
#696
69bc5bfThanks @fav-devs! - Add hostname configuration option to honoServer() to support IPv6 and dual-stack networking.The honoServer() function now accepts a
hostnameoption that allows configuring which network interface the server binds to. This fixes deployment issues on platforms like Railway that require IPv6 binding for private networking.Example usage:
Options:
"0.0.0.0"- Binds to all IPv4 interfaces (default, maintains backward compatibility)"::"- Binds to all IPv6 interfaces (dual-stack on most systems)"localhost"or"127.0.0.1"- Only localhost accessFixes [BUG] honoServer() doesn't expose hostname configuration, breaking Railway IPv6 private networking #694
@voltagent/[email protected]
Patch Changes
#701
c4f01e6Thanks @omeraplak! - fix: observability spans terminating prematurely on Vercel Edge and Deno DeployThe Problem
Observability spans were being cut short on Vercel Edge and Deno Deploy runtimes because the
toVercelEdge()andtoDeno()adapters didn't implementwaitUntilsupport. UnliketoCloudflareWorker(), which properly extracted and set upwaitUntilfrom the execution context, these adapters would terminate async operations (like span exports) as soon as the response was returned.This caused the observability pipeline's
FetchTraceExporterandFetchLogExporterto have their export promises cancelled mid-flight, resulting in incomplete or missing observability data.The Solution
Refactored all serverless adapters to use a new
withWaitUntil()helper utility that:waitUntilfrom the runtime context (Cloudflare'sexecutionCtx, Vercel'scontext, or Deno'sinfo)globalThis.___voltagent_wait_untilfor the observability exporters to useNow all three adapters (
toCloudflareWorker,toVercelEdge,toDeno) use the same battle-tested pattern:Impact
waitUntilbehavior across all serverless platformsTechnical Details
The fix introduces:
utils/wait-until-wrapper.ts: ReusablewithWaitUntil()helperutils/wait-until-wrapper.spec.ts: Complete test suite (11/11 passing)toCloudflareWorker(): Simplified using helpertoVercelEdge(): Now properly supportswaitUntiltoDeno(): Now properly supportswaitUntil