From: Brad Fitzpatrick Date: Mon, 16 Jul 2018 18:22:26 +0000 (+0000) Subject: doc: add more to go1.11, sort, remove dups X-Git-Tag: go1.11beta2~92 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6c44036c1feb2f5bb97c9a2a4b42c1dfd19d520d;p=gostls13.git doc: add more to go1.11, sort, remove dups Change-Id: I20a82f6b47cd3ab4ca22d222e6d8a2c59d57e2a4 Reviewed-on: https://go-review.googlesource.com/124095 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go1.11.html b/doc/go1.11.html index fad45e4396..5a8caf7ed5 100644 --- a/doc/go1.11.html +++ b/doc/go1.11.html @@ -50,7 +50,9 @@ Do not send CLs removing the interior tags from such phrases.

- TODO: PPC64LE race detector support + The race detector is now supported on linux/ppc64le + and, to a lesser extent, on netbsd/amd64. The NetBSD race detector support + has known issues.

WebAssembly

@@ -264,22 +266,6 @@ Do not send CLs removing the interior tags from such phrases. -
http/http/httputil
-
-

- TODO: https://golang.org/cl/77410: add ReverseProxy.ErrorHandler -

- -
- -
http/httpproxy
-
-

- TODO: https://golang.org/cl/115255: support CIDR notation and ports with NO_PROXY -

- -
-
image/gif

@@ -392,16 +378,39 @@ Do not send CLs removing the interior tags from such phrases. Debian's apt) may be configured to do so.

+

+ ProxyFromEnvironment, which is used by the + DefaultTransport, now + supports CIDR notation and ports in the NO_PROXY environment variable. +

+
+
net/http/httputil
+
+

+ The + ReverseProxy + has a new + ErrorHandler + option to permit changing how errors are handled. +

+ +
+
os

- TODO: https://golang.org/cl/78835: add UserCacheDir + The new UserCacheDir function + returns the default root directory to use for user-specific cached data.

- TODO: https://golang.org/cl/94856: add ModeIrregular flag + The new ModeIrregular + is a FileMode bit to represent + that a file is not a regular file, but nothing else is known about it, or that + it's not a socket, device, named pipe, symlink, or other file type for which + Go has a defined mode bit.

@@ -463,6 +472,10 @@ Do not send CLs removing the interior tags from such phrases. TODO: https://golang.org/cl/121657: remap stack spans with MAP_STACK on OpenBSD

+

+ TODO: https://golang.org/cl/70993: support tracking goroutine ancestor tracebacks with GODEBUG="tracebackancestors=N" +

+
runtime,cmd/ld
@@ -481,14 +494,6 @@ Do not send CLs removing the interior tags from such phrases.
-
runtime/race
-
-

- TODO: https://golang.org/cl/107935: implement race detector for ppc64le -

- -
-
runtime/trace

@@ -497,91 +502,9 @@ Do not send CLs removing the interior tags from such phrases.

-
runtime/traceback
-
-

- TODO: https://golang.org/cl/70993: support tracking goroutine ancestor tracebacks with GODEBUG="tracebackancestors=N" -

- -
- -
sync
-
-

- TODO: https://golang.org/cl/87095: enable profiling of RWMutex -

- -
- -
syscall
-
-

- TODO: https://golang.org/cl/106275: introduce Pointer type and use it instead of uintptr -

- -

- TODO: https://golang.org/cl/118658: check Fchmodat flags parameter on Linux -

- -
- -
text/scanner
-
-

- TODO: https://golang.org/cl/112037: return RawString token rather than String for raw string literals -

- -
-
text/template
-
-

- TODO: https://golang.org/cl/84480: add variable assignments -

- -

- TODO: https://golang.org/cl/95215: differentiate nil from missing arg -

- -
- -
time
-
-

- TODO: https://golang.org/cl/98157: add support for parsing timezones denoted by sign and offset -

- -
-
runtime
-
-

- TODO: https://golang.org/cl/85887: use sparse mappings for the heap -

- -

- TODO: https://golang.org/cl/94076: use native CAS and memory barrier on ARMv7 -

- -

- TODO: https://golang.org/cl/106156: use fixed TLS offsets on darwin/amd64 and darwin/386 -

- -

- TODO: https://golang.org/cl/109255: enable memory sanitizer on arm64 -

- -

- TODO: https://golang.org/cl/109699: support for debugger function calls -

- -

- TODO: https://golang.org/cl/121657: remap stack spans with MAP_STACK on OpenBSD -

- -
-
runtime,cmd/ld

@@ -590,22 +513,6 @@ Do not send CLs removing the interior tags from such phrases.

-
runtime/pprof
-
-

- TODO: https://golang.org/cl/102696: introduce "allocs" profile -

- -
- -
runtime/race
-
-

- TODO: https://golang.org/cl/107935: implement race detector for ppc64le -

- -
-
runtime/trace

@@ -633,7 +540,14 @@ Do not send CLs removing the interior tags from such phrases.

syscall

- TODO: https://golang.org/cl/106275: introduce Pointer type and use it instead of uintptr + On Windows, several fields were changed from uintptr to a new + Pointer + type to avoid problems with Go's garbage collector. The same change was made + to the golang.org/x/sys/windows + package. For any code affected, users should first migrate away from the syscall + package to the golang.org/x/sys/windows package, and then change + to using the Pointer, while obeying the + unsafe.Pointer conversion rules.