Skip to content

Version Packages (beta) - #3466

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

Version Packages (beta)#3466
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Aug 11, 2026

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.

⚠️⚠️⚠️⚠️⚠️⚠️

main is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on main.

⚠️⚠️⚠️⚠️⚠️⚠️

Releases

@workflow/core@5.0.0-beta.42

Minor Changes

  • #3365 7683130 Thanks @TooTallNate! - Resilient step dispatch: newly created steps are published to the queue in parallel with their step_created event write, with the serialized input carried on the message (stepInput) so the consumer re-ensures the event if the direct write failed transiently — mirroring resilient start (runInput) and resilient hook resume (hookInput). Worlds that enforce the precondition guard keep the sequential create-then-publish dispatch (only sequencing gives the message a happens-after edge over the create's guard verdict); step-dispatch idempotency keys are now step-identity-scoped. Disable via WORKFLOW_RESILIENT_STEP_DISPATCH=0.

Patch Changes

  • #3462 9add9d7 Thanks @NathanColosimo! - Reject compact sparse-array payloads with logical lengths above 100,000 during hydration.

  • #3519 dc85865 Thanks @VaguelySerious! - Remove the preconditionGuard World capability. A stale replay-context write no longer needs to be rejected: a reader holds a prefix of the log, replay is deterministic on a prefix, and the writer's next write reports the events it was pushed past.

  • #3381 efbc408 Thanks @VaguelySerious! - Ignore duplicate events that a concurrent replay wrote for an entity the event log already records, instead of failing the run with a corrupted event log

  • #3437 a0ccfe0 Thanks @karthikscale3! - Add OTEL telemetry for hook-triggered time-to-resume: workflow.resume.total_ms plus a non-overlapping phase breakdown, on the first durable step after a resume.

  • #3519 dc85865 Thanks @VaguelySerious! - Require every event id the runtime reads to be a log position. requireEventSlot replaces the lenient decode that returned "no position" for an id that is not a slot.

  • #3519 dc85865 Thanks @VaguelySerious! - Turn resilient step dispatch off by default. Set WORKFLOW_RESILIENT_STEP_DISPATCH=1 to opt back in.

  • #3479 b589460 Thanks @VaguelySerious! - Replay-context event writes now always report the log position they replayed from, and the WORKFLOW_PRECONDITION_GUARD flag is removed.

  • #3410 c1a5c74 Thanks @alangenfeld! - Surface typed terminal errors when stream retention expires.

  • Updated dependencies [600b096, dc85865, efbc408, a0ccfe0, dc85865, 7683130, dc85865, b589460, c1a5c74, 8d8b7b3, 0f4b35f, 01991ed]:

    • @workflow/world@5.0.0-beta.27
    • @workflow/world-vercel@5.0.0-beta.38
    • @workflow/world-local@5.0.0-beta.36
    • @workflow/errors@5.0.0-beta.17

@workflow/world@5.0.0-beta.27

Minor Changes

  • #3390 600b096 Thanks @alangenfeld! - Add a bounded batch analytics event lookup for enriching canonical event pages.

  • #3365 7683130 Thanks @TooTallNate! - Resilient step dispatch: newly created steps are published to the queue in parallel with their step_created event write, with the serialized input carried on the message (stepInput) so the consumer re-ensures the event if the direct write failed transiently — mirroring resilient start (runInput) and resilient hook resume (hookInput). Worlds that enforce the precondition guard keep the sequential create-then-publish dispatch (only sequencing gives the message a happens-after edge over the create's guard verdict); step-dispatch idempotency keys are now step-identity-scoped. Disable via WORKFLOW_RESILIENT_STEP_DISPATCH=0.

Patch Changes

  • #3519 dc85865 Thanks @VaguelySerious! - Remove the preconditionGuard World capability. A stale replay-context write no longer needs to be rejected: a reader holds a prefix of the log, replay is deterministic on a prefix, and the writer's next write reports the events it was pushed past.

  • #3381 efbc408 Thanks @VaguelySerious! - Ignore duplicate events that a concurrent replay wrote for an entity the event log already records, instead of failing the run with a corrupted event log

  • #3437 a0ccfe0 Thanks @karthikscale3! - Add OTEL telemetry for hook-triggered time-to-resume: workflow.resume.total_ms plus a non-overlapping phase breakdown, on the first durable step after a resume.

  • #3519 dc85865 Thanks @VaguelySerious! - Require every event id the runtime reads to be a log position. requireEventSlot replaces the lenient decode that returned "no position" for an id that is not a slot.

  • #3519 dc85865 Thanks @VaguelySerious! - Slot-numbered event ids are a requirement of the World contract, not a capability. The slotEventIds flag is gone, and the conformance suite now fails a World whose event ids are not positions.

  • #3479 b589460 Thanks @VaguelySerious! - Replay-context event writes now always report the log position they replayed from, and the WORKFLOW_PRECONDITION_GUARD flag is removed.

@workflow/world-vercel@5.0.0-beta.38

Minor Changes

  • #3390 600b096 Thanks @alangenfeld! - Add a bounded batch analytics event lookup for enriching canonical event pages.

  • #3365 7683130 Thanks @TooTallNate! - Resilient step dispatch: newly created steps are published to the queue in parallel with their step_created event write, with the serialized input carried on the message (stepInput) so the consumer re-ensures the event if the direct write failed transiently — mirroring resilient start (runInput) and resilient hook resume (hookInput). Worlds that enforce the precondition guard keep the sequential create-then-publish dispatch (only sequencing gives the message a happens-after edge over the create's guard verdict); step-dispatch idempotency keys are now step-identity-scoped. Disable via WORKFLOW_RESILIENT_STEP_DISPATCH=0.

Patch Changes

  • #3519 dc85865 Thanks @VaguelySerious! - Remove the preconditionGuard World capability. A stale replay-context write no longer needs to be rejected: a reader holds a prefix of the log, replay is deterministic on a prefix, and the writer's next write reports the events it was pushed past.

  • #3519 dc85865 Thanks @VaguelySerious! - Slot-numbered event ids are a requirement of the World contract, not a capability. The slotEventIds flag is gone, and the conformance suite now fails a World whose event ids are not positions.

  • #3479 b589460 Thanks @VaguelySerious! - Replay-context event writes now always report the log position they replayed from, and the WORKFLOW_PRECONDITION_GUARD flag is removed.

  • #3410 c1a5c74 Thanks @alangenfeld! - Surface typed terminal errors when stream retention expires.

  • #3504 8d8b7b3 Thanks @TooTallNate! - Retry 429 (ThrottleError) event writes in-process, honoring the server's Retry-After, bounded by a 30s cumulative wait budget per write. Previously a throttled event write escaped to the queue handler, whose retry directive can be delayed up to ~5 minutes by queue redelivery scheduling.

  • #3452 01991ed Thanks @shalabhc! - Restore the per-event client span on the WebSocket events transport (WORKFLOW_EVENTS_TRANSPORT=ws), and add a workflow.events.ws.connect span for the handshake. Event write spans now carry workflow.events.transport and workflow.event.type on both transports.

  • Updated dependencies [600b096, dc85865, efbc408, a0ccfe0, dc85865, 7683130, dc85865, b589460, c1a5c74]:

    • @workflow/world@5.0.0-beta.27
    • @workflow/errors@5.0.0-beta.17

@workflow/astro@5.0.0-beta.42

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@5.0.0-beta.42
    • @workflow/rollup@5.0.0-beta.42
    • @workflow/vite@5.0.0-beta.42

@workflow/builders@5.0.0-beta.42

Patch Changes

@workflow/cli@5.0.0-beta.42

Patch Changes

@workflow/errors@5.0.0-beta.17

Patch Changes

  • #3479 b589460 Thanks @VaguelySerious! - Replay-context event writes now always report the log position they replayed from, and the WORKFLOW_PRECONDITION_GUARD flag is removed.

  • #3410 c1a5c74 Thanks @alangenfeld! - Surface typed terminal errors when stream retention expires.

@workflow/nest@5.0.0-beta.42

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@5.0.0-beta.42

@workflow/next@5.0.0-beta.42

Patch Changes

@workflow/nitro@5.0.0-beta.42

Patch Changes

@workflow/nuxt@5.0.0-beta.42

Patch Changes

  • Updated dependencies []:
    • @workflow/nitro@5.0.0-beta.42

@workflow/rollup@5.0.0-beta.42

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@5.0.0-beta.42

@workflow/sveltekit@5.0.0-beta.42

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@5.0.0-beta.42
    • @workflow/rollup@5.0.0-beta.42
    • @workflow/vite@5.0.0-beta.42

@workflow/vite@5.0.0-beta.42

Patch Changes

  • Updated dependencies []:
    • @workflow/builders@5.0.0-beta.42

@workflow/vitest@5.0.0-beta.42

Patch Changes

@workflow/web@5.0.0-beta.42

Patch Changes

  • Updated dependencies [dc85865, 0f4b35f]:
    • @workflow/world-local@5.0.0-beta.36

@workflow/web-shared@5.0.0-beta.42

Patch Changes

workflow@5.0.0-beta.42

Patch Changes

  • Updated dependencies [9add9d7, dc85865, efbc408, a0ccfe0, dc85865, dc85865, 7683130, b589460, c1a5c74]:
    • @workflow/core@5.0.0-beta.42
    • @workflow/errors@5.0.0-beta.17
    • @workflow/cli@5.0.0-beta.42
    • @workflow/next@5.0.0-beta.42
    • @workflow/nitro@5.0.0-beta.42
    • @workflow/typescript-plugin@5.0.0-beta.5
    • @workflow/astro@5.0.0-beta.42
    • @workflow/nest@5.0.0-beta.42
    • @workflow/rollup@5.0.0-beta.42
    • @workflow/sveltekit@5.0.0-beta.42
    • @workflow/nuxt@5.0.0-beta.42

@workflow/world-local@5.0.0-beta.36

Patch Changes

  • #3519 dc85865 Thanks @VaguelySerious! - Slot-numbered event ids are a requirement of the World contract, not a capability. The slotEventIds flag is gone, and the conformance suite now fails a World whose event ids are not positions.

  • #3492 0f4b35f Thanks @VaguelySerious! - Fix CORRUPTED_EVENT_LOG after a hook resume that raced another writer or was interrupted mid-write, and deliver a raced resume exactly once instead of duplicating it or reporting a conflict.

  • Updated dependencies [600b096, dc85865, efbc408, a0ccfe0, dc85865, 7683130, dc85865, b589460, c1a5c74]:

    • @workflow/world@5.0.0-beta.27
    • @workflow/errors@5.0.0-beta.17

@workflow/world-postgres@5.0.0-beta.34

Patch Changes

@workflow/world-testing@5.0.0-beta.42

Patch Changes

@github-actions
github-actions Bot requested a review from a team as a code owner August 11, 2026 19:35
@vercel

vercel Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

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

Project Deployment Actions Updated (UTC)
workbench-python-workflow Error Error Aug 13, 2026 10:58pm

@github-actions github-actions Bot closed this Aug 11, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from fc9e588 to c1a5c74 Compare August 11, 2026 19:53
@github-actions github-actions Bot reopened this Aug 11, 2026
@github-actions github-actions Bot closed this Aug 11, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 4c027ce to 9add9d7 Compare August 11, 2026 20:28
@github-actions github-actions Bot reopened this Aug 11, 2026
@github-actions github-actions Bot closed this Aug 12, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 61c47ab to 600b096 Compare August 12, 2026 13:57
@github-actions github-actions Bot reopened this Aug 12, 2026
@github-actions github-actions Bot closed this Aug 12, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from a06aa5c to efbc408 Compare August 12, 2026 16:18
@github-actions github-actions Bot reopened this Aug 12, 2026
@github-actions github-actions Bot closed this Aug 12, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 40fe21f to a0ccfe0 Compare August 12, 2026 18:15
@github-actions github-actions Bot reopened this Aug 12, 2026
@github-actions github-actions Bot closed this Aug 12, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from f3ed6ee to 14b52ac Compare August 12, 2026 19:14
@github-actions github-actions Bot reopened this Aug 12, 2026
@github-actions github-actions Bot closed this Aug 12, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 0b65dfb to b589460 Compare August 12, 2026 20:09
@github-actions github-actions Bot reopened this Aug 12, 2026
@github-actions github-actions Bot closed this Aug 12, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 48f52fc to f1ef0cb Compare August 12, 2026 21:37
@github-actions github-actions Bot reopened this Aug 12, 2026
@github-actions github-actions Bot closed this Aug 13, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 28a4531 to 01991ed Compare August 13, 2026 07:07
@github-actions github-actions Bot reopened this Aug 13, 2026
@github-actions github-actions Bot closed this Aug 13, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 5e21336 to 3450c86 Compare August 13, 2026 15:59
@github-actions github-actions Bot reopened this Aug 13, 2026
@github-actions github-actions Bot closed this Aug 13, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from eaf9c61 to 0b7c967 Compare August 13, 2026 18:01
@github-actions github-actions Bot reopened this Aug 13, 2026
@github-actions github-actions Bot closed this Aug 13, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from d329688 to 8d8b7b3 Compare August 13, 2026 18:34
@github-actions github-actions Bot reopened this Aug 13, 2026
@github-actions github-actions Bot closed this Aug 13, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 4f0c2a7 to 834d1f9 Compare August 13, 2026 19:08
@github-actions github-actions Bot reopened this Aug 13, 2026
@github-actions github-actions Bot closed this Aug 13, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from b2665bd to dc85865 Compare August 13, 2026 22:58
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.

0 participants