Releases: cloudflare/workers-sdk
[email protected]
Minor Changes
-
#7230
6fe9533
Thanks @penalosa! - Turn onwrangler.json(c)
support by defaultWrangler 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 isJSON
rather thanTOML
. 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! - Addpreview_urls
toggle towrangler.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 onworkers.dev
, and the newpreviews_enabled
field of the enable-subdomain API will allow that. This change separates theworkers_dev
andpreview_urls
behavior duringwrangler triggers deploy
andwrangler versions upload
.preview_urls
defaults to true, and does not implicitly depend on routes the wayworkers_dev
does. -
#7308
1b1d01a
Thanks @gpanders! - Add a default image for cloudchamber create and modify commands -
#7232
7da76de
Thanks @toddmantell! - feat: implement queues info commandThis 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 versionPulls in the implementation of module.findSourceMap
-
Updated dependencies [
0d314ed
,476e5df
]:- @cloudflare/[email protected]
- [email protected]
[email protected]
Patch Changes
@cloudflare/[email protected]
Minor Changes
- #7303
0d314ed
Thanks @WillTaylorDev! - Preparatory work to allow invoking user worker ahead of assets
Patch Changes
- #7176
476e5df
Thanks @jamesopstad! - Remove incorrect logic in Asset Worker.
@cloudflare/[email protected]
[email protected]
Minor Changes
Patch Changes
- Updated dependencies [
6ba5903
]:- @cloudflare/[email protected]
- [email protected]
[email protected]
Minor Changes
- #6960
3e52c7c
Thanks @alan-agius4! - Update Angular template to version 19
@cloudflare/[email protected]
Minor Changes
- #7318
6ba5903
Thanks @WillTaylorDev! - Prevent same-schema attacks
@cloudflare/[email protected]
Patch Changes
- Updated dependencies [
31729ee
]:
[email protected]
Minor Changes
-
#7252
97acf07
Thanks @Maximo-Guk! - feat: Add production_branch and deployment_trigger to pages deploy detailed artifact for wrangler-action pages parity -
#7263
1b80dec
Thanks @danielrs! - Fix wrangler pages deployment (list|tail) environment filtering.
Patch Changes
-
#7314
a30c805
Thanks @Ankcorn! - Fix observability.logs.enabled validation -
#7285
fa21312
Thanks @penalosa! - Renamedirectory
toprojectRoot
and ensure it's relative to thewrangler.toml
. This fixes a regression which meant that.wrangler
temporary folders were inadvertently generated relative toprocess.cwd()
rather than the location of thewrangler.toml
file. It also renamesdirectory
toprojectRoot
, which affects the `unstable_startWorker() interface. -
Updated dependencies [
563439b
]:
[email protected]
Minor Changes
- #7286
563439b
Thanks @LuisDuarte1! - Add proper engine persistance in .wrangler and fix multiple workflows in miniflare