Conversation
Deploying voltagent with
|
| Latest commit: |
bd8137e
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://3b1c49c5.voltagent.pages.dev |
| Branch Preview URL: | https://changeset-release-main.voltagent.pages.dev |
📝 WalkthroughWalkthroughThis PR bumps the Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 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.
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
examples/with-nextjs-resumable-stream/package.json (1)
63-63:⚠️ Potential issue | 🟡 MinorStale
repository.directory— points to the wrong example.The
directoryfield referencesexamples/with-nextjs-ai-elements, but this package lives atexamples/with-nextjs-resumable-stream. While pre-existing, it can mislead tooling and package-registry links.🔧 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 package.json "repository.directory" field value to the correct example folder: change the current "examples/with-nextjs-ai-elements" string to "examples/with-nextjs-resumable-stream" so the "directory" key accurately points to this package; verify the "repository" object remains valid after the update.
🧹 Nitpick comments (1)
examples/with-zapier-mcp/package.json (1)
7-7: Inconsistent semver range:~vs^used across all other examples.Every other example in this PR uses
"@voltagent/core": "^2.6.1"(caret), while this package uses"~2.6.1"(tilde). The tilde constrains resolution to>=2.6.1 <2.7.0(patch-only), while caret allows>=2.6.1 <3.0.0. This pre-existing inconsistency means future minor core releases won't be auto-resolved here. Consider aligning to^for consistency with the rest of the monorepo.Based on learnings: Follow the monorepo structure — changes may impact multiple packages.
♻️ Proposed fix
- "@voltagent/core": "~2.6.1", + "@voltagent/core": "^2.6.1",🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@examples/with-zapier-mcp/package.json` at line 7, Update the dependency semver for "@voltagent/core" in examples/with-zapier-mcp/package.json from "~2.6.1" to "^2.6.1" to match the rest of the examples; locate the dependency entry that currently reads "@voltagent/core": "~2.6.1" and change the tilde to a caret so minor releases (>=2.6.1 <3.0.0) are allowed and consistent across the monorepo.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Outside diff comments:
In `@examples/with-nextjs-resumable-stream/package.json`:
- Line 63: Update the package.json "repository.directory" field value to the
correct example folder: change the current "examples/with-nextjs-ai-elements"
string to "examples/with-nextjs-resumable-stream" so the "directory" key
accurately points to this package; verify the "repository" object remains valid
after the update.
---
Nitpick comments:
In `@examples/with-zapier-mcp/package.json`:
- Line 7: Update the dependency semver for "@voltagent/core" in
examples/with-zapier-mcp/package.json from "~2.6.1" to "^2.6.1" to match the
rest of the examples; locate the dependency entry that currently reads
"@voltagent/core": "~2.6.1" and change the tilde to a caret so minor releases
(>=2.6.1 <3.0.0) are allowed and consistent across the monorepo.
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.6.1
Patch Changes
#1103
edd7181Thanks @omeraplak! - fix: preserve getter-basedfullStreamtee behavior after startup probing instreamText/streamObjectThis prevents
TypeError [ERR_INVALID_STATE]: Invalid state: ReadableStream is lockedwhen SDK consumers iterateresult.fullStreamwhile other result accessors (such asresult.textor UI stream helpers) are also consuming the stream.Summary by cubic
Versioned packages for a patch release: @voltagent/core 2.6.1 fixes concurrent stream access to avoid ReadableStream lock errors, and all examples now depend on the new version.
Bug Fixes
Dependencies
Written for commit bd8137e. Summary will update on new commits.
Summary by CodeRabbit
Bug Fixes
Chores