From: Filippo Valsorda Date: Tue, 9 Jun 2020 01:19:01 +0000 (-0400) Subject: doc/go1.15: add remaining release notes for net/http and net/http/httputil X-Git-Tag: go1.15beta1~8 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cd8f8026bb3bf78889e406e3253aad047e49b2e4;p=gostls13.git doc/go1.15: add remaining release notes for net/http and net/http/httputil Updates #37419 Change-Id: I3e37b650475aad4430aacd4655c02e5081ca6f5e Reviewed-on: https://go-review.googlesource.com/c/go/+/237019 Reviewed-by: Dmitri Shuralyov --- diff --git a/doc/go1.15.html b/doc/go1.15.html index fc8ee2d31f..50f4fea5bc 100644 --- a/doc/go1.15.html +++ b/doc/go1.15.html @@ -639,8 +639,10 @@ Do not send CLs removing the interior tags from such phrases.
net/http
-

- TODO: https://golang.org/cl/231418: only support "chunked" in inbound Transfer-Encoding headers +

+ Parsing is now stricter as a hardening measure against request smuggling attacks: + non-ASCII white space is no longer trimmed like SP and HTAB, and support for the + "identity" Transfer-Encoding was dropped.

@@ -655,7 +657,9 @@ Do not send CLs removing the interior tags from such phrases.

- TODO: https://golang.org/cl/224897: make Switching Protocol requests (e.g. Websockets) cancelable + When a Switching Protocol (like WebSocket) request handled by + ReverseProxy + is canceled, the backend connection is now correctly closed.