LEFT | RIGHT |
(no file at all) | |
1 This file collects notes about what has changed since Go 1.3 | 1 This file collects notes about what has changed since Go 1.3 |
2 and should be mentioned in the Go 1.4 release notes. | 2 and should be mentioned in the Go 1.4 release notes. |
3 | 3 |
4 Please keep the descriptions to a single line, starting with the | 4 Please keep the descriptions to a single line, starting with the |
5 package or cmd/xxx directory name, and ending in a CL number. | 5 package or cmd/xxx directory name, and ending in a CL number. |
6 Please keep the list sorted (as in sort.Strings of the lines). | 6 Please keep the list sorted (as in sort.Strings of the lines). |
7 | 7 |
8 spec: permit for range x (CL 104680043) | 8 spec: permit for range x (CL 104680043) |
9 | 9 |
| 10 cmd/6l, liblink: use pc-relative addressing for all memory references, so that l
inking Go binaries at high addresses works (CL 125140043). This cuts the maximum
size of a Go binary's text+data+bss from 4GB to 2GB. |
| 11 cmd/go: import comments (CL 124940043) |
| 12 cmd/go: implement "internal" (CL 120600043) |
| 13 cmd/go: implement "generate" (CL 125580044) |
| 14 |
| 15 asm: make textflag.h available outside of cmd/ld (CL 128050043) |
| 16 crypto/tls: add support for ALPN (RFC 7301) (CL 108710046) |
| 17 crypto/tls: support programmatic selection of server certificates (CL 107400043) |
10 encoding/gob: remove unsafe (CL 102680045) | 18 encoding/gob: remove unsafe (CL 102680045) |
11 misc: deleted editor support; refer to https://code.google.com/p/go-wiki/wiki/ID
EsAndTextEditorPlugins instead (CL 105470043) | 19 misc: deleted editor support; refer to https://code.google.com/p/go-wiki/wiki/ID
EsAndTextEditorPlugins instead (CL 105470043) |
| 20 net/http: add Request.BasicAuth method (CL 76540043) |
| 21 net/http: add Transport.DialTLS hook (CL 137940043) |
| 22 net/http/httputil: add ReverseProxy.ErrorLog (CL 132750043) |
12 os: implement symlink support for windows (CL 86160044) | 23 os: implement symlink support for windows (CL 86160044) |
| 24 runtime: implement monotonic clocks on windows (CL 108700045) |
13 runtime/race: freebsd is supported (CL 107270043) | 25 runtime/race: freebsd is supported (CL 107270043) |
14 syscall: Setuid, Setgid are disabled on linux platforms. On linux those syscalls
operate on the calling thread, not the whole process. This does not match the s
emantics of other platforms, nor the expectations of the caller, so the operatio
ns have been disabled until issue 1435 is resolved (CL 106170043) | 26 syscall: Setuid, Setgid are disabled on linux platforms. On linux those syscalls
operate on the calling thread, not the whole process. This does not match the s
emantics of other platforms, nor the expectations of the caller, so the operatio
ns have been disabled until issue 1435 is resolved (CL 106170043) |
| 27 syscal: now frozen (CL 129820043) |
15 testing: add Coverage (CL 98150043) | 28 testing: add Coverage (CL 98150043) |
16 text/scanner: add IsIdentRune field of Scanner. (CL 108030044) | 29 text/scanner: add IsIdentRune field of Scanner. (CL 108030044) |
17 time: use the micro symbol (µ (U+00B5)) to print microsecond duration (CL 105030
046) | 30 time: use the micro symbol (µ (U+00B5)) to print microsecond duration (CL 105030
046) |
18 encoding/asn1: optional elements with a default value will now only be omitted i
f they have that value (CL 86960045). | 31 encoding/asn1: optional elements with a default value will now only be omitted i
f they have that value (CL 86960045). |
| 32 |
| 33 go.sys subrepo created: http://golang.org/s/go1.4-syscall |
LEFT | RIGHT |