Patch Changes
-
#1957
b579c2b5
Thanks @caass! - Remove dependency on create-cloudflare.Previously,
wrangler generate
was a thin wrapper aroundcreate-cloudflare
. Now, we've moved over the logic from that package directly intowrangler
. -
#1985
51385e57
Thanks @rozenmd! - fix: hide deprecated flags from --help menu -
#1944
ea54623c
Thanks @CarmenPopoviciu! -wrangler pages publish
should prioritize_worker.js
over/functions
if both exist -
#1950
daf73fbe
Thanks @CarmenPopoviciu! -wrangler pages dev
should prioritize_worker.js
When using a
_worker.js
file, the entire/functions
directory should be ignored – this includes its routing and middleware characteristics. Currentlywrangler pages dev
does the reverse, by prioritizing
/functions
over_worker.js
. These changes fix the current behaviour. -
#1928
c1722170
Thanks @GregBrimble! - fix: Allow unsetting of automatically generatedLink
headers using_headers
and the! Link
operator -
#1928
c1722170
Thanks @GregBrimble! - fix: Only generateLink
headers from simple<link>
elements.Specifically, only those with the
rel
,href
and possiblyas
attributes. Any element with additional attributes will not be used to generate headers. -
#1974
a96f2585
Thanks @GregBrimble! - chore: Bump @cloudflare/pages-shared@0.0.7 and use TS directly -
#1965
9709d3a3
Thanks @JacobMGEvans! - chore: remove hidden on --from-dash
The --from-dash can now be used with the dashboard features to support moving Worker developmment to a local machine.resolves #1783
-
#1978
6006ae50
Thanks @JacobMGEvans! - chore: Undici 5.11.0 multipart/form-data support
The 5.11.0 version of Undici now supports multipart/form-data previously needed a ponyfill
we can now handle the multipart/form-data without any custom code.resolves #1977