Skip to content

Releases: cloudflare/workers-sdk

@cloudflare/[email protected]

23 Sep 18:36
3f0fffc
Compare
Choose a tag to compare

Patch Changes

[email protected]

20 Sep 15:36
50977e4
Compare
Choose a tag to compare

Patch Changes

  • #6775 ecd82e8 Thanks @CarmenPopoviciu! - fix: Support switching between static and dynamic Workers

    This commit fixes the current behaviour of watch mode for Workers with assets, and adds support for switching between static and dynamic Workers within a single wrangler dev session.

  • #6762 2840b9f Thanks @petebacondarwin! - fix: error if a user inadvertently uploads a Pages _workers.js file or directory as an asset

  • #6778 61dd93a Thanks @CarmenPopoviciu! - fix: Error if Workers + Assets are run in remote mode

    Workers + Assets are currently supported only in local mode. We should throw an error if users attempt to use Workers with assets in remote mode.

  • #6782 7655505 Thanks @vicb! - chore: update unenv dependency version

  • #6777 9649dbc Thanks @penalosa! - chore: Update CI messaging

  • #6779 3e75612 Thanks @emily-shen! - fix: include asset binding in wrangler types

@cloudflare/[email protected]

20 Sep 15:36
50977e4
Compare
Choose a tag to compare

Patch Changes

[email protected]

19 Sep 17:59
fd68f6b
Compare
Choose a tag to compare

Patch Changes

  • #6743 b45e326 Thanks @petebacondarwin! - fix: ability to build tricky Node.js compat scenario Workers

    Adds support for non-default build conditions and platform via the WRANGLER_BUILD_CONDITIONS and WRANGLER_BUILD_PLATFORM flags.

    Fixes #6742

  • #6776 02de103 Thanks @zebp! - fix: disable observability on deploy if not explicitly defined in config

    When deploying a Worker that has observability enabled in the deployed version but not specified in the wrangler.toml Wrangler will now set observability to disabled for the new version to match the wrangler.toml as the source of truth.

  • Updated dependencies [2ddbb65]:

[email protected]

19 Sep 17:59
fd68f6b
Compare
Choose a tag to compare

Patch Changes

[email protected]

19 Sep 17:59
fd68f6b
Compare
Choose a tag to compare

Patch Changes

  • #6536 baa29db Thanks @dependabot! - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    @angular/create 18.1.4 18.2.0
  • #6766 fe0253d Thanks @dependabot! - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    create-remix 2.11.1 2.12.0
  • #6755 a602de0 Thanks @dario-piotrowicz! - fix: add missing nodejs_compat flag to c3 qwik template

    The c3 qwik template doesn't include the nodejs_compat but qwik seems to be using
    AsyncLocalStorage, so newly created applications do display a warning regarding it
    missing, fix the above issue by adding the missing compat flag

  • #6755 a602de0 Thanks @dario-piotrowicz! - - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    create-qwik 1.5.7 1.9.0

@cloudflare/[email protected]

19 Sep 17:59
fd68f6b
Compare
Choose a tag to compare

@cloudflare/[email protected]

19 Sep 17:59
fd68f6b
Compare
Choose a tag to compare

Patch Changes

[email protected]

18 Sep 19:12
02c8952
Compare
Choose a tag to compare

Patch Changes

  • #6744 e3136f9 Thanks @petebacondarwin! - chore: update unenv dependency version

  • #6749 9a06f88 Thanks @CarmenPopoviciu! - fix: Throw error when attempting to configure Workers with assets and tail consumers

    Tail Workers are currently not supported for Workers with assets. This commit ensures we throw a corresponding error if users are attempting to configure tail_consumers via their configuration file, for a Worker with assets. This validation is applied for all wrangler dev, wrangler deploy, wrangler versions upload.

  • #6746 0deb42b Thanks @GregBrimble! - fix: Fix assets upload message to correctly report number of uploaded assets

  • #6745 6dbbb88 Thanks @jonesphillip! - fix: r2 bucket notification get <bucket_name> has been marked deprecated in favor of r2 bucket notification list <bucket_name> to reflect behavior.

  • Updated dependencies [2407c41]:

[email protected]

18 Sep 19:11
02c8952
Compare
Choose a tag to compare

Patch Changes

  • #6514 2407c41 Thanks @CarmenPopoviciu! - fix: Fix Miniflare regression introduced in #5570

    PR #5570 introduced a regression in Miniflare, namely that declaring Queue Producers like queueProducers: { "MY_QUEUE": "my-queue" } no longer works. This commit fixes the issue.

    Fixes #5908