2015-01-18 17:00:10 -07:00
|
|
|
Overall:
|
|
|
|
|
|
|
|
build: Go 1.4 required to build (https://golang.org/cl/2470, https://golang.org/cl/2993)
|
|
|
|
|
2015-02-05 23:09:08 -07:00
|
|
|
New Ports:
|
|
|
|
Darwin/ARM, a.k.a iOS. (https://golang.org/cl/2118, 2119, 3273, 2121, 2122, ..., 2127)
|
|
|
|
|
2015-01-02 15:35:55 -07:00
|
|
|
API additions and behavior changes:
|
|
|
|
|
2015-01-06 23:40:22 -07:00
|
|
|
bufio: add Reader.Discard (https://golang.org/cl/2260)
|
2014-12-26 14:00:49 -07:00
|
|
|
crypto/cipher: clarify what will happen if len(src) != len(dst) for the Stream interface. (https://golang.org/cl/1754)
|
2015-01-18 17:00:10 -07:00
|
|
|
crypto/elliptic: add Name field to CurveParams struct (https://golang.org/cl/2133)
|
2014-12-18 19:47:12 -07:00
|
|
|
crypto/tls: change default minimum version to TLS 1.0. (https://golang.org/cl/1791)
|
2015-02-24 17:06:08 -07:00
|
|
|
crypto/x509: wildcards are now only accepted as the first label (https://golang.org/cl/5691)
|
2014-12-22 10:32:34 -07:00
|
|
|
encoding/base64: add unpadded encodings (https://golang.org/cl/1511)
|
2015-02-24 00:51:05 -07:00
|
|
|
go/ast: add Implicit field to ast.EmptyStmt; changed meaning of ast.EmptyStmt.Semicolon position (https://golang.org/cl/5720)
|
2015-01-30 09:01:14 -07:00
|
|
|
log: add SetOutput functions (https://golang.org/cl/2686, https://golang.org/cl/3023)
|
2014-12-30 11:01:49 -07:00
|
|
|
net/http: support for setting trailers from a server Handler (https://golang.org/cl/2157)
|
2015-02-18 12:59:16 -07:00
|
|
|
net/http/cgi: fix REMOTE_ADDR, REMOTE_HOST, add REMOTE_PORT (https://golang.org/cl/4933)
|
2014-12-28 14:37:44 -07:00
|
|
|
net/smtp: add TLSConnectionState accessor (https://golang.org/cl/2151)
|
2015-02-16 14:27:20 -07:00
|
|
|
os/signal: add Ignore and Reset (https://golang.org/cl/3580)
|
2015-01-18 17:00:10 -07:00
|
|
|
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)
|
2015-02-04 10:32:44 -07:00
|
|
|
testing/quick: support generation of arrays (https://golang.org/cl/3865)
|
2015-01-02 15:35:55 -07:00
|
|
|
|
2015-01-12 16:16:30 -07:00
|
|
|
Tools:
|
|
|
|
|
2015-02-22 10:48:16 -07:00
|
|
|
cmd/go: std wildcard now excludes commands in main repo (https://golang.org/cl/5550)
|
2015-01-12 16:16:30 -07:00
|
|
|
cmd/vet: better validation of struct tags (https://golang.org/cl/2685)
|
2015-02-02 16:53:24 -07:00
|
|
|
cmd/ld: no longer record build timestamp in Windows PE file header (https://golang.org/cl/3740)
|
2015-01-02 15:35:55 -07:00
|
|
|
|
|
|
|
Performance:
|
|
|
|
|
2015-01-18 17:00:10 -07:00
|
|
|
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, ...)
|
2015-01-02 15:35:55 -07:00
|
|
|
strconv: optimize decimal to string conversion (https://golang.org/cl/2105)
|
2015-01-08 14:09:22 -07:00
|
|
|
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)
|
2015-02-13 16:12:03 -07:00
|
|
|
|
|
|
|
Assembler:
|
|
|
|
|
|
|
|
ARM assembly syntax has had some features removed.
|
|
|
|
|
|
|
|
- mentioning SP or PC as a hardware register
|
|
|
|
These are always pseudo-registers except that in some contexts
|
|
|
|
they're not, and it's confusing because the context should not affect
|
|
|
|
which register you mean. Change the references to the hardware
|
|
|
|
registers to be explicit: R13 for SP, R15 for PC.
|
|
|
|
- constant creation using assignment
|
|
|
|
The files say a=b when they could instead say #define a b.
|
|
|
|
There is no reason to have both mechanisms.
|
|
|
|
- R(0) to refer to R0.
|
|
|
|
Some macros use this to a great extent. Again, it's easy just to
|
|
|
|
use a #define to rename a register.
|
|
|
|
|
|
|
|
Also expression evaluation now uses uint64s instead of signed integers and the
|
|
|
|
precedence of operators is now Go-like rather than C-like.
|