diff --git a/doc/go1.13.html b/doc/go1.13.html index ef4e0123e6..5caae1315d 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -220,23 +220,31 @@ TODO
- TODO: https://golang.org/cl/130256: introduce DialerAndTLSConfigSupportsHTTP2 in Transport
+ The new field Transport.ForceAttemptHTTP2
+ controls whether HTTP/2 is enabled when a non-zero Dial
, DialTLS
, or DialContext
+ func or TLSClientConfig
is provided.
- TODO: https://golang.org/cl/140357: make Transport.MaxConnsPerHost work for HTTP/2
+ When reusing HTTP/2, the Transport
no longer performs unnecessary TLS handshakes.
- TODO: https://golang.org/cl/154383: make TimeoutHandler's ResponseWriter implement Pusher
+ TimeoutHandler
's
+ ResponseWriter
now implements the
+ Pusher
and Flusher
interfaces.
- TODO: https://golang.org/cl/167681: add Server BaseContext & ConnContext fields to control early context
+ The new Server
fields
+ BaseContext
and
+ ConnContext
+ allow finer control over the Context
values provided to requests and connections.
- TODO: https://golang.org/cl/173658: export Header.Clone, reduce its allocations, use it everywhere
+ The new Header
method
+ Clone
returns a copy of the receiver.