Skip to content

Releases: cloudflare/workers-sdk

@cloudflare/[email protected]

02 Oct 13:46
1008d02

Choose a tag to compare

Patch Changes

[email protected]

30 Sep 10:36
76d2538

Choose a tag to compare

Patch Changes

  • #10602 ff82d80 Thanks @tukiminya! - fix: update Secrets Store command status from alpha to open-beta

  • #10623 7a6381c Thanks @IRCody! - Handle more cases for correctly resolving the full uri for an image when using containers push.

  • #10779 325d22e Thanks @hoodmane! - Add fallthrough: true for python_modules data rule

  • #10112 8d07576 Thanks @devin-ai-integration! - fix: allow Workflow bindings when calling getPlatformProxy()

    Workflow bindings are not supported in practice when using getPlatformProxy().
    But their existence in a Wrangler config file should not prevent other bindings from working.
    Previously, calling getPlatformProxy() would crash if there were any Workflow bindings defined.
    Now, instead, you get a warning telling you that these bindings are not available.

  • #10769 0a554f9 Thanks @penalosa! - Mark more errors as UserError to disable Sentry reporting

  • #10679 6244a9e Thanks @KianNH! - Fix rendering for nested objects in containers list and containers info [ID]

  • #10785 d09cab3 Thanks @pombosilva! - Workflows names and instance IDs are now properly validated with production limits.

  • Updated dependencies [6ff41a6, 0c208e1, 2432022, d0801b1, 0a554f9]:

[email protected]

30 Sep 10:36
76d2538

Choose a tag to compare

Patch Changes

  • #10775 6ff41a6 Thanks @dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20250924.0 1.20250926.0
  • #10799 0c208e1 Thanks @dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20250926.0 1.20250927.0
  • #10683 2432022 Thanks @yuripave! - fix: api proxy preserve multiple Set-Cookie headers

  • #10769 0a554f9 Thanks @penalosa! - Mark more errors as UserError to disable Sentry reporting

[email protected]

30 Sep 10:36
76d2538

Choose a tag to compare

Minor Changes

Patch Changes

  • #10567 64e403b Thanks @dependabot! - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    sv 0.9.2 0.9.6
  • #10793 aed5fa0 Thanks @dependabot! - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    create-qwik 1.16.0 1.16.1
  • #10794 6e56107 Thanks @dependabot! - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    create-docusaurus 3.8.1 3.9.1
  • #10790 c563ebe Thanks @petebacondarwin! - pin the URL for the react-router template since it was deleted from the project

  • #10780 89125b3 Thanks @dom96! - Python templates now create valid pyproject.toml/uv.lock files

@cloudflare/[email protected]

30 Sep 10:35
76d2538

Choose a tag to compare

Patch Changes

  • #10785 d09cab3 Thanks @pombosilva! - Workflows names and instance IDs are now properly validated with production limits.

@cloudflare/[email protected]

30 Sep 10:36
76d2538

Choose a tag to compare

@cloudflare/[email protected]

30 Sep 10:36
76d2538

Choose a tag to compare

Patch Changes

@cloudflare/[email protected]

30 Sep 10:36
76d2538

Choose a tag to compare

Patch Changes

  • #10805 d0801b1 Thanks @vicb! - Drop node:process polyfill when v2 is available

    Note that EventEmitters (on, off, addListener, removeListener, ...) used to be available on the import while they should not have been. They are now only available on the global process:

    import p from "node:process";
    
    // Working before this PR, not working after this PR
    p.on("exit", exitHandler);
    
    // Use the global process instead (works before and after the PR)
    process.on("exit", exitHandler);
    

@cloudflare/[email protected]

30 Sep 10:35
76d2538

Choose a tag to compare

@cloudflare/[email protected]

30 Sep 10:35
76d2538

Choose a tag to compare

Patch Changes

  • #10623 7a6381c Thanks @IRCody! - Handle more cases for correctly resolving the full uri for an image when using containers push.

  • #10808 a7f6966 Thanks @nikitassharma! - When returning the default managed registry, inspect the environment variable
    WRANGLER_API_ENVIRONMENT to determine if we should be returning the production
    or staging registry.

  • #10769 0a554f9 Thanks @penalosa! - Mark more errors as UserError to disable Sentry reporting