From: Brad Fitzpatrick block, so it's visible in the HTML.
Updates #20587
Change-Id: I1dc22c63d9ee297e44bbb742f03b4a722247dbe8
Reviewed-on: https://go-review.googlesource.com/45811
Reviewed-by: Ian Lance Taylor
GO19CONCURRENTCOMPILATION
to 0
.
+ By popular request, ./...
no longer matches packages
+ in vendor
directories in tools accepting package names,
+ such as go
test
. To match vendor
+ directories, write ./vendor/...
.
+
@@ -124,7 +133,33 @@ type T1 = T2 section is now DWARF version 4.
-
+ The values of GOARM
and GO386
now affect a
+ compiled package's build ID, as used by the go
tool's
+ dependency caching.
+
+ Long lists of arguments are now truncated. This improves the readability
+ of go doc
on some generated code.
+
+ Viewing documentation on struct fields is now supported with
+ go doc struct.field
.
+
+ The new go
env
-json
flag
+ enables JSON output, instead of the default OS-specific output
+ format.
+
The go
test
@@ -134,17 +169,24 @@ type T1 = T2
+ The go
tool
pprof
command now
+ uses the HTTP proxy information defined in the environment, using
+ http.ProxyFromEnvironment
.
+
TODO: finish documenting misc tool changes
+ ++CL 42028: https://golang.org/cl/42028: cmd/asm: fix operand order of ARM's MULA instruction +CL 40112: https://golang.org/cl/40112: cmd/go: allow full flag processing in go vet +CL 42990: https://golang.org/cl/42990: cmd/internal/obj/x86: add ADDSUBPS/PD +CL 40331: https://golang.org/cl/40331: cmd/link,runtime/cgo: enable PT_TLS generation on OpenBSD +