github cloudflare/workers-sdk wrangler@3.91.0

8 hours ago

Minor Changes

  • #7230 6fe9533 Thanks @penalosa! - Turn on wrangler.json(c) support by default

    Wrangler now supports both JSON (wrangler.json) and TOML (wrangler.toml) for it's configuration file. The format of Wrangler's configuration file is exactly the same across both languages, except that the syntax is JSON rather than TOML. e.g.

    name = "worker-ts"
    main = "src/index.ts"
    compatibility_date = "2023-05-04"

    would be interpreted the same as the equivalent JSON

    {
      "name": "worker-ts",
      "main": "src/index.ts",
      "compatibility_date": "2023-05-04"
    }
  • #7330 219109a Thanks @jonesphillip! - Added Oceania (oc) location hint as acceptable choice when creating an R2 bucket.

  • #7227 02a0e1e Thanks @taylorlee! - Add preview_urls toggle to wrangler.toml

    The current Preview URLs (beta) feature routes to version preview urls based on the status of the workers_dev config value. Beta users have requested the ability to enable deployment urls and preview urls separately on workers.dev, and the new previews_enabled field of the enable-subdomain API will allow that. This change separates the workers_dev and preview_urls behavior during wrangler triggers deploy and wrangler versions upload. preview_urls defaults to true, and does not implicitly depend on routes the way workers_dev does.

  • #7308 1b1d01a Thanks @gpanders! - Add a default image for cloudchamber create and modify commands

  • #7232 7da76de Thanks @toddmantell! - feat: implement queues info command

    This command allows users to get information on individual queues.

    To run this command use the queues info command with the name of a queue in the user's account.

    wrangler queues info my-queue-name

Patch Changes

  • #7319 5a2c93d Thanks @vicb! - chore(wrangler): update unenv dependency version

    Pulls in the implementation of module.findSourceMap

  • Updated dependencies [0d314ed, 476e5df]:

    • @cloudflare/workers-shared@0.9.0
    • miniflare@3.20241106.1

Don't miss a new workers-sdk release

NewReleases is sending notifications on new releases.