Minor Changes
-
#10703
c5c4ee5Thanks @danlapid! - Add support for streaming tail consumers in local dev. This is an experimental new feature that allows you to register atailStream()handler (compared to the existingtail()handler), which will receive streamed tail events from your Worker (compared to thetail()handler, which only receives batched events after your Worker has finished processing). -
#11251
7035804Thanks @penalosa! - When theWRANGLER_HIDE_BANNERenvironment variable is provided, Wrangler will no longer display a version banner. This applies to all commands.For instance, previously running
wrangler docswould give the following output:> wrangler docs ⛅️ wrangler 4.47.0 ─────────────────── Opening a link in your default browser: https://developers.cloudflare.com/workers/wrangler/commands/With
WRANGLER_HIDE_BANNER, this is now:> WRANGLER_HIDE_BANNER=true wrangler docs Opening a link in your default browser: https://developers.cloudflare.com/workers/wrangler/commands/ -
#11285
d014fa7Thanks @vicb! - Implement thewrangler r2 bulk put bucket-name --filename list.jsoncommand.The command uploads multiple objects to an R2 bucket.
The list of object is provided as a JSON encoded file via
--filename. It is a list of key and file (respectively the name and the content for the object).[ { "key": "/path/to/obj", "file": "/path/to/file_1"}, { "key": "/path/to/other/obj", "file": "/path/to/file_2"}, // ... ]Uploads are executed concurrently and the level of concurrency can be set via
--concurrency.The command supports the same options as
wrangler r2 object put, minus--file, and--pipeand plus--concurrency -
#11268
15b8460Thanks @penalosa! - Support SvelteKit projects in autoconfig -
#11258
2011b6aThanks @dario-piotrowicz! - Add--dry-runflag towrangler setupand also adryRunoption torunAutoConfig
Patch Changes
-
#11261
a352c7fThanks @petebacondarwin! - Avoid using object lookup for OAuth Error classes -
#11286
8e99766Thanks @dario-piotrowicz! - fix: make sure thatexperimental_patchConfigdoesn't throw if it encounters anullvalue -
#11278
92afbbaThanks @ascorbic! - Fixes a bug that caused.dev.varsto be ignored in OpenNext -
#11244
65b4afeThanks @petebacondarwin! - Internal refactoring to improve error traceability in wrangler dev -
#11238
da8442fThanks @jamesopstad! - Addunstable_getDurableObjectClassNameToUseSQLiteMapexport. This is an internal function for use in the Vite plugin. -
#11266
09cb720Thanks @penalosa! - Use the smol-toml library for parsing TOML instead of @iarna/toml -
#11236
793e2b4Thanks @ascorbic! - Refresh expired preview tokens when running in remote dev mode -
#11286
8e99766Thanks @dario-piotrowicz! - fix:wrangler deployfailing to patch localwrangler.jsoncfiles if the remotetail_consumersvalue isnull -
#11275
9cbf126Thanks @dario-piotrowicz! - Ensure thatwrangler deployrun with a positional argument or with--assetsdoes not trigger the autoconfig process (even with--experimental-autoconfig) -
#11242
dd1e560Thanks @dario-piotrowicz! - Fix: make sure that remote proxy sessions's debug logs are enabled when the wrangler log level is set to "debug" -
Updated dependencies [
c5c4ee5,d0041e2,827d017]:- miniflare@4.20251113.0