Minor Changes
-
#4545
e5afae0
Thanks @G4brym! - Remove experimental/beta constellation commands and binding, please migrate to Workers AI, learn more here https://developers.cloudflare.com/workers-ai/.
This is not deemed a major version bump for Wrangler since these commands were never generally available. -
#6322
373248e
Thanks @IRCody! - Add cloudchamber scope to existing scopes instead of replacing them.When using any cloudchamber command the cloudchamber scope will now be added to the existing scopes instead of replacing them.
-
#6276
a432a13
Thanks @CarmenPopoviciu! - feat: Add support forwrangler.jsonc
This commit adds support for
wrangler.jsonc
config file for Workers. This feature is available behind the--experimental-json-config
flag (just likewrangler.json
).To use the new configuration file, add a
wrangler.jsonc
file to your Worker project and runwrangler dev --experimental-json-config
orwrangler deploy --experimental-json-config
.Please note that this work does NOT add
wrangler.json
orwrangler.jsonc
support for Pages projects! -
#6168
1ee41ff
Thanks @IRCody! - feature: Add list and remove subcommands to cloudchamber registries command.
Patch Changes
-
#6331
e6ada07
Thanks @threepointone! - fix: only warn about miniflare feature support (ai, vectorize, cron) onceWe have some warnings in local mode dev when trying to use ai bindings / vectorize / cron, but they are printed every time the worker is started. This PR changes the warning to only be printed once per worker start.