Preserve stripped headers across redirect chains (
fbe07f1)
Deno’s HTTP client now carries redirect headers forward as chain state instead of rebuilding them from the original request on each hop. This fixes a bug where an Authorization header removed on one redirect could be accidentally restored on later redirects, while still preserving same-origin and same-host upgrade behavior.
Other misc changes
- Added a deterministic multi-hop redirect test using ephemeral local listeners.