diff --git a/doc/go1.12.html b/doc/go1.12.html index c8dd487f65f..3afe21f3f97 100644 --- a/doc/go1.12.html +++ b/doc/go1.12.html @@ -289,18 +289,10 @@ for { -
godoc, cmd/godoc
-
-

- TODO: https://golang.org/cl/141397: remove CLI support -

- -
-
image

- TODO: https://golang.org/cl/118755: make RegisterFormat safe for concurrent use + The RegisterFormat function is now safe for concurrent use.

@@ -308,7 +300,7 @@ for {
image/png

- TODO: https://golang.org/cl/134235: pack image data for small bitdepth paletted images + Paletted images with fewer than 16 colors now encode to smaller outputs.

@@ -332,7 +324,8 @@ for {
io

- TODO: https://golang.org/cl/139457: export StringWriter + The new StringWriter interface wraps the + WriteString function.

@@ -424,15 +417,19 @@ for {

- TODO: https://golang.org/cl/135075: add ModeCharDevice to ModeType + ModeCharDevice has been added to the ModeType bitmask, allowing for + ModeDevice | ModeCharDevice to be recovered when masking a + FileMode with ModeType.

- TODO: https://golang.org/cl/139418: add UserHomeDir + The new function UserHomeDir returns the + current user's home directory.

- TODO: https://golang.org/cl/146020: add support for long path names on unix RemoveAll + RemoveAll now supports paths longer than 4096 characters + on most Unix systems.

@@ -440,7 +437,9 @@ for {
path/filepath

- TODO: https://golang.org/cl/145220: change IsAbs("NUL") to return true + The IsAbs function now returns true when passed + a reserved filename on Windows such as NUL. + List of reserved names.

@@ -504,7 +503,16 @@ for {

- TODO: https://golang.org/cl/131495: correctly handle invalid utf8 sequences in Map + The character mapping functions Map, + Title, + ToLower, + ToLowerSpecial, + ToTitle, + ToTitleSpecial, + ToUpper, and + ToUpperSpecial + now always guarantee to return valid UTF-8. In earlier releases, if the input was invalid UTF-8 but no character replacements + needed to be applied, these routines incorrectly returned the invalid UTF-8 unmodified.

@@ -560,7 +568,16 @@ for {
text/template

- TODO: https://golang.org/cl/142217: removed truncation of context in error message + When executing a template, long context values are no longer truncated in errors. +

+

+ executing "tmpl" at <.very.deep.context.v...>: map has no entry for key "notpresent" +

+

+ is now +

+

+ executing "tmpl" at <.very.deep.context.value.notpresent>: map has no entry for key "notpresent"