From: Katie Hockman Date: Wed, 5 Dec 2018 19:54:33 +0000 (-0500) Subject: doc: 1.12 release notes for regexp, runtime, and runtime/debug packages X-Git-Tag: go1.12beta1~67 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=01eb1d045963a554a39b40c964e9411183dcc42e;p=gostls13.git doc: 1.12 release notes for regexp, runtime, and runtime/debug packages Change-Id: I30686cbeda34f42d5b1848b884588a76a9fb28b9 Reviewed-on: https://go-review.googlesource.com/c/152741 Reviewed-by: Andrew Bonventre --- diff --git a/doc/go1.12.html b/doc/go1.12.html index caba169688..d2fa217e59 100644 --- a/doc/go1.12.html +++ b/doc/go1.12.html @@ -531,12 +531,12 @@ for {
regexp
-

- TODO: https://golang.org/cl/139783: add DeepEqual test -

-

- TODO: https://golang.org/cl/139784: add partial Deprecation comment to Copy + Copy is no longer necessary + to avoid lock contention, so it has been given a partial deprecation comment. + Copy + may still be appropriate if the reason for its use is to make two copies with + different Longest settings.

@@ -544,7 +544,9 @@ for {
runtime

- TODO: https://golang.org/cl/135395: use MADV_FREE on Linux if available + On Linux, the Go runtime now releases memory only when the OS is under memory + pressure. This is more efficient, but means a process's RSS (resident set size) + won't decrease unless the OS is running out of memory.

@@ -552,7 +554,12 @@ for {
runtime/debug

- TODO: https://golang.org/cl/144220: add API to read module info in binary + A new BuildInfo type + exposes the build information read from the running binary, available only in + binaries built with module support. This includes the main package path, main + module information, and the module dependencies. This type is given though the + ReadBuildInfo function + on BuildInfo.