Skip to content

Releases: cloudflare/workers-sdk

[email protected]

24 Oct 10:44
8a6d923
Compare
Choose a tag to compare

Minor Changes

  • #7000 1de309b Thanks @jkoe-cf! - feature: allowing users to specify a description when creating an event notification rule

Patch Changes

  • #7011 cef32c8 Thanks @GregBrimble! - fix: Correctly apply Durable Object migrations for namespaced scripts

  • #7067 4aa35c5 Thanks @LuisDuarte1! - Change trigger command to comply with the current workflows endpoint.

    This also adds an id option to allow users to optionally customize the new instance id.

  • #7082 3f1d79c Thanks @LuisDuarte1! - Change to new terminate instance workflow endpoint

  • #7036 e7ea600 Thanks @penalosa! - Reduce KV bulk upload bucket size to 1000 (from the previous 5000)

  • #7068 a2afcf1 Thanks @RamIdeas! - log warning of Workflows open-beta status when running deploying a Worker that contains a Workflow binding

  • #7065 b219296 Thanks @penalosa! - Internal refactor to remove React/ink from all non-wrangler dev flows

  • #7064 a90980c Thanks @penalosa! - Fix wrangler dev --remote --show-interactive-dev-session=false by only enabling hotkeys after account selection if hotkeys were previously enabled

  • #7045 5ef6231 Thanks @RamIdeas! - Add preliminary support for Workflows in wrangler dev

  • #7075 80e5bc6 Thanks @LuisDuarte1! - Fix params serialization when send the trigger workflow API

    Previously, wrangler did not parse the params sending it as a string to workflow's services.

  • Updated dependencies [760e43f, 8dc2b7d, 5ef6231]:

[email protected]

24 Oct 10:44
8a6d923
Compare
Choose a tag to compare

Patch Changes

  • #7066 760e43f Thanks @dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20241018.1 1.20241022.0
    @cloudflare/workers-types ^4.20241018.0 ^4.20241022.0
  • #7045 5ef6231 Thanks @RamIdeas! - Add preliminary support for Workflows in wrangler dev

@cloudflare/[email protected]

24 Oct 10:44
8a6d923
Compare
Choose a tag to compare

Patch Changes

@cloudflare/[email protected]

24 Oct 10:44
8a6d923
Compare
Choose a tag to compare

Minor Changes

@cloudflare/[email protected]

24 Oct 10:44
8a6d923
Compare
Choose a tag to compare

@cloudflare/[email protected]

24 Oct 10:44
8a6d923
Compare
Choose a tag to compare

Patch Changes

@cloudflare/[email protected]

23 Oct 13:57
8d03647
Compare
Choose a tag to compare

Patch Changes

  • #7040 44c954b Thanks @penalosa! - Try and ensure the d.ts types are definitely the ones loaded in quick-edit-extension

[email protected]

22 Oct 20:31
8d03647
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • #5737 9bf51d6 Thanks @penalosa! - Validate duplicate bindings across all binding types

  • #7010 1f6ff8b Thanks @vicb! - chore: update unenv dependency version

  • #7012 244aa57 Thanks @RamIdeas! - Add support for Workflow bindings (in deployments, not yet in local dev)

    To bind to a workflow, add a workflows section in your wrangler.toml:

    [[workflows]]
    binding = "WORKFLOW"
    name = "my-workflow"
    class_name = "MyDemoWorkflow"

    and export an entrypoint (e.g. MyDemoWorkflow) in your script:

    import { WorkflowEntrypoint } from "cloudflare:workers";
    
    export class MyDemoWorkflow extends WorkflowEntrypoint<Env, Params> {...}
  • #7039 e44f496 Thanks @penalosa! - Only show dev registry connection status in local dev

  • #7037 e1b93dc Thanks @emily-shen! - fix: ask for confirmation before creating a new Worker when uploading secrets

    Previously, wrangler secret put KEY --name non-existent-worker would automatically create a new Worker with the name non-existent-worker. This fix asks for confirmation before doing so (if running in an interactive context). Behaviour in non-interactive/CI contexts should be unchanged.

  • #7015 48152d6 Thanks @RamIdeas! - add wrangler workflows ... commands

  • #7041 045787b Thanks @CarmenPopoviciu! - Show wrangler pages dev --proxy warning

    On Node.js 17+, wrangler will default to fetching only the IPv6 address. With these changes we warn users that the process listening on the port specified via --proxy should be configured for IPv6.

  • #7018 127615a Thanks @emily-shen! - fix: log successful runs of d1 execute in local

  • #6970 a8ca700 Thanks @oliy! - Add HTTP authentication options for Workers Pipelines

  • #7005 6131ef5 Thanks @edmundhung! - fix: prevent users from passing multiple arguments to non array options

  • #7046 f9d5fdb Thanks @oliy! - Minor change to 3rd party API shape for Workers Pipelines

  • #6972 c794935 Thanks @penalosa! - Add (local) indicator to bindings using local data

  • Updated dependencies [809193e]:

[email protected]

22 Oct 20:31
8d03647
Compare
Choose a tag to compare

Patch Changes

  • #7035 809193e Thanks @dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20241011.1 1.20241018.1
    @cloudflare/workers-types ^4.20241011.0 ^4.20241018.0

[email protected]

22 Oct 20:31
8d03647
Compare
Choose a tag to compare

Patch Changes

  • #7016 381d04f Thanks @dependabot! - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    create-vue 3.10.4 3.11.1
  • #7052 7874ed2 Thanks @dependabot! - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    create-hono 0.14.1 0.14.2
  • #7034 0e91d42 Thanks @andyjessop! - fix: ensure that user is logged in before trying to choose account during pre-existing Worker C3 flow