diff --git a/doc/go1.15.html b/doc/go1.15.html index ba68c65463647..aedf5281b489d 100644 --- a/doc/go1.15.html +++ b/doc/go1.15.html @@ -39,7 +39,7 @@

Darwin

support for previous versions has been discontinued.

-

+

As announced in the Go 1.14 release notes, Go 1.15 drops support for 32-bit binaries on macOS, iOS, iPadOS, watchOS, and tvOS (the darwin/386 @@ -208,6 +208,10 @@

Compiler

updated to satisfy the safety rules.

+

+ TODO: https://golang.org/cl/231497: merge branch 'dev.link' into master +

+

Core library

New embedded tzdata package

@@ -240,6 +244,22 @@

Minor changes to the library

TODO

+
debug/pe
+
+

+ TODO: https://golang.org/cl/222637: copy some consts from cmd/link/internal/ld +

+
+
+ +
crypto/rsa
+
+

+ VerifyPKCS1v15 now rejects invalid short signatures with missing leading zeroes. +

+
+
+
crypto/tls

@@ -252,6 +272,22 @@

Minor changes to the library

+
crypto/x509
+
+

+ TODO: https://golang.org/cl/205237: load roots from colon separated SSL_CERT_DIR in loadSystemRoots +

+
+
+ +
encoding/xml
+
+

+ TODO: https://golang.org/cl/203417: fix reserved namespace check to be case-insensitive +

+
+
+
flag

@@ -267,6 +303,30 @@

Minor changes to the library

+
fmt
+
+

+ TODO: https://golang.org/cl/215001: do not remove trailing zeros for %g and %G with #(sharp) flag +

+
+
+ +
io/ioutil
+
+

+ TODO: https://golang.org/cl/212597: reject path separators in TempDir, TempFile pattern +

+
+
+ +
math/big
+
+

+ TODO: https://golang.org/cl/230397: add (*Int).FillBytes +

+
+
+
net

@@ -291,6 +351,14 @@

Minor changes to the library

+
net/http
+
+

+ TODO: https://golang.org/cl/231418: only support "chunked" in inbound Transfer-Encoding headers +

+
+
+
net/http/httputil

@@ -299,6 +367,10 @@

Minor changes to the library

header when the incoming Request.Header map entry for that field is nil.

+ +

+ TODO: https://golang.org/cl/224897: make Switching Protocol requests (e.g. Websockets) cancelable +

@@ -361,6 +433,14 @@

Minor changes to the library

+
regexp
+
+

+ TODO: https://golang.org/cl/187919: add (*Regexp).SubexpIndex +

+
+
+
runtime

@@ -381,6 +461,18 @@

Minor changes to the library

the Go program will now reliably crash with a stack trace. In earlier releases the behavior was unpredictable.

+ +

+ TODO: https://golang.org/cl/211139: do not exit(2) if a Go built DLL receives a signal +

+ +

+ TODO: https://golang.org/cl/216401: prevent allocation when converting small ints to interfaces +

+ +

+ TODO: https://golang.org/cl/220578: allow float syscall return values on windows amd64 +

@@ -394,6 +486,14 @@

Minor changes to the library

+
strconv
+
+

+ TODO: https://golang.org/cl/216617: add ParseComplex and FormatComplex +

+
+
+
sync

@@ -463,5 +563,9 @@

Minor changes to the library

Ticker.Reset supports changing the duration of a ticker.

+ +

+ TODO: https://golang.org/cl/227878: quote original value in errors returned by ParseDuration +