From 2f866fe20ffa2184411aefb983ee886ba3cefe97 Mon Sep 17 00:00:00 2001
From: Andrew Bonventre
-
- Go 1.13 is not yet released. These are work-in-progress
- release notes. Go 1.13 is expected to be released in August 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.
DRAFT RELEASE NOTES - Introduction to Go 1.13
+Introduction to Go 1.13
Android
Darwin
@@ -139,7 +139,8 @@ Do not send CLs removing the interior tags from such phrases.
As announced in the Go 1.12 release notes,
Go 1.13 now requires FreeBSD 11.2 or later;
support for previous versions has been discontinued.
- FreeBSD 12.0 or later requires a kernel with the COMPAT_FREEBSD11 option set (this is the default).
+ FreeBSD 12.0 or later requires a kernel with the 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
.