OLD | NEW |
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 encoding/gob: remove unsafe (CL 102680045) | 8 encoding/gob: remove unsafe (CL 102680045) |
| 9 misc: deleted editor support; refer to https://code.google.com/p/go-wiki/wiki/ID
EsAndTextEditorPlugins instead (CL 105470043) |
9 runtime/race: freebsd is supported (CL 107270043) | 10 runtime/race: freebsd is supported (CL 107270043) |
10 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) | 11 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) |
11 text/scanner: add IsIdentRune field of Scanner. (CL 108030044) | 12 text/scanner: add IsIdentRune field of Scanner. (CL 108030044) |
12 time: use the micro symbol (µ (U+00B5)) to print microsecond duration (CL 105030
046) | 13 time: use the micro symbol (µ (U+00B5)) to print microsecond duration (CL 105030
046) |
OLD | NEW |