mirror of
https://github.com/golang/go
synced 2024-11-05 16:26:11 -07:00
bbf38e931a
Change-Id: I829529929906d4758c7ba10d356c251b44e35a8d Reviewed-on: https://go-review.googlesource.com/5190 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
36 lines
1.9 KiB
Plaintext
36 lines
1.9 KiB
Plaintext
Overall:
|
|
|
|
build: Go 1.4 required to build (https://golang.org/cl/2470, https://golang.org/cl/2993)
|
|
|
|
New Ports:
|
|
Darwin/ARM, a.k.a iOS. (https://golang.org/cl/2118, 2119, 3273, 2121, 2122, ..., 2127)
|
|
|
|
API additions and behavior changes:
|
|
|
|
bufio: add Reader.Discard (https://golang.org/cl/2260)
|
|
crypto/cipher: clarify what will happen if len(src) != len(dst) for the Stream interface. (https://golang.org/cl/1754)
|
|
crypto/elliptic: add Name field to CurveParams struct (https://golang.org/cl/2133)
|
|
crypto/tls: change default minimum version to TLS 1.0. (https://golang.org/cl/1791)
|
|
encoding/base64: add unpadded encodings (https://golang.org/cl/1511)
|
|
log: add SetOutput functions (https://golang.org/cl/2686, https://golang.org/cl/3023)
|
|
net/http: support for setting trailers from a server Handler (https://golang.org/cl/2157)
|
|
net/http/cgi: fix REMOTE_ADDR, REMOTE_HOST, add REMOTE_PORT (https://golang.org/cl/4933)
|
|
net/smtp: add TLSConnectionState accessor (https://golang.org/cl/2151)
|
|
os/signal: add Ignore and Reset (https://golang.org/cl/3580)
|
|
runtime, syscall: use SYSCALL instruction on FreeBSD (Go 1.5 now requires FreeBSD 8-STABLE+) (https://golang.org/cl/3020)
|
|
strings: add Compare(x, y string) int, for symmetry with bytes.Compare (https://golang.org/cl/2828)
|
|
testing/quick: support generation of arrays (https://golang.org/cl/3865)
|
|
|
|
Tools:
|
|
|
|
cmd/vet: better validation of struct tags (https://golang.org/cl/2685)
|
|
cmd/ld: no longer record build timestamp in Windows PE file header (https://golang.org/cl/3740)
|
|
|
|
Performance:
|
|
|
|
cmd/gc: optimize memclr of slices and arrays (https://golang.org/cl/2520)
|
|
sort: number of Sort performance optimizations (https://golang.org/cl/2100, https://golang.org/cl/2614, ...)
|
|
strconv: optimize decimal to string conversion (https://golang.org/cl/2105)
|
|
math/big: faster assembly kernels for amd64 and 386 (https://golang.org/cl/2503, https://golang.org/cl/2560)
|
|
math/big: faster "pure Go" kernels for platforms w/o assembly kernels (https://golang.org/cl/2480)
|