Conversation
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
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 (91)
💤 Files with no reviewable changes (4)
✅ Files skipped from review due to trivial changes (81)
🚧 Files skipped from review as they are similar to previous changes (6)
📝 WalkthroughWalkthroughBumps package versions (core → 2.7.3, server-hono → 2.0.13, server-core → 2.1.16), updates many example Changes
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 |
This comment has been minimized.
This comment has been minimized.
Deploying voltagent with
|
| Latest commit: |
a876731
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://47f9da7d.voltagent.pages.dev |
| Branch Preview URL: | https://changeset-release-main.voltagent.pages.dev |
be0580f to
4f59dd6
Compare
4f59dd6 to
a876731
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/core@2.7.3
Patch Changes
#1249
b4cb089Thanks @omeraplak! - fix(core): allow disabling conversation title temperatureConversation title generation now keeps the existing default
temperature: 0, while allowinggenerateTitle.temperature: nullto omit the parameter for reasoning models that do not support temperature. Unsupported temperature warnings are surfaced at warn level with guidance, and title generation failures are logged at warn level instead of debug.#1248
69b78fdThanks @omeraplak! - Fix conversation title generation when memory is supplied globally to VoltAgent.#1245
99c201bThanks @omeraplak! - Register agents synchronously during VoltAgent construction so getAgent and getAgents can return agents with global defaults before ready resolves.@voltagent/server-core@2.1.16
Patch Changes
#1247
832f094Thanks @omeraplak! - fix(server-core): report requested port conflicts instead of silently switching portsWhen a server provider is configured with an explicit port and that port is already in use, VoltAgent now stops with guidance for configuring a different port instead of automatically binding to another available port. Calls without an explicit port keep the previous automatic fallback behavior.
Updated dependencies [
b4cb089,69b78fd,99c201b]:@voltagent/server-hono@2.0.13
Patch Changes
#1241
794da98Thanks @truffle-dev! - fix(server-hono): don't double-prefix basePath when Hono already merged it into route.pathWhen a sub-app is mounted via
app.route(basePath, subApp)orapp.basePath(basePath),Hono's internal
_addRoutecallsmergePath(basePath, path)and stores the mergedresult in
route.path, while still keepingbasePathon the route as metadata.extractCustomEndpointsblindly prependedbasePathtoroute.path, so a routeregistered as
/api/hellowithbasePath: "/api"was logged asGET /api/api/helloeven though Hono served it correctly at
/api/hello. Only prependbasePathwhenroute.pathdoes not already include it.Updated dependencies [
b4cb089,69b78fd,832f094,99c201b]:Summary by CodeRabbit
Release Notes
Bug Fixes
New Features
getAgentandgetAgentsto return agents with global defaults before the ready promise resolves.