Skip to content

Version Packages (beta) - #3466

Merged
VaguelySerious merged 1 commit into
mainfrom
changeset-release/main
Aug 14, 2026
Merged

Version Packages (beta)#3466
VaguelySerious merged 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

  • #3530 c041d3d Thanks @alangenfeld! - Retry e2e tests once in CI and surface retried-then-passed tests as flaky in annotations and the PR results comment.

  • #3531 60dd206 Thanks @alangenfeld! - Fix flaky timing-sensitive tests: stall-proof budgets for the events-consumer deferred-check tests and a sibling-matched budget for the TTL-expiration abort e2e test.

  • #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.

  • #3552 3560218 Thanks @AndrewBarba! - Preserve event-log order when adjacent hook payloads resume independent workflow branches.

  • #3542 de2a86c Thanks @VaguelySerious! - Breaking: New runs are created at spec version 6, and a World that declares an older spec version is now rejected before the first run rather than failing partway through one.

  • #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, 63cc09e, a0ccfe0, de2a86c, 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.

  • #3542 de2a86c Thanks @VaguelySerious! - Breaking: New runs are created at spec version 6, and a World that declares an older spec version is now rejected before the first run rather than failing partway through one.

  • #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.

  • #3536 63cc09e Thanks @shalabhc! - Add the Workflow client version, step-to-step overhead, and active latency optimizations to terminal event-write client spans for service and version latency analysis.

  • #3542 de2a86c Thanks @VaguelySerious! - Breaking: New runs are created at spec version 6, and a World that declares an older spec version is now rejected before the first run rather than failing partway through one.

  • #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, de2a86c, 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

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

Patch Changes

workflow@5.0.0-beta.42

Patch Changes

  • Updated dependencies [9add9d7, dc85865, efbc408, c041d3d, 60dd206, a0ccfe0, 3560218, de2a86c, 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

  • #3542 de2a86c Thanks @VaguelySerious! - Breaking: New runs are created at spec version 6, and a World that declares an older spec version is now rejected before the first run rather than failing partway through one.

  • #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, de2a86c, 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

  • #3542 de2a86c Thanks @VaguelySerious! - Breaking: New runs are created at spec version 6, and a World that declares an older spec version is now rejected before the first run rather than failing partway through one.

  • #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.

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

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

@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 14, 2026 6:38pm

@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 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
@github-actions github-actions Bot reopened this Aug 13, 2026
@github-actions github-actions Bot closed this Aug 14, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 318db55 to c041d3d Compare August 14, 2026 17:09
@github-actions github-actions Bot reopened this Aug 14, 2026
@github-actions

github-actions Bot commented Aug 14, 2026

Copy link
Copy Markdown
Contributor Author

🧪 E2E Test Results

All tests passed

⚠️ Flaky E2E Tests (passed on retry)

These tests failed at least once and passed on a retry. A recurring entry here is a real race worth investigating.

  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook (nuxt)
  • utf8StreamWorkflow (nitro)

E2E Test Summary

Summary
Passed Failed Skipped Total
✅ ▲ Vercel Production 3466 0 590 4056
✅ 💻 Local Development 3654 0 558 4212
✅ 📦 Local Production 3810 0 558 4368
✅ 🐘 Local Postgres 3810 0 558 4368
✅ 🪟 Windows 312 0 0 312
✅ vercel-multi-region 27 0 0 27
Total 15079 0 2264 17343
Details by Category

✅ ▲ Vercel Production

App Passed Failed Skipped
✅ astro-node 128 0 28
✅ astro-quickjs 128 0 28
✅ example-node 128 0 28
✅ example-quickjs 128 0 28
✅ express-node 128 0 28
✅ express-quickjs 128 0 28
✅ fastify-node 128 0 28
✅ fastify-quickjs 128 0 28
✅ hono-node 128 0 28
✅ hono-quickjs 128 0 28
✅ nest-node 128 0 28
✅ nest-quickjs 128 0 28
✅ nextjs-turbopack-node 153 0 3
✅ nextjs-turbopack-quickjs 153 0 3
✅ nextjs-webpack-node 153 0 3
✅ nextjs-webpack-quickjs 153 0 3
✅ nitro-node 128 0 28
✅ nitro-quickjs 128 0 28
✅ nuxt-node 128 0 28
✅ nuxt-quickjs 128 0 28
✅ sveltekit-node 147 0 9
✅ sveltekit-quickjs 147 0 9
✅ tanstack-start-node 128 0 28
✅ tanstack-start-quickjs 128 0 28
✅ vite-node 128 0 28
✅ vite-quickjs 128 0 28

✅ 💻 Local Development

App Passed Failed Skipped
✅ astro-stable-node 130 0 26
✅ astro-stable-quickjs 130 0 26
✅ express-stable-node 130 0 26
✅ express-stable-quickjs 130 0 26
✅ fastify-stable-node 130 0 26
✅ fastify-stable-quickjs 130 0 26
✅ hono-stable-node 130 0 26
✅ hono-stable-quickjs 130 0 26
✅ nest-stable-node 130 0 26
✅ nest-stable-quickjs 130 0 26
✅ nextjs-turbopack-canary-node 137 0 19
✅ nextjs-turbopack-canary-quickjs 137 0 19
✅ nextjs-turbopack-stable-quickjs 156 0 0
✅ nextjs-webpack-canary-node 137 0 19
✅ nextjs-webpack-canary-quickjs 137 0 19
✅ nextjs-webpack-stable-node 156 0 0
✅ nextjs-webpack-stable-quickjs 156 0 0
✅ nitro-stable-node 130 0 26
✅ nitro-stable-quickjs 130 0 26
✅ nuxt-stable-node 130 0 26
✅ nuxt-stable-quickjs 130 0 26
✅ sveltekit-stable-node 149 0 7
✅ sveltekit-stable-quickjs 149 0 7
✅ tanstack-start-node 130 0 26
✅ tanstack-start-quickjs 130 0 26
✅ vite-stable-node 130 0 26
✅ vite-stable-quickjs 130 0 26

✅ 📦 Local Production

App Passed Failed Skipped
✅ astro-stable-node 130 0 26
✅ astro-stable-quickjs 130 0 26
✅ express-stable-node 130 0 26
✅ express-stable-quickjs 130 0 26
✅ fastify-stable-node 130 0 26
✅ fastify-stable-quickjs 130 0 26
✅ hono-stable-node 130 0 26
✅ hono-stable-quickjs 130 0 26
✅ nest-stable-node 130 0 26
✅ nest-stable-quickjs 130 0 26
✅ nextjs-turbopack-canary-node 137 0 19
✅ nextjs-turbopack-canary-quickjs 137 0 19
✅ nextjs-turbopack-stable-node 156 0 0
✅ nextjs-turbopack-stable-quickjs 156 0 0
✅ nextjs-webpack-canary-node 137 0 19
✅ nextjs-webpack-canary-quickjs 137 0 19
✅ nextjs-webpack-stable-node 156 0 0
✅ nextjs-webpack-stable-quickjs 156 0 0
✅ nitro-stable-node 130 0 26
✅ nitro-stable-quickjs 130 0 26
✅ nuxt-stable-node 130 0 26
✅ nuxt-stable-quickjs 130 0 26
✅ sveltekit-stable-node 149 0 7
✅ sveltekit-stable-quickjs 149 0 7
✅ tanstack-start-node 130 0 26
✅ tanstack-start-quickjs 130 0 26
✅ vite-stable-node 130 0 26
✅ vite-stable-quickjs 130 0 26

✅ 🐘 Local Postgres

App Passed Failed Skipped
✅ astro-stable-node 130 0 26
✅ astro-stable-quickjs 130 0 26
✅ express-stable-node 130 0 26
✅ express-stable-quickjs 130 0 26
✅ fastify-stable-node 130 0 26
✅ fastify-stable-quickjs 130 0 26
✅ hono-stable-node 130 0 26
✅ hono-stable-quickjs 130 0 26
✅ nest-stable-node 130 0 26
✅ nest-stable-quickjs 130 0 26
✅ nextjs-turbopack-canary-node 137 0 19
✅ nextjs-turbopack-canary-quickjs 137 0 19
✅ nextjs-turbopack-stable-node 156 0 0
✅ nextjs-turbopack-stable-quickjs 156 0 0
✅ nextjs-webpack-canary-node 137 0 19
✅ nextjs-webpack-canary-quickjs 137 0 19
✅ nextjs-webpack-stable-node 156 0 0
✅ nextjs-webpack-stable-quickjs 156 0 0
✅ nitro-stable-node 130 0 26
✅ nitro-stable-quickjs 130 0 26
✅ nuxt-stable-node 130 0 26
✅ nuxt-stable-quickjs 130 0 26
✅ sveltekit-stable-node 149 0 7
✅ sveltekit-stable-quickjs 149 0 7
✅ tanstack-start-node 130 0 26
✅ tanstack-start-quickjs 130 0 26
✅ vite-stable-node 130 0 26
✅ vite-stable-quickjs 130 0 26

✅ 🪟 Windows

App Passed Failed Skipped
✅ nextjs-turbopack-node 156 0 0
✅ nextjs-turbopack-quickjs 156 0 0

✅ vercel-multi-region

App Passed Failed Skipped
✅ nextjs-turbopack 27 0 0

📋 View full workflow run

@github-actions

Copy link
Copy Markdown
Contributor Author

Sim World

Simulated world deterministic testing for races. Traces

🟠 Mint-ordered log — 3 fail of 41 total

log=mint-ordered · fence=per-spec

scenario outcome events virt replay violations
smoke-no-steps completed 3 0ms ok 0
smoke-one-step completed 6 0ms ok 0
hook-at-step-started completed 12 0ms ok 0
hook-at-step-completed completed 12 0ms ok 0
hook-at-hook-created completed 12 0ms ok 0
deadline-hook-wins completed 7 1.0h ok 0
deadline-expires completed 7 1.0h ok 0
long-sleep completed 11 30.0d ok 0
hook-never-arrives stalled 3 0ms skipped 0
step-retries-twice completed 10 2.0s ok 0
parallel-steps completed 9 0ms ok 0
hook-on-execution-state completed 12 0ms ok 0
peek-hook-before-branch completed 12 0ms ok 0
peek-hook-after-branch completed 12 0ms ok 0
peek-hook-at-registration completed 12 0ms ok 0
race-hook-before-probe completed 12 0ms ok 0
race-hook-after-probe completed 12 0ms ok 0
race-duplicate-delivery completed 13 0ms ok 0
attr-hook-before-step completed 11 0ms ok 0
attr-hook-after-step completed 11 0ms ok 0
attr-from-step-body completed 13 0ms ok 0
fork-hook-after-timeout completed 14 1.0m ok 0
fork-hook-before-timeout completed 14 1.0m ok 0
count-hook-after-timeout completed 17 1.0m ok 0
count-hook-before-timeout completed 20 1.0m ok 0
stale-read-step-count-fork completed 20 1.0m ok 0
stale-read-equal-step-counts completed 14 1.0m ok 0
step-vs-step-fork completed 12 0ms ok 0
step-vs-step-fork-fenced completed 12 0ms ok 0
fence-catches-benign-direction completed 12 5ms ok 0
in-flight-before-decision failed 9 1.0m MISMATCH 1
in-flight-before-decision-counted failed 9 1.0m MISMATCH 1
in-flight-after-decision failed 9 1.0m MISMATCH 1
stale-read-step-count-fork-fenced completed 20 1.0m ok 0
fork-hook-wins completed 13 1.0m ok 0
fork-timeout-wins completed 13 1.0m ok 0
unclaimed-payload-under-fork completed 17 1.0m ok 0
claimed-payload-under-fork completed 17 1.0m ok 0
writers-independent-step-bodies completed 12 0ms ok 0
writers-scripted-tempo completed 12 0ms ok 0
cancel-mid-step cancelled 7 0ms skipped 0

Full trace: world-sim-mint.txt

🟢 Append-only log — 0 fail of 41 total

log=append-only · fence=per-spec

scenario outcome events virt replay violations
smoke-no-steps completed 3 0ms ok 0
smoke-one-step completed 6 0ms ok 0
hook-at-step-started completed 12 0ms ok 0
hook-at-step-completed completed 12 0ms ok 0
hook-at-hook-created completed 12 0ms ok 0
deadline-hook-wins completed 7 1.0h ok 0
deadline-expires completed 7 1.0h ok 0
long-sleep completed 11 30.0d ok 0
hook-never-arrives stalled 3 0ms skipped 0
step-retries-twice completed 10 2.0s ok 0
parallel-steps completed 9 0ms ok 0
hook-on-execution-state completed 12 0ms ok 0
peek-hook-before-branch completed 12 0ms ok 0
peek-hook-after-branch completed 12 0ms ok 0
peek-hook-at-registration completed 12 0ms ok 0
race-hook-before-probe completed 12 0ms ok 0
race-hook-after-probe completed 12 0ms ok 0
race-duplicate-delivery completed 13 0ms ok 0
attr-hook-before-step completed 11 0ms ok 0
attr-hook-after-step completed 11 0ms ok 0
attr-from-step-body completed 13 0ms ok 0
fork-hook-after-timeout completed 14 1.0m ok 0
fork-hook-before-timeout completed 14 1.0m ok 0
count-hook-after-timeout completed 17 1.0m ok 0
count-hook-before-timeout completed 20 1.0m ok 0
stale-read-step-count-fork completed 20 1.0m ok 0
stale-read-equal-step-counts completed 14 1.0m ok 0
step-vs-step-fork completed 12 0ms ok 0
step-vs-step-fork-fenced completed 12 0ms ok 0
fence-catches-benign-direction completed 12 5ms ok 0
in-flight-before-decision completed 17 1.0m ok 0
in-flight-before-decision-counted completed 17 1.0m ok 0
in-flight-after-decision completed 19 2.0m ok 0
stale-read-step-count-fork-fenced completed 20 1.0m ok 0
fork-hook-wins completed 13 1.0m ok 0
fork-timeout-wins completed 13 1.0m ok 0
unclaimed-payload-under-fork completed 17 1.0m ok 0
claimed-payload-under-fork completed 17 1.0m ok 0
writers-independent-step-bodies completed 12 0ms ok 0
writers-scripted-tempo completed 12 0ms ok 0
cancel-mid-step cancelled 7 0ms skipped 0

Full trace: world-sim-append-only.txt

@github-actions

Copy link
Copy Markdown
Contributor Author

Event Log Race Repro

  • vercel no results — the lane wrote no result file, see its job log
  • local 6/14 regressions — 1 corrupt, 5 stuck
  • postgres 6/14 regressions — 6 stuck

Run History

Run Lane Total Complete Corrupt Stuck Other
08-14 18:32 vercel
local 14 8 1 5 0
postgres 14 8 0 6 0

Latest Non-Completed Runs

Lane Scenario Attempt Outcome Run
local step-storm 6 CORRUPTED_EVENT_LOG wrun_01M00QTPCJT0GB338X9BRGK7T9
local step-storm 5 stuck wrun_01M00QTPCKCWBYCJ13E52MNBZJ
local step-storm 3 stuck wrun_01M00QTPCFXV3T7GNZBVDE5EKY
local step-storm 2 stuck wrun_01M00QTPC6JM2ZK509MC1DQMTK
local step-storm 1 stuck wrun_01M00QTPCMQ56WYRK0Q5QCTFKS
local step-storm 4 stuck wrun_01M00QTPCGJ92W5A183BCVY3MQ
postgres step-storm 1 stuck wrun_01M00QTXM816R878ASW5NYB3AK
postgres step-storm 2 stuck wrun_01M00QTXM816R878ASW5NYB3AE
postgres step-storm 6 stuck wrun_01M00QTXM816R878ASW5NYB3AJ
postgres step-storm 3 stuck wrun_01M00QTXM816R878ASW5NYB3AF
postgres step-storm 4 stuck wrun_01M00QTXM816R878ASW5NYB3AG
postgres step-storm 5 stuck wrun_01M00QTXM816R878ASW5NYB3AH
Config

14 runs / step-storm 6, hook-storm 6, hook-sleep 2 / c8 / 6x8 / watchdog 2500ms / step 2200±250ms / stagger 400ms / poke 750ms / timeout 240000ms

@github-actions

Copy link
Copy Markdown
Contributor Author

No backport to stable for df1c7f1 (AI decision).

This is an automated changesets "Version Packages (beta)" commit that only bumps package versions, updates CHANGELOG.md files, and consumes changeset entries in .changeset/pre.json. Release/version-bump plumbing is branch-specific and is never backported; stable gets its own version bumps from its own changesets.

To override, re-run the Backport to stable workflow manually via workflow_dispatch and paste this commit SHA into the ref input:

df1c7f1969ab1ce7df0177c8f3e8d464c40a278b

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

Labels

event-log-race-repro Run the event log race reproduction job

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant