miniflare@5.20260815.0-alpha
Pre-releasePatch Changes
-
#15206
1277a72Thanks @petebacondarwin! - Recover automatically from a partially downloaded Chrome install for the Browser Run bindingIf the Chrome download for a
browserbinding was interrupted — a cancelled dev session, a killed test run, a machine going to sleep — the next launch could fail indefinitely withFailed to launch the browser process!, usually alongside a message about being unable to loadresources.pak.@puppeteer/browserstreats an install as present as soon as the executable exists, and the Chrome archives extract alphabetically, so the executable is written long before the resources it needs. Every subsequent launch then reused the half-written directory, and the only way out was deleting the Chrome cache by hand.Miniflare now detects this: an install that Chrome has never successfully started from is cleared and re-downloaded on a failed launch, rather than reused forever. Overlapping launches also share a single download instead of racing to populate the same directory.
-
#15231
4f922dcThanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
Dependency From To @cloudflare/workers-types ^5.20260811.1 ^5.20260814.1 workerd 1.20260811.1 1.20260814.1 -
#15248
4d74b8dThanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
Dependency From To @cloudflare/workers-types ^5.20260814.1 ^5.20260815.1 workerd 1.20260814.1 1.20260815.1 -
#15143
2e0c962Thanks @teamleaderleo! - Preventworkerdfrom remaining running during Miniflare shutdown when browser or proxy cleanup is slow or fails.