Skip to content

Wrangler

2024-10-31

3.84.1

Patch Changes

2024-10-30

3.84.0

Minor Changes

Patch Changes

  • #7091 68a2a84 Thanks @taylorlee! - fix: synchronize observability settings during wrangler versions deploy

    When running wrangler versions deploy, Wrangler will now update observability settings in addition to logpush and tail_consumers. Unlike wrangler deploy, it will not disable observability when observability is undefined in wrangler.toml.

  • #7080 924ec18 Thanks @vicb! - chore(wrangler): update unenv dependency version

  • #7097 8ca4b32 Thanks @emily-shen! - fix: remove deprecation warnings for wrangler init

    We will not be removing wrangler init (it just delegates to create-cloudflare now). These warnings were causing confusion for users as it wrangler init is still recommended in many places.

  • #7073 656a444 Thanks @penalosa! - Internal refactor to remove es-module-lexer and support wrangler types for Workers with Durable Objects & JSX

  • #7024 bd66d51 Thanks @xortive! - fix: make individual parameters work for wrangler hyperdrive create when not using HoA

    wrangler hyperdrive create individual parameters were not setting the database name correctly when calling the api.

  • #7024 bd66d51 Thanks @xortive! - refactor: use same param parsing code for wrangler hyperdrive create and wrangler hyperdrive update

    ensures that going forward, both commands support the same features and have the same names for config flags

2024-10-24

3.83.0

Minor Changes

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

Patch Changes

2024-10-22

3.82.0

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]:

2024-10-17

3.81.0

Minor Changes

Patch Changes

  • #6963 a5ac45d Thanks @RamIdeas! - fix: make wrangler dev --remote respect wrangler.toml's account_id property.

    This was a regression in the --x-dev-env flow recently turned on by default.

  • #6996 b8ab809 Thanks @emily-shen! - fix: improve error messaging when accidentally using Workers commands in Pages project

    If we detect a Workers command used with a Pages project (i.e. wrangler.toml contains pages_output_build_dir), error with Pages version of command rather than "missing entry-point" etc.

2024-10-16

3.80.5

Patch Changes