From: Andrew Bonventre Date: Wed, 28 Aug 2019 20:07:39 +0000 (-0400) Subject: [release-branch.go1.13] doc/1.13: remove draft note and make various fixes X-Git-Tag: go1.13~5 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2f866fe20ffa2184411aefb983ee886ba3cefe97;p=gostls13.git [release-branch.go1.13] doc/1.13: remove draft note and make various fixes Updates #33954 Change-Id: Idfe71bf825adcd7cbf70cd139b3e779963394ff6 Reviewed-on: https://go-review.googlesource.com/c/go/+/192105 Run-TryBot: Andrew Bonventre TryBot-Result: Gobot Gobot Reviewed-by: Katie Hockman (cherry picked from commit dec16794cf9136f8887e08391c01f1265b876ddb) Reviewed-on: https://go-review.googlesource.com/c/go/+/192743 Reviewed-by: Dmitri Shuralyov --- diff --git a/doc/go1.13.html b/doc/go1.13.html index f13c0e58e7..6edf2604b7 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; } -

DRAFT RELEASE NOTES - Introduction to Go 1.13

+

Introduction to Go 1.13

- - 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.

Android

- Go programs are now compatible with Android Q. + Go programs are now compatible with Android 10.

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).

Illumos

@@ -781,7 +782,7 @@ godoc
net

- 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.

@@ -990,9 +993,10 @@ godoc
syscall/js

- 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.