diff --git a/doc/go1.13.html b/doc/go1.13.html index 97f2448c10..39c00150f6 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -15,13 +15,13 @@ Do not send CLs removing the interior tags from such phrases. main ul li { margin: 0.5em 0; } -
- - Go 1.13 is not yet released. These are work-in-progress - release notes. Go 1.13 is expected to be released in September 2019. - + The latest Go release, version 1.13, arrives six months after Go 1.12. + Most of its changes are in the implementation of the toolchain, runtime, and libraries. + As always, the release maintains the Go 1 promise of compatibility. + We expect almost all Go programs to continue to compile and run as before.
@@ -122,7 +122,7 @@ Do not send CLs removing the interior tags from such phrases.
- Go programs are now compatible with Android Q. + Go programs are now compatible with Android 10.
COMPAT_FREEBSD11
+ option set (this is the default).
- On Unix systems where use-vc is set in resolve.conf, TCP is used for DNS resolution.
+ On Unix systems where use-vc is set in resolv.conf, TCP is used for DNS resolution.
@@ -825,7 +826,8 @@ godoc
- When reusing HTTP/2, the Transport no longer performs unnecessary TLS handshakes.
+ Transport.MaxConnsPerHost now works
+ properly with HTTP/2.
@@ -872,7 +874,8 @@ godoc
- Transport now silently ignores a 408 "Request Timeout" response.
+ The Transport no longer logs errors when servers
+ gracefully shut down idle connections using a "408 Request Timeout" response.
- TypedArrayOf has been replaced by
+ TypedArrayOf has been replaced by
CopyBytesToGo and
- CopyBytesToJS for copying bytes between a byte slice and a Uint8Array.
+ CopyBytesToJS for copying bytes
+ between a byte slice and a Uint8Array.