Skip to content

Version Packages (beta) - #3256

Merged
karthikscale3 merged 1 commit into
mainfrom
changeset-release/main
Aug 3, 2026
Merged

Version Packages (beta)#3256
karthikscale3 merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actionsgithub-actionsBot commented Jul 31, 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/web@5.0.0-beta.39

Major Changes

  • #3298d06b55e Thanks @mitul-s! - Rename new-trace-viewer to trace-viewer and the public NewTraceViewer export to TraceViewer.

Patch Changes

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

Major Changes

  • #3296951695b Thanks @mitul-s! - Remove the legacy trace viewer, superseded by the new trace viewer. This drops the RunTraceView and WorkflowTraceViewer exports; use NewTraceViewer instead. The shared Span, SpanEvent, and Trace types now live in lib/trace-types and are still exported from the package root.

  • #3298d06b55e Thanks @mitul-s! - Rename new-trace-viewer to trace-viewer and the public NewTraceViewer export to TraceViewer.

Minor Changes

  • #31864a9d26b Thanks @alangenfeld! - Record the compute instance that ran each step attempt: CreateEventParams.computeInstanceId is stamped on step_started writes, forwarded in the world-vercel v4 frame meta alongside vercelId, read back on AnalyticsEvent / AnalyticsStep, and surfaced as "Compute Instance ID" in the observability attribute panel.

  • #3293a799025 Thanks @alangenfeld! - Surface an analytics event's vercelId in the run sidebar's Metadata list as a copyable "Request ID", and stop rendering the literal text null for a provenance id the analytics contract left empty. Also order Metadata rows missing from the panel's explicit order list after the listed ones instead of ahead of them, so a failed step's Error Code no longer renders above the step's own name.

Patch Changes

  • #323031f92df Thanks @karthikscale3! - Lazy hook resumption: on a fast path, resumeHook() writes the hook_received event and dispatches the workflow queue message concurrently instead of sequentially, cutting a round trip off resume latency. A (runId, resumeId) dedup constraint keeps the two writers converging on exactly one event; the runtime falls back to the sequential path when dedup support is unavailable or when WORKFLOW_DISABLE_LAZY_HOOK_RESUME=1. resumeHook() resolves to a ResumedHook (a Hook plus an optional resilientResume: true flag, set only when the direct write failed transiently and the resume was recovered via the queue consumer's re-ensure) — preserving the contract introduced alongside the resilient-resume work.

  • #3294dc4cf94 Thanks @mitul-s! - Use defined Geist typography utilities throughout the shared observability UI.

  • Updated dependencies [4a9d26b, ee944d2, 1471f25, 9cc11f5, 679dfa9, b732e91, 31f92df, 4174a6e, 4017597, 438eaa6, ee944d2]:

    • @workflow/core@5.0.0-beta.39
    • @workflow/world@5.0.0-beta.24

@workflow/core@5.0.0-beta.39

Minor Changes

  • #31864a9d26b Thanks @alangenfeld! - Record the compute instance that ran each step attempt: CreateEventParams.computeInstanceId is stamped on step_started writes, forwarded in the world-vercel v4 frame meta alongside vercelId, read back on AnalyticsEvent / AnalyticsStep, and surfaced as "Compute Instance ID" in the observability attribute panel.

  • #3244ee944d2 Thanks @pranaygp! - Stamp the creating client's environment into the queue message's runInput, and refuse a queue delivery whose run was created in a different environment than the consuming deployment runs in, so one run ID can no longer be forked into two environments.

  • #31451471f25 Thanks @VaguelySerious! - Strengthen the event-creation precondition guard: replay-context writes now also send the number of loaded events, so a snapshot that is missing an event is rejected instead of committing a divergent event log, and a rejection restarts the replay in-process (consuming the events a world may attach to the rejection) rather than re-committing the rejected payload or re-invoking over the queue. @workflow/world-local and @workflow/world-postgres do not implement the check.

  • #29899cc11f5 Thanks @alangenfeld! - Emit a faas.instance OTEL span attribute (a synthesized per-warm-instance id) on the flow and step route spans, so traces can distinguish which compute instance handled each request.

  • #323031f92df Thanks @karthikscale3! - Lazy hook resumption: on a fast path, resumeHook() writes the hook_received event and dispatches the workflow queue message concurrently instead of sequentially, cutting a round trip off resume latency. A (runId, resumeId) dedup constraint keeps the two writers converging on exactly one event; the runtime falls back to the sequential path when dedup support is unavailable or when WORKFLOW_DISABLE_LAZY_HOOK_RESUME=1. resumeHook() resolves to a ResumedHook (a Hook plus an optional resilientResume: true flag, set only when the direct write failed transiently and the resume was recovered via the queue consumer's re-ensure) — preserving the contract introduced alongside the resilient-resume work.

  • #1834438eaa6 Thanks @TooTallNate! - Make resumeHook() resilient to transient hook_received event write failures (429/5xx) by carrying the payload on the queue message for the runtime to materialize. Returned Hook gets a new resilientResume: true flag when this fallback path is taken.

Patch Changes

  • #3288679dfa9 Thanks @NathanColosimo! - Simplify hardened serialization: intrinsic captures assert at import instead of degrading per use, URLSearchParams now serializes natively on Node 18, and bound-function getters are reported as guest code (previously a getter defined via fn.bind() executed with an empty report).

  • #3257b732e91 Thanks @TooTallNate! - Serializing values built inside the node:vm workflow VM no longer executes workflow code, using engine brand checks and host intrinsics captured at boot.

  • #32734174a6e Thanks @VaguelySerious! - Treat an empty VERCEL_URL as not running on Vercel, so a .env.local left behind by vercel env pull no longer makes local runs fail with Invalid URL

  • #32084017597 Thanks @alangenfeld! - Report replay-divergence counts on event writes that recover or exhaust replay retries.

  • Updated dependencies [4a9d26b, 1471f25, c93f6f7, 31f92df, 4017597, 438eaa6, ee944d2, 2677653, aa78a7e, f05f642, ee944d2]:

    • @workflow/world@5.0.0-beta.24
    • @workflow/world-vercel@5.0.0-beta.35
    • @workflow/errors@5.0.0-beta.15
    • @workflow/world-local@5.0.0-beta.33

@workflow/errors@5.0.0-beta.15

Minor Changes

  • #31451471f25 Thanks @VaguelySerious! - Strengthen the event-creation precondition guard: replay-context writes now also send the number of loaded events, so a snapshot that is missing an event is rejected instead of committing a divergent event log, and a rejection restarts the replay in-process (consuming the events a world may attach to the rejection) rather than re-committing the rejected payload or re-invoking over the queue. @workflow/world-local and @workflow/world-postgres do not implement the check.

workflow@5.0.0-beta.39

Minor Changes

  • #31451471f25 Thanks @VaguelySerious! - Strengthen the event-creation precondition guard: replay-context writes now also send the number of loaded events, so a snapshot that is missing an event is rejected instead of committing a divergent event log, and a rejection restarts the replay in-process (consuming the events a world may attach to the rejection) rather than re-committing the rejected payload or re-invoking over the queue. @workflow/world-local and @workflow/world-postgres do not implement the check.

  • #323031f92df Thanks @karthikscale3! - Lazy hook resumption: on a fast path, resumeHook() writes the hook_received event and dispatches the workflow queue message concurrently instead of sequentially, cutting a round trip off resume latency. A (runId, resumeId) dedup constraint keeps the two writers converging on exactly one event; the runtime falls back to the sequential path when dedup support is unavailable or when WORKFLOW_DISABLE_LAZY_HOOK_RESUME=1. resumeHook() resolves to a ResumedHook (a Hook plus an optional resilientResume: true flag, set only when the direct write failed transiently and the resume was recovered via the queue consumer's re-ensure) — preserving the contract introduced alongside the resilient-resume work.

  • #1834438eaa6 Thanks @TooTallNate! - Make resumeHook() resilient to transient hook_received event write failures (429/5xx) by carrying the payload on the queue message for the runtime to materialize. Returned Hook gets a new resilientResume: true flag when this fallback path is taken.

Patch Changes

  • #3288679dfa9 Thanks @NathanColosimo! - Simplify hardened serialization: intrinsic captures assert at import instead of degrading per use, URLSearchParams now serializes natively on Node 18, and bound-function getters are reported as guest code (previously a getter defined via fn.bind() executed with an empty report).

  • #3257b732e91 Thanks @TooTallNate! - Serializing values built inside the node:vm workflow VM no longer executes workflow code, using engine brand checks and host intrinsics captured at boot.

  • Updated dependencies [4a9d26b, ee944d2, 1471f25, 9cc11f5, 679dfa9, b732e91, 31f92df, 4174a6e, 4017597, 438eaa6]:

    • @workflow/core@5.0.0-beta.39
    • @workflow/errors@5.0.0-beta.15
    • @workflow/cli@5.0.0-beta.39
    • @workflow/next@5.0.0-beta.39
    • @workflow/nitro@5.0.0-beta.39
    • @workflow/typescript-plugin@5.0.0-beta.5
    • @workflow/astro@5.0.0-beta.39
    • @workflow/nest@5.0.0-beta.39
    • @workflow/rollup@5.0.0-beta.39
    • @workflow/sveltekit@5.0.0-beta.39
    • @workflow/nuxt@5.0.0-beta.39

@workflow/world@5.0.0-beta.24

Minor Changes

  • #31864a9d26b Thanks @alangenfeld! - Record the compute instance that ran each step attempt: CreateEventParams.computeInstanceId is stamped on step_started writes, forwarded in the world-vercel v4 frame meta alongside vercelId, read back on AnalyticsEvent / AnalyticsStep, and surfaced as "Compute Instance ID" in the observability attribute panel.

  • #31451471f25 Thanks @VaguelySerious! - Strengthen the event-creation precondition guard: replay-context writes now also send the number of loaded events, so a snapshot that is missing an event is rejected instead of committing a divergent event log, and a rejection restarts the replay in-process (consuming the events a world may attach to the rejection) rather than re-committing the rejected payload or re-invoking over the queue. @workflow/world-local and @workflow/world-postgres do not implement the check.

  • #323031f92df Thanks @karthikscale3! - Lazy hook resumption: on a fast path, resumeHook() writes the hook_received event and dispatches the workflow queue message concurrently instead of sequentially, cutting a round trip off resume latency. A (runId, resumeId) dedup constraint keeps the two writers converging on exactly one event; the runtime falls back to the sequential path when dedup support is unavailable or when WORKFLOW_DISABLE_LAZY_HOOK_RESUME=1. resumeHook() resolves to a ResumedHook (a Hook plus an optional resilientResume: true flag, set only when the direct write failed transiently and the resume was recovered via the queue consumer's re-ensure) — preserving the contract introduced alongside the resilient-resume work.

  • #1834438eaa6 Thanks @TooTallNate! - Make resumeHook() resilient to transient hook_received event write failures (429/5xx) by carrying the payload on the queue message for the runtime to materialize. Returned Hook gets a new resilientResume: true flag when this fallback path is taken.

  • #3244ee944d2 Thanks @pranaygp! - Add an optional World.getEnvironment() hook and an optional environment field on RunInputSchema, so the environment a run was created in can travel with its queue message.

Patch Changes

  • #32084017597 Thanks @alangenfeld! - Report replay-divergence counts on event writes that recover or exhaust replay retries.

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

Minor Changes

  • #323031f92df Thanks @karthikscale3! - Lazy hook resumption: on a fast path, resumeHook() writes the hook_received event and dispatches the workflow queue message concurrently instead of sequentially, cutting a round trip off resume latency. A (runId, resumeId) dedup constraint keeps the two writers converging on exactly one event; the runtime falls back to the sequential path when dedup support is unavailable or when WORKFLOW_DISABLE_LAZY_HOOK_RESUME=1. resumeHook() resolves to a ResumedHook (a Hook plus an optional resilientResume: true flag, set only when the direct write failed transiently and the resume was recovered via the queue consumer's re-ensure) — preserving the contract introduced alongside the resilient-resume work.

Patch Changes

  • #32552677653 Thanks @AndrewBarba! - Bound stalled local queue deliveries and redeliver their durable messages instead of waiting indefinitely.

  • #3297aa78a7e Thanks @TooTallNate! - Converge a redelivered hook_received re-ensure on its already-committed (runId, resumeId) claim instead of rejecting with HookNotFoundError when the hook was disposed after the resume was recorded. The rejection made the queue consumer ack the redelivery as "nothing left to resume", silently dropping any continuation the message carried.

  • #3215f05f642 Thanks @AndrewBarba! - Retry transient EPERM unlink failures on Windows when deleting hook and entity JSON files. A concurrent reader briefly holding a file open made deleteJSON throw a share-violation EPERM, which surfaced as a failed operation — for example a failed run.cancel() while deleteAllHooksForRun raced hook polling.

  • Updated dependencies [4a9d26b, 1471f25, 31f92df, 4017597, 438eaa6, ee944d2]:

    • @workflow/world@5.0.0-beta.24
    • @workflow/errors@5.0.0-beta.15

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

Minor Changes

  • #31864a9d26b Thanks @alangenfeld! - Record the compute instance that ran each step attempt: CreateEventParams.computeInstanceId is stamped on step_started writes, forwarded in the world-vercel v4 frame meta alongside vercelId, read back on AnalyticsEvent / AnalyticsStep, and surfaced as "Compute Instance ID" in the observability attribute panel.

  • #31451471f25 Thanks @VaguelySerious! - Strengthen the event-creation precondition guard: replay-context writes now also send the number of loaded events, so a snapshot that is missing an event is rejected instead of committing a divergent event log, and a rejection restarts the replay in-process (consuming the events a world may attach to the rejection) rather than re-committing the rejected payload or re-invoking over the queue. @workflow/world-local and @workflow/world-postgres do not implement the check.

  • #323031f92df Thanks @karthikscale3! - Lazy hook resumption: on a fast path, resumeHook() writes the hook_received event and dispatches the workflow queue message concurrently instead of sequentially, cutting a round trip off resume latency. A (runId, resumeId) dedup constraint keeps the two writers converging on exactly one event; the runtime falls back to the sequential path when dedup support is unavailable or when WORKFLOW_DISABLE_LAZY_HOOK_RESUME=1. resumeHook() resolves to a ResumedHook (a Hook plus an optional resilientResume: true flag, set only when the direct write failed transiently and the resume was recovered via the queue consumer's re-ensure) — preserving the contract introduced alongside the resilient-resume work.

  • #3244ee944d2 Thanks @pranaygp! - Implement getEnvironment(), reporting the environment this client's writes are attributed to from the same resolution that produces the x-vercel-environment request header.

Patch Changes

@workflow/astro@5.0.0-beta.39

Patch Changes

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

@workflow/builders@5.0.0-beta.39

Patch Changes

@workflow/cli@5.0.0-beta.39

Patch Changes

@workflow/nest@5.0.0-beta.39

Patch Changes

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

@workflow/next@5.0.0-beta.39

Patch Changes

@workflow/nitro@5.0.0-beta.39

Patch Changes

@workflow/nuxt@5.0.0-beta.39

Patch Changes

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

@workflow/rollup@5.0.0-beta.39

Patch Changes

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

@workflow/sveltekit@5.0.0-beta.39

Patch Changes

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

@workflow/vite@5.0.0-beta.39

Patch Changes

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

@workflow/vitest@5.0.0-beta.39

Patch Changes

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

Patch Changes

  • #323031f92df Thanks @karthikscale3! - Lazy hook resumption: on a fast path, resumeHook() writes the hook_received event and dispatches the workflow queue message concurrently instead of sequentially, cutting a round trip off resume latency. A (runId, resumeId) dedup constraint keeps the two writers converging on exactly one event; the runtime falls back to the sequential path when dedup support is unavailable or when WORKFLOW_DISABLE_LAZY_HOOK_RESUME=1. resumeHook() resolves to a ResumedHook (a Hook plus an optional resilientResume: true flag, set only when the direct write failed transiently and the resume was recovered via the queue consumer's re-ensure) — preserving the contract introduced alongside the resilient-resume work.

  • Updated dependencies [4a9d26b, 1471f25, 31f92df, 4017597, 438eaa6, ee944d2, 2677653, aa78a7e, f05f642]:

    • @workflow/world@5.0.0-beta.24
    • @workflow/errors@5.0.0-beta.15
    • @workflow/world-local@5.0.0-beta.33

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

Patch Changes

@github-actions
github-actionsBot requested review from a team and ijjk as code ownersJuly 31, 2026 15:28
@vercel

vercelBot commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

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

ProjectDeploymentActionsUpdated (UTC)
example-nextjs-workflow-turbopackReadyReadyPreviewJul 31, 2026 3:47pm
example-nextjs-workflow-webpackReadyReadyPreviewJul 31, 2026 3:47pm
example-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-astro-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-express-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-fastify-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-hono-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-nestjs-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-nitro-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-nuxt-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-sveltekit-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-tanstack-start-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workbench-vite-workflowReadyReadyPreviewJul 31, 2026 3:47pm
workflow-docsReadyReadyPreview, v0Jul 31, 2026 3:47pm
workflow-swc-playgroundReadyReadyPreviewJul 31, 2026 3:47pm
workflow-tarballsReadyReadyPreviewJul 31, 2026 3:47pm
workflow-webReadyReadyPreviewJul 31, 2026 3:47pm

@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 0929ee4 to 11dc036CompareJuly 31, 2026 17:10
@github-actionsgithub-actionsBot reopened this Jul 31, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from d92d784 to 3c7875aCompareJuly 31, 2026 17:22
@github-actionsgithub-actionsBot reopened this Jul 31, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from f68e6c4 to 4017597CompareJuly 31, 2026 19:38
@github-actionsgithub-actionsBot reopened this Jul 31, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 2b4d139 to 31f92dfCompareAugust 3, 2026 15:44
@github-actionsgithub-actionsBot reopened this Aug 3, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from d9c5ab9 to ba2cddcCompareAugust 3, 2026 15:47
@github-actionsgithub-actionsBot reopened this Aug 3, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from dfa59bc to a799025CompareAugust 3, 2026 18:06
@github-actionsgithub-actionsBot reopened this Aug 3, 2026
@github-actions

github-actionsBot commented Aug 3, 2026

Copy link
Copy Markdown
ContributorAuthor

🧪 E2E Test Results

Some tests failed

❌ Failed E2E Tests

▲ Vercel Production (9 failed)

example (1 failed):

  • AbortController abortParallelWorkflow: abort cancels all parallel steps

express (1 failed):

  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_41KZ4P7EZ90GKE7W5CKRQ2S87Z | 🔍 observability

fastify (1 failed):

  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps

hono (2 failed):

  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_41KZ4P14EZ0GZ98M3NM1TE61QZ | 🔍 observability
  • setAttributes fire-and-forget: void setAttributes lands without awaiting

nextjs-turbopack (1 failed):

  • outputStreamWorkflow - getTailIndex and getChunks getChunks returns same content as reading the stream

nextjs-webpack (1 failed):

  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_41KZ4NY8JP0GK0J4F5DKGFNB3B | 🔍 observability

nitro (2 failed):

  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps

💻 Local Development (2 failed)

fastify-stable (1 failed):

  • webhookWorkflow | wrun_41KZ4NKGGS0GHQNMD3NMCMC01G

sveltekit-stable (1 failed):

  • webhookWorkflow | wrun_41KZ4NKGGS0GHQNMD3NMCMC01G

📋 Other (2 failed)

e2e-vercel-prod-nest (2 failed):

  • fibonacciWorkflow - recursive workflow composition via start() | wrun_41KZ4P2D440GVQ2X0EGF76KGGJ
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch

E2E Test Summary

Summary
PassedFailedSkippedTotal
❌ ▲ Vercel Production144692391694
❌ 💻 Local Development148422081694
✅ 📦 Local Production162102271848
✅ 🐘 Local Postgres162102271848
✅ 🪟 Windows15400154
❌ 📋 Other101822121232
✅ vercel-multi-region270027
Total73711311138497
Details by Category

❌ ▲ Vercel Production

AppPassedFailedSkipped
✅ astro126028
❌ example125128
❌ express125128
❌ fastify125128
❌ hono124228
❌ nextjs-turbopack15013
❌ nextjs-webpack15013
❌ nitro124228
✅ nuxt126028
✅ sveltekit14509
✅ vite126028

❌ 💻 Local Development

AppPassedFailedSkipped
✅ astro-stable128026
✅ express-stable128026
❌ fastify-stable127126
✅ hono-stable128026
✅ nextjs-turbopack-canary135019
✅ nextjs-turbopack-stable15400
✅ nextjs-webpack-stable15400
✅ nitro-stable128026
✅ nuxt-stable128026
❌ sveltekit-stable14617
✅ vite-stable128026

✅ 📦 Local Production

AppPassedFailedSkipped
✅ astro-stable128026
✅ express-stable128026
✅ fastify-stable128026
✅ hono-stable128026
✅ nextjs-turbopack-canary135019
✅ nextjs-turbopack-stable15400
✅ nextjs-webpack-canary135019
✅ nextjs-webpack-stable15400
✅ nitro-stable128026
✅ nuxt-stable128026
✅ sveltekit-stable14707
✅ vite-stable128026

✅ 🐘 Local Postgres

AppPassedFailedSkipped
✅ astro-stable128026
✅ express-stable128026
✅ fastify-stable128026
✅ hono-stable128026
✅ nextjs-turbopack-canary135019
✅ nextjs-turbopack-stable15400
✅ nextjs-webpack-canary135019
✅ nextjs-webpack-stable15400
✅ nitro-stable128026
✅ nuxt-stable128026
✅ sveltekit-stable14707
✅ vite-stable128026

✅ 🪟 Windows

AppPassedFailedSkipped
✅ nextjs-turbopack15400

❌ 📋 Other

AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable128026
✅ e2e-local-dev-tanstack-start-128026
✅ e2e-local-postgres-nest-stable128026
✅ e2e-local-postgres-tanstack-start-128026
✅ e2e-local-prod-nest-stable128026
✅ e2e-local-prod-tanstack-start-128026
❌ e2e-vercel-prod-nest124228
✅ e2e-vercel-prod-tanstack-start126028

✅ vercel-multi-region

AppPassedFailedSkipped
✅ nextjs-turbopack2700

📋 View full workflow run

@github-actions

Copy link
Copy Markdown
ContributorAuthor

No backport to stable for bf4a591 (AI decision).

This is an automated changesets "Version Packages (beta)" commit that only bumps package versions, rewrites CHANGELOG.md files, and updates .changeset/pre.json for the main beta pre-release channel. Release plumbing of this kind is explicitly excluded from backports, and stable runs changesets in normal (non-pre) mode with its own independent versions.

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

bf4a591f12316c6575e5ac463c471223863b3df9

Sign up for freeto 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.

1 participant

@karthikscale3