Skip to content

chore(repo): version packages#386

Open
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main
Open

chore(repo): version packages#386
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

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

evlog@2.19.2

Patch Changes

  • #384 6eb0957 Thanks @nadaniels! - fix(hono): resolve "ReadableStream is locked" error with AI SDK streaming responses

    Using createUIMessageStreamResponse or createAgentUIStreamResponse from the Vercel AI SDK inside a Hono route would throw ERR_INVALID_STATE: ReadableStream is locked when running under @hono/node-server.

    Root cause: The middleware called createObservedBody(c.res.body) (which calls body.getReader(), locking the stream) and then relied on Hono's compose to update c.res with the wrapped response via the middleware return value. However, Hono skips that update when context.finalized is already true — which is always the case after a route handler returns a Response. This left c.res pointing at the original response whose body was now locked, so @hono/node-server's subsequent response.body.getReader() call threw.

    Fix: Explicitly assign c.res = await finishResponse(c.res, ...) instead of returning the wrapped response, so c.res is always updated regardless of context.finalized.

    Closes #382

evlog-community-adapter-skeleton@5.0.2

Patch Changes

  • Updated dependencies [6eb0957]:
    • evlog@2.19.2

evlog-community-enricher-skeleton@5.0.2

Patch Changes

  • Updated dependencies [6eb0957]:
    • evlog@2.19.2

evlog-community-framework-skeleton@5.0.2

Patch Changes

  • Updated dependencies [6eb0957]:
    • evlog@2.19.2

@vercel

vercel Bot commented Jun 13, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
evlog-docs Ready Ready Preview, Comment, Open in v0 Jun 13, 2026 2:16pm
just-use-evlog Ready Ready Preview, Comment Jun 13, 2026 2:16pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[bug] Hono middleware + AI SDK's createUIMessageStreamResponse crashes request

0 participants