diff --git a/doc/go1.13.html b/doc/go1.13.html index 00fd4628da..b5e6257008 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -169,12 +169,15 @@ TODO

Tools

-

-TODO -

-

Modules

+

+ go + get in module mode now supports the version suffix + @patch to request the latest patch release. + TODO(bcmills): expand. +

+

Version validation

@@ -231,6 +234,27 @@ TODO

replace github.com/docker/docker v1.14.0-0.20190319215453-e7b5f7dbe98c => github.com/docker/docker v0.7.3-0.20190319215453-e7b5f7dbe98c

+

Go command

+ +

+ The new go + build flag -trimpath removes all file system paths + from the compiled executable, to improve build reproducibility. +

+ +

+ The go build flag -tags now takes a + comma-separated list of build tags, to allow for multiple tags in + GOFLAGS. The + space-separated form is deprecated but still recognized and will be maintained. +

+ +

+ go + generate now sets the generate build tag so that + files may be searched for directives but ignored during build. +

+

Compiler toolchain

@@ -363,11 +387,6 @@ TODO generally TODO

- - - - -
bytes

@@ -403,6 +422,11 @@ TODO and ParsePKIXPublicKey functions.

+

+ The paths searched for system roots now include /etc/ssl/cert.pem + to support the default location in Alpine Linux 3.7+. +

+
database/sql
@@ -471,11 +495,11 @@ TODO
math/big

- TODO: https://golang.org/cl/160682: implement Rat.SetUint64 + The new Rat.SetUint64 method sets the Rat to a uint64 value.

- TODO: https://golang.org/cl/168237: accept non-decimal floats with Rat.SetString + Rat.SetString now accepts non-decimal floating point representations.