diff --git a/doc/go1.13.html b/doc/go1.13.html index 7298f82889..f7a6aaefbd 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -713,6 +713,13 @@ godoc
+ The new fields Transport.WriteBufferSize
+ and Transport.ReadBufferSize
+ allow one to specify the sizes of the write and read buffers for a Transport.
+ If either field is zero, a default size of 4KB is used.
+
The new field Transport.ForceAttemptHTTP2
controls whether HTTP/2 is enabled when a non-zero Dial, DialTLS, or DialContext
@@ -729,6 +736,15 @@ godoc
Pusher and Flusher interfaces.
+ The StatusCode 103 "Early Hints" has been added.
+
+ On encountering unsupported transfer-encodings, http.Server now
+ returns a "501 Unimplemented" status as mandated by the HTTP specification RFC 7230 Section 3.3.1.
+
The new Server fields
BaseContext and
@@ -736,11 +752,26 @@ godoc
allow finer control over the Context values provided to requests and connections.
+ http.DetectContentType now correctly detects RAR signatures, and can now also detect RAR v5 signatures.
+
The new Header method
Clone returns a copy of the receiver.
+ A new function NewRequestWithContext has been added and it
+ accepts a Context that controls the entire lifetime of
+ the created outgoing Request, suitable for use with
+ Client.Do and Transport.RoundTrip
+
+ Transport now silently ignores a 408 "Request Timeout" response.
+