Minor Changes
-
#5119
b0bd413
Thanks @garrettgu10! - feature: Python support for remote dev -
#5118
30694a3
Thanks @garrettgu10! - fix: Including version identifiers in Python requirements.txt will now throw an error
Patch Changes
-
#5132
82a3f94
Thanks @mrbbot! - fix: switch default logging level ofunstable_dev()
towarn
When running
unstable_dev()
in its default "test mode", the logging level was set tonone
. This meant any Worker startup errors or helpful warnings wouldn't be shown. This change switches the default towarn
. To restore the previous behaviour, includelogLevel: "none"
in your options object:const worker = await unstable_dev("path/to/script.js", { logLevel: "none", });
-
#5128
d27e2a7
Thanks @taylorlee! - fix: Add legacy_env support to experimental versions upload command. -
#5087
a5231de
Thanks @dario-piotrowicz! - fix: makewrangler types
always generate ad.ts
file for module workersCurrently if a config file doesn't define any binding nor module, running
wrangler types
against such file would not produce ad.ts
file.Producing a
d.ts
file can however still be beneficial as it would define a correct
env interface (even if empty) that can be expanded/referenced by user code (this can
be particularly convenient for scaffolding tools that may want to always generate an
env interface).Example:
Beforewrangler types --env-interface MyEnv
run with an emptywrangler.toml
file
would not generate any file, after these change it would instead generate a file with
the following content:interface MyEnv { }
-
#5138
3dd9089
Thanks @G4brym! - fix: ensure Workers-AI local mode fetcher returns headers to client worker -
Updated dependencies [
42bcc72
,42bcc72
]:- miniflare@3.20240223.1