-
Features
-
Force flag for kv commands to avoid user confirmation prompt - andersquist, pull/2100
Make it possible to override any user confirmation prompt when performing KV bulk deletes.
-
-
Fixes
-
Allow running
wrangler dev
without an account_id - jyn514, pull/2030Previously, running it with no account_id and no config in ~/.wrangler would give an error
-
Don't delete unused assets for sites - threepointone, pull/2096
We have a consistency issue when after uploading a new site, it takes a while for the worker to propagate, so incoming requests will try to fetch older assets, and 404.
-
Allow host to be passed while authenticated - jspspike, pull/2091
This also adds an
--unauthenticated
flag to dev and fixes bad error message -
Fix wrangler dev session expiration - Electroid, pull/2071
This PR fixes the issue described in #2068. API errors related to syntax or preview token return the same
bad_request
status code, and the changes should address these two particular cases. -
Move TOML table fields come later than other fields - antiphoton, pull/2085
Reorder manifest fields so that table fields (
durable_objects
,kv_namespaces
,site
) come later than string fields. The reason table fields need to come later is the same as #2037. -
Only warn about compatibility dates on publish - Electroid, pull/2080
Changes the compatibility date warning to only occur when using
wrangler publish
. We do not want this warning to be sent when using other commands likewrangler tail
, etc.
-