Skip to content

Version Packages (beta)#340

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

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

Conversation

@github-actions

@github-actions github-actions Bot commented May 16, 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.

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

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/cli@5.0.0-beta.37

Major Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove the standalone step URL API and stale generated route artifacts while keeping step registrations inside the combined flow output.

Patch Changes

  • Updated dependencies [cfe7570, b406a04, fd05393, 313a074, fc81f45, 62d570e, 62d570e, 62d570e, 62d570e, b610c46]:
    • @workflow/builders@5.0.0-beta.37
    • @workflow/core@5.0.0-beta.37
    • @workflow/world-vercel@5.0.0-beta.33
    • @workflow/world@5.0.0-beta.23
    • @workflow/utils@5.0.0-beta.7
    • @workflow/web@5.0.0-beta.37
    • @workflow/world-local@5.0.0-beta.31
    • @workflow/errors@5.0.0-beta.13

@workflow/core@5.0.0-beta.37

Major Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove the retired step route runtime and make queue health checks target the combined flow handler.

Patch Changes

  • #3069 fd05393 Thanks @TooTallNate! - Fix a false "exceeded max retries" run failure: the retry-ceiling guard counted duplicate step_started events written by invocations racing on the same pending batch as real attempts. The owned-recovery ceiling now counts only the owning message's own starts, and the background-step ceiling counts only bare (queue-delivered) starts.

  • #3088 fc81f45 Thanks @karthikscale3! - Stream writes dispatch the first chunk of an idle stream immediately (flush window default 0 instead of 10ms). Fast producers keep full batching via in-flight accumulation; set streamFlushIntervalMs (World option) or WORKFLOW_STREAM_FLUSH_INTERVAL_MS (env, takes precedence) above 0 to opt into a windowed leading edge.

  • #3078 b610c46 Thanks @karthikscale3! - Stream write batching now lives in the server writable itself (group commit), so raw ReadableStreams piped across workflow/step boundaries batch the same as getWritable() instead of sending one request per chunk.

  • Updated dependencies [313a074, fc81f45, 62d570e, 62d570e, 62d570e]:

    • @workflow/world-vercel@5.0.0-beta.33
    • @workflow/world@5.0.0-beta.23
    • @workflow/utils@5.0.0-beta.7
    • @workflow/world-local@5.0.0-beta.31
    • @workflow/errors@5.0.0-beta.13

@workflow/utils@5.0.0-beta.7

Major Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove the standalone step URL API and stale generated route artifacts while keeping step registrations inside the combined flow output.

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

Major Changes

Patch Changes

workflow@5.0.0-beta.37

Major Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove the retired step route runtime and make queue health checks target the combined flow handler.

Patch Changes

  • Updated dependencies [f11e9fe, fd05393, fc81f45, 3069b49, 62d570e, 62d570e, b610c46]:
    • @workflow/next@5.0.0-beta.37
    • @workflow/core@5.0.0-beta.37
    • @workflow/cli@5.0.0-beta.37
    • @workflow/nitro@5.0.0-beta.37
    • @workflow/utils@5.0.0-beta.7
    • @workflow/errors@5.0.0-beta.13
    • @workflow/astro@5.0.0-beta.37
    • @workflow/nest@5.0.0-beta.37
    • @workflow/nuxt@5.0.0-beta.37
    • @workflow/rollup@5.0.0-beta.37
    • @workflow/sveltekit@5.0.0-beta.37
    • @workflow/typescript-plugin@5.0.0-beta.5

@workflow/world@5.0.0-beta.23

Major Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove legacy step queue topics and payloads now that queued steps use the workflow topic and combined flow handler.

Patch Changes

  • #3088 fc81f45 Thanks @karthikscale3! - Stream writes dispatch the first chunk of an idle stream immediately (flush window default 0 instead of 10ms). Fast producers keep full batching via in-flight accumulation; set streamFlushIntervalMs (World option) or WORKFLOW_STREAM_FLUSH_INTERVAL_MS (env, takes precedence) above 0 to opt into a windowed leading edge.

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

Major Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove legacy step queue topics and payloads now that queued steps use the workflow topic and combined flow handler.

Patch Changes

  • Updated dependencies [fc81f45, 62d570e, 62d570e, 62d570e]:
    • @workflow/world@5.0.0-beta.23
    • @workflow/utils@5.0.0-beta.7
    • @workflow/errors@5.0.0-beta.13

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

Major Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove legacy step queue topics and payloads now that queued steps use the workflow topic and combined flow handler.

Patch Changes

  • #3064 cdb3db4 Thanks @joeyhotz! - On shutdown, abort stalled workflow and step HTTP deliveries after Graphile Worker's grace period so their Postgres job rows are unlocked through normal failure handling instead of waiting for stale-lock recovery; aborted deliveries still consume an attempt and retry only when budget remains. Add opt-in application-managed shutdown through applicationManagedShutdown or WORKFLOW_POSTGRES_APPLICATION_MANAGED_SHUTDOWN=1 so applications can await world.close() before closing their HTTP server and caller-owned pool.

  • Updated dependencies [fc81f45, 62d570e, 62d570e, 62d570e]:

    • @workflow/world@5.0.0-beta.23
    • @workflow/utils@5.0.0-beta.7
    • @workflow/world-local@5.0.0-beta.31
    • @workflow/errors@5.0.0-beta.13

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

Major Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove legacy step queue topics and payloads now that queued steps use the workflow topic and combined flow handler.

Patch Changes

  • #3062 313a074 Thanks @karthikscale3! - Add WORKFLOW_DISABLE_ANALYTICS_READS=1 to opt the world's analytics read namespace off, forcing workflow inspect list paths onto strongly consistent primary storage. Intended for tests and tooling that read entities immediately after writing them, where the analytics store's asynchronous ingestion can return stale pages.

  • Updated dependencies [fc81f45, 62d570e, 62d570e]:

    • @workflow/world@5.0.0-beta.23
    • @workflow/errors@5.0.0-beta.13

@workflow/builders@5.0.0-beta.37

Minor Changes

  • #3054 cfe7570 Thanks @VaguelySerious! - Add a discoverWorkflowsInNodeModules option (and WORKFLOW_DISCOVER_NODE_MODULES env var) to stop workflow discovery from descending into node_modules, skipping the cost of scanning third-party dependencies for workflow/step/serde code.

Patch Changes

  • #3052 b406a04 Thanks @copilot-swe-agent! - Hoist the shouldFollowImportsFromFile check out of processImportSpecifier so it is computed once per file instead of once per import specifier.

  • #3061 62d570e Thanks @NathanColosimo! - Remove the standalone step URL API and stale generated route artifacts while keeping step registrations inside the combined flow output.

  • Updated dependencies [fd05393, 313a074, fc81f45, 62d570e, 62d570e, 62d570e, b610c46]:

    • @workflow/core@5.0.0-beta.37
    • @workflow/world-vercel@5.0.0-beta.33
    • @workflow/utils@5.0.0-beta.7
    • @workflow/world-local@5.0.0-beta.31
    • @workflow/errors@5.0.0-beta.13

@workflow/astro@5.0.0-beta.37

Patch Changes

  • Updated dependencies [cfe7570, b406a04, 62d570e]:
    • @workflow/builders@5.0.0-beta.37
    • @workflow/rollup@5.0.0-beta.37
    • @workflow/vite@5.0.0-beta.37

@workflow/errors@5.0.0-beta.13

Patch Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove the retired step route runtime and make queue health checks target the combined flow handler.

  • Updated dependencies [62d570e]:

    • @workflow/utils@5.0.0-beta.7

@workflow/nest@5.0.0-beta.37

Patch Changes

@workflow/next@5.0.0-beta.37

Patch Changes

@workflow/nitro@5.0.0-beta.37

Patch Changes

  • #3061 62d570e Thanks @NathanColosimo! - Remove the standalone step URL API and stale generated route artifacts while keeping step registrations inside the combined flow output.

  • Updated dependencies [cfe7570, b406a04, fd05393, fc81f45, 62d570e, 62d570e, 62d570e, b610c46]:

    • @workflow/builders@5.0.0-beta.37
    • @workflow/core@5.0.0-beta.37
    • @workflow/web@5.0.0-beta.37
    • @workflow/rollup@5.0.0-beta.37
    • @workflow/vite@5.0.0-beta.37

@workflow/nuxt@5.0.0-beta.37

Patch Changes

  • Updated dependencies [cfe7570, b406a04, 62d570e]:
    • @workflow/builders@5.0.0-beta.37
    • @workflow/nitro@5.0.0-beta.37

@workflow/rollup@5.0.0-beta.37

Patch Changes

@workflow/sveltekit@5.0.0-beta.37

Patch Changes

  • Updated dependencies [cfe7570, b406a04, 62d570e]:
    • @workflow/builders@5.0.0-beta.37
    • @workflow/rollup@5.0.0-beta.37
    • @workflow/vite@5.0.0-beta.37

@workflow/vite@5.0.0-beta.37

Patch Changes

@workflow/vitest@5.0.0-beta.37

Patch Changes

@workflow/web@5.0.0-beta.37

Patch Changes

  • #3061 62d570e Thanks @NathanColosimo! - Check only the combined workflow endpoint in the observability health check.

  • Updated dependencies [62d570e]:

    • @workflow/world-local@5.0.0-beta.31

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

Patch Changes

  • #3055 6670e08 Thanks @VaguelySerious! - Fix flaky Local World tests caused by concurrent test servers sharing one data directory and re-enqueuing each other's in-flight runs on startup

  • #3061 62d570e Thanks @NathanColosimo! - Remove the standalone step URL API and stale generated route artifacts while keeping step registrations inside the combined flow output.

  • Updated dependencies [fd05393, fc81f45, 62d570e, 62d570e, 62d570e, b610c46]:

    • @workflow/core@5.0.0-beta.37
    • @workflow/world@5.0.0-beta.23
    • @workflow/cli@5.0.0-beta.37
    • @workflow/utils@5.0.0-beta.7
    • @workflow/world-local@5.0.0-beta.31
    • workflow@5.0.0-beta.37

@github-actions github-actions Bot closed this May 17, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from ea4bb93 to c43e721 Compare May 17, 2026 17:07
@github-actions github-actions Bot reopened this May 17, 2026
@github-actions github-actions Bot closed this May 19, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 9e3825c to fc6a265 Compare May 19, 2026 20:21
@github-actions github-actions Bot reopened this May 19, 2026
@github-actions github-actions Bot closed this May 20, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 8322a96 to 9d2a926 Compare May 20, 2026 18:49
@github-actions github-actions Bot reopened this May 20, 2026
@github-actions github-actions Bot closed this May 23, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 253b141 to a490f58 Compare May 23, 2026 16:21
@github-actions github-actions Bot reopened this May 23, 2026
@github-actions github-actions Bot closed this May 24, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 0d23250 to 503a929 Compare May 24, 2026 14:18
@github-actions github-actions Bot reopened this May 24, 2026
@github-actions github-actions Bot closed this May 26, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from c875ba4 to c58cae6 Compare May 26, 2026 09:35
@github-actions github-actions Bot reopened this May 26, 2026
@github-actions github-actions Bot closed this May 26, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 050f484 to 8633ebb Compare May 26, 2026 18:41
@github-actions github-actions Bot reopened this May 26, 2026
@github-actions github-actions Bot closed this May 27, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 974eac2 to b0d0561 Compare May 27, 2026 04:20
@github-actions github-actions Bot reopened this May 27, 2026
@github-actions github-actions Bot closed this May 28, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 3c8356c to 234412a Compare May 28, 2026 10:50
@github-actions github-actions Bot reopened this May 28, 2026
@github-actions github-actions Bot closed this May 29, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 6278396 to 55e1765 Compare May 29, 2026 02:41
@github-actions github-actions Bot reopened this May 29, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from be0cb86 to 7994629 Compare June 2, 2026 22:39
@github-actions github-actions Bot reopened this Jun 2, 2026
@github-actions github-actions Bot closed this Jun 4, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 7aac31d to b8a337c Compare June 4, 2026 22:23
@github-actions github-actions Bot reopened this Jun 4, 2026
@github-actions github-actions Bot closed this Jun 5, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from c2713b6 to ddc8a79 Compare June 5, 2026 21:56
@github-actions github-actions Bot reopened this Jun 5, 2026
@github-actions github-actions Bot closed this Jun 6, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from a9dafb2 to d674d6f Compare June 6, 2026 20:17
@github-actions github-actions Bot reopened this Jun 6, 2026
@github-actions github-actions Bot closed this Jun 7, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 5e0ca84 to a51910b Compare June 7, 2026 16:10
@github-actions github-actions Bot reopened this Jun 7, 2026
@github-actions github-actions Bot closed this Jun 9, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 5d22311 to 5b448ce Compare June 9, 2026 04:18
@github-actions github-actions Bot reopened this Jun 9, 2026
@github-actions github-actions Bot closed this Jun 9, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 6a4bbb2 to 3ae0ae2 Compare June 9, 2026 22:17
@github-actions github-actions Bot reopened this Jun 9, 2026
@github-actions github-actions Bot closed this Jun 10, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 04e3465 to bb6ff9a Compare June 10, 2026 21:46
@github-actions github-actions Bot reopened this Jun 10, 2026
@github-actions github-actions Bot closed this Jun 13, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 9277095 to 8262c2d Compare June 13, 2026 19:34
@github-actions github-actions Bot reopened this Jun 13, 2026
@github-actions github-actions Bot closed this Jun 14, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 3fc0b05 to 011d482 Compare June 14, 2026 17:55
@github-actions github-actions Bot reopened this Jun 14, 2026
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