Skip to content

chore(repo): version packages#2

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

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

Conversation

@github-actions

@github-actions github-actions Bot commented Mar 23, 2026

Copy link
Copy Markdown

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

@github-actions github-actions Bot force-pushed the changeset-release/main branch from df25707 to 95119b9 Compare March 24, 2026 02:31
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 95119b9 to 71c8940 Compare April 4, 2026 02:44
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 71c8940 to dab6cb0 Compare April 12, 2026 02:58
@github-actions github-actions Bot force-pushed the changeset-release/main branch 3 times, most recently from 1cdcf71 to b8bc7b1 Compare April 23, 2026 02:59
@github-actions github-actions Bot force-pushed the changeset-release/main branch 2 times, most recently from 23be4b9 to 170cbb7 Compare May 5, 2026 03:26
@github-actions github-actions Bot force-pushed the changeset-release/main branch 2 times, most recently from df28792 to fee8377 Compare May 11, 2026 03:56
@github-actions github-actions Bot force-pushed the changeset-release/main branch 2 times, most recently from 1f0ecde to 5f43aa5 Compare May 25, 2026 04:24
@github-actions github-actions Bot force-pushed the changeset-release/main branch 2 times, most recently from 5da4d0a to 6be1aa1 Compare May 31, 2026 04:23
@github-actions github-actions Bot force-pushed the changeset-release/main branch 3 times, most recently from 7211ccf to 58e2d01 Compare June 12, 2026 04:36
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 58e2d01 to 4ae190f Compare June 14, 2026 04:29
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