Patch Changes
-
#9387
e39a45f
Thanks @jamesopstad! - Prevent leaking Miniflare server logs. Logs that were previously filtered were leaking as they were changed to include colors. We now override the new MiniflareLog.logReady
method with a noop rather than filtering the logs. -
#9308
d3a6eb3
Thanks @dario-piotrowicz! - Add newmixedMode
experimental optionAdd a new
mixedMode
experimental option that allows uses to have their worker access remote resources during development (and preview)To enabled mixed mode set the corresponding option to the cloudflare plugin instantiation:
export default defineConfig({ plugins: [ cloudflare({ // ... experimental: { mixedMode: true }, }), ], });
Thereafter bindings configured with the
remote
flags will be accessible by workers' code when run viavite dev
andvite preview
-
Updated dependencies [
34b6174
,d9d937a
,e39a45f
,d3a6eb3
,b8f058c
,fdae3f7
]:- wrangler@4.18.0
- miniflare@4.20250525.0