Patch Changes
-
#8681
7a57c14
Thanks @workers-devprod! - fix(miniflare): strip CF-Connecting-IP header from all outbound requests -
#9250
b2b5ee8
Thanks @workers-devprod! - fix: stripCF-Connecting-IP
header withinfetch
In v4.15.0, Miniflare began stripping the
CF-Connecting-IP
header via a global outbound service, which led to a TCP connection regression due to a bug in Workerd. This PR patches thefetch
API to strip the header during localwrangler dev
sessions as a temporary workaround until the underlying issue is resolved. -
#9211
56a0d6e
Thanks @petebacondarwin! - fix: ensure the fetch proxy message port is startedWhile Node.js will start the message port automatically when a
message
event listener is added,
this diverges from the standard Web API for message ports, which require you to explicitly start
listening on the port.