blob: 03535aa938fdf08ed80111bca837d8399fe41d6f [file] [log] [blame]
Rob Pike09e1da32014-03-26 13:56:16 +11001<!--{
2 "Title": "Go 1.3 Release Notes",
3 "Path": "/doc/go1.3",
4 "Template": true
5}-->
6
7<h2 id="introduction">Introduction to Go 1.3</h2>
8
9<p>
10The latest Go release, version 1.3, arrives six months after 1.2,
11and contains no language changes.
Rob Pikec5f14c52014-04-09 08:19:35 +100012It focuses primarily on implementation work, providing
Rob Pike09e1da32014-03-26 13:56:16 +110013precise garbage collection,
Rob Pikec5f14c52014-04-09 08:19:35 +100014a major refactoring of the compiler tool chain that results in
15faster builds, especially for large projects,
Rob Pike78025fb2014-04-08 14:07:17 +100016significant performance improvements across the board,
Rob Pikec5f14c52014-04-09 08:19:35 +100017and support for Solaris and Google's Native Client architecture (NaCl).
18It also has an important refinement to the memory model regarding synchronization.
Rob Pike09e1da32014-03-26 13:56:16 +110019As always, Go 1.3 keeps the <a href="/doc/go1compat.html">promise
20of compatibility</a>,
21and almost everything
22will continue to compile and run without change when moved to 1.3.
23</p>
24
25<h2 id="os">Changes to the supported operating systems and architectures</h2>
26
27<h3 id="nacl">Support for Native Client</h3>
Rob Pikeb69238b2014-04-09 12:47:35 +100028
Rob Pike09e1da32014-03-26 13:56:16 +110029<p>
Rob Pikeb69238b2014-04-09 12:47:35 +100030Support for the Native Client virtual machine architecture has returned to Go with the 1.3 release.
31It runs on the 32-bit Intel architectures (<code>GOARCH=386</code>) and also on 64-bit Intel, but using
3232-bit pointers (<code>GOARCH=amd64p32</code>).
33There is not yet support for Native Client on ARM.
34Note that this is Native Client (NaCl), not Portable Native Client (PNaCl).
35Details about Native Client are <a href="https://developers.google.com/native-client/dev/">here</a>;
36how to set up the Go version is described <a href="http://golang.org/wiki/NativeClient">here</a>.
Rob Pike09e1da32014-03-26 13:56:16 +110037</p>
38
39<h3 id="solaris">Support for Solaris</h3>
40
41<p>
Russ Coxc9133e32014-04-09 10:08:35 -040042Go 1.3 now includes experimental support for Solaris on the <code>amd64</code> (64-bit x86) architecture.
Rob Pike09e1da32014-03-26 13:56:16 +110043</p>
44
45
Rob Pikec5f14c52014-04-09 08:19:35 +100046<h3 id="win2000">Removal of support for Windows 2000</h3>
Rob Pike09e1da32014-03-26 13:56:16 +110047
48<p>
Rob Pike78025fb2014-04-08 14:07:17 +100049Microsoft stopped supporting Windows 2000 in 2010.
50Since it has <a href="https://codereview.appspot.com/74790043">implementation difficulties</a>
51regarding exception handling (signals in Unix terminology),
52as of Go 1.3 it is not supported by Go either.
Rob Pike09e1da32014-03-26 13:56:16 +110053</p>
54
55
56<h2 id="memory">Changes to the memory model</h2>
57
58<p>
Rob Pikea4380922014-03-27 11:45:51 +110059The Go 1.3 memory model <a href="https://codereview.appspot.com/75130045">adds a new rule</a>
60concerning sending and receiving on buffered channels,
61to make explicit that a buffered channel can be used as a simple
62semaphore, using a send into the
63channel to acquire and a receive from the channel to release.
64This is not a language change, just a clarification about an expected property of communication.
Rob Pike09e1da32014-03-26 13:56:16 +110065</p>
66
67<h2 id="impl">Changes to the implementations and tools</h2>
68
69<h3 id="stacks">Stack</h3>
70
71<p>
Rob Pike610f3952014-03-28 12:55:37 +110072Go 1.3 has changed the implementation of goroutine stacks away from the old,
73"segmented" model to a contiguous model.
74When a goroutine needs more stack
75than is available, its stack is transferred to a larger single block of memory.
76The overhead of this transfer operation amortizes well and eliminates the old "hot spot"
77problem when a calculation repeatedly steps across a segment boundary.
78Details including performance numbers are in this
79<a href="http://golang.org/s/contigstacks">design document</a>.
Rob Pike09e1da32014-03-26 13:56:16 +110080</p>
81
82<h3 id="stack_size">Stack size</h3>
83
84<p>
85Go 1.2 increased the minimum stack size to 8 kilobytes; with the new stack model, it has been
86put back to 4 kilobytes.
87</p>
88
Rob Pike09e1da32014-03-26 13:56:16 +110089<h3 id="garbage_collector">Changes to the garbage collector</h3>
90
91<p>
Rob Pikeb69238b2014-04-09 12:47:35 +100092For a while now, the garbage collector has been <em>precise</em> when examining
93values in the heap; the Go 1.3 release adds equivalent precision to values on the stack.
94This means that a non-pointer Go value such as an integer will never be mistaken for a
95pointer and prevent unused memory from being reclaimed.
Rob Pike09e1da32014-03-26 13:56:16 +110096</p>
97
98<h3 id="liblink">The linker</h3>
99
100<p>
Rob Pikec5f14c52014-04-09 08:19:35 +1000101As part of the general <a href="http://golang.org/s/go13linker">overhaul</a> to
102the Go linker, the compilers and linkers have been refactored.
103The linker is still a C program, but now the instruction selection phase that
104was part of the linker has been moved to the compiler through the creation of a new
105library called <code>liblink</code>.
106By doing instruction selection only once, when the package is first compiled,
107this can speed up compilation of large projects significantly.
Rob Pike09e1da32014-03-26 13:56:16 +1100108</p>
109
110<p>
Rob Pikec5f14c52014-04-09 08:19:35 +1000111<em>Updating</em>: Although this is a major internal change, it should have no
112effect on programs.
Rob Pike09e1da32014-03-26 13:56:16 +1100113</p>
114
115<h3 id="gccgo">Status of gccgo</h3>
116
117<p>
Rob Pike96775a32014-04-09 09:45:39 +1000118GCC release 4.9 will contain the Go 1.2 (not 1.3) version of gccgo.
119The release schedules for the GCC and Go projects do not coincide,
120which means that 1.3 will be available in the development branch but
121that the next GCC release, 4.10, will likely have the Go 1.4 version of gccgo.
Rob Pike09e1da32014-03-26 13:56:16 +1100122</p>
123
124<h3 id="gocmd">Changes to the go command</h3>
125
126<p>
Rob Pike56294f42014-04-09 15:20:00 +1000127The <a href="/cmd/go/"><code>cmd/go</code></a> command has several new
128features.
129The <a href="/cmd/go/"><code>go run</code></a> and
130<a href="/cmd/go/"><code>go test</code></a> subcommands
131support a new <code>-exec</code> option to specify an alternate
132way to run the resulting binary.
133Its immediate purpose is to support NaCl.
134</p>
135
136<p>
137The test coverage support of the <a href="/cmd/go/"><code>go test</code></a>
138subcommand now automatically sets the coverage mode to <code>-atomic</code>
139when the race detector is enabled, to eliminate false reports about unsafe
140access to coverage counters.
141</p>
142
143<p>
144Finally, the go command now supports packages that import Objective-C
145files (suffixed <code>.m</code>) through cgo.
Rob Pike09e1da32014-03-26 13:56:16 +1100146</p>
147
148<h3 id="misc">Miscellany</h3>
149
Rob Pikec5f14c52014-04-09 08:19:35 +1000150<p>
151The program <code>misc/benchcmp</code> that compares
152performance across benchmarking runs has been rewritten.
153Once a shell and awk script in the main repository, it is now a Go program in the <code>go.tools</code> repo.
154Documentation is <a href="http://godoc.org/code.google.com/p/go.tools/cmd/benchcmp">here</a>.
155</p>
156
Rob Pike56294f42014-04-09 15:20:00 +1000157<p>
Rob Pikec5f14c52014-04-09 08:19:35 +1000158For the few of us that build Go distributions, the tool <code>misc/dist</code> has been
159moved and renamed; it now lives in <code>misc/makerelease</code>, still in the main repository.
Rob Pike56294f42014-04-09 15:20:00 +1000160</p>
Rob Pike09e1da32014-03-26 13:56:16 +1100161
162
163<h2 id="performance">Performance</h2>
164
165<p>
Rob Pike969dc762014-04-09 07:12:20 +1000166The performance of Go binaries for this release has improved in many cases due to changes
167in the runtime and garbage collection, plus some changes to libraries.
168Significant instances include:
Rob Pike09e1da32014-03-26 13:56:16 +1100169</p>
170
171<ul>
172
173<li>
Rob Pike969dc762014-04-09 07:12:20 +1000174As mentioned above, the default stack size has been reduced from 8 kilobytes to 4 kilobytes.
175</li>
176
177<li>
178The runtime handles defers more efficiently, reducing the memory footprint by about two kilobytes
179per goroutine that calls defer.
180</li>
181
182<li>
183The garbage collector has been sped up, using a concurrent sweep algorithm,
184better parallelization, and larger pages.
185The cumulative effect can be a 50-70% reduction in collector pause time.
186</li>
187
188<li>
189The race detector (see <a href="http://golang.org/doc/articles/race_detector.html">this guide</a>)
190is now about 40% faster.
191</li>
192
193<li>
194The regular expression package <a href="/pkg/regexp/"><code>regexp</code></a>
195is now significantly faster for certain simple expressions due to the implemenation of
196a second, one-pass execution engine. The choice of which engine to use is automatic;
197the details are hidden from the user.
Rob Pike09e1da32014-03-26 13:56:16 +1100198</li>
199
200</ul>
201
Rob Pike969dc762014-04-09 07:12:20 +1000202<p>
203Also, the runtime now includes in stack dumps how long a goroutine has been blocked,
204which can be useful information when debugging deadlocks or performance issues.
205</p>
206
Rob Pike09e1da32014-03-26 13:56:16 +1100207<h2 id="library">Changes to the standard library</h2>
208
Rob Pike09e1da32014-03-26 13:56:16 +1100209<h3 id="new_packages">New packages</h3>
210
211<p>
Rob Pike78025fb2014-04-08 14:07:17 +1000212No new packages appear in the core libraries in Go 1.3.
Rob Pike09e1da32014-03-26 13:56:16 +1100213</p>
214
Rob Pike969dc762014-04-09 07:12:20 +1000215<h3 id="major_library_changes">Major changes to the library</h3>
216
217<p>
Rob Pike56294f42014-04-09 15:20:00 +1000218A previous bug in <a href="/pkg/crypto/tls/"><code>crypto/tls</code></a>
219made it possible to skip verfication in TLS inadvertently.
220In Go 1.3, the bug is fixed: one must specify either ServerName or
221InsecureSkipVerify, and if ServerName is specified it is enforced.
222This may break existing code that incorrectly depended on insecure
223behavior.
224</p>
225
226<p>
Rob Pike969dc762014-04-09 07:12:20 +1000227There is an important new type added to the standard library: <a href="/pkg/sync/#Pool"><code>sync.Pool</code></a>.
228It provides an efficient mechanism for implementing certain types of caches whose memory
229can be reclaimed automatically by the system.
230</p>
231
232<p>
Rob Pike56294f42014-04-09 15:20:00 +1000233The <a href="/pkg/testing/"><code>testing</code></a> package's benchmarking helper,
234<a href="/pkg/testing/#B"><code>B</code></a>, now has a
235<a href="/pkg/testing/#B.RunParallel"><code>RunParallel</code></a> method
236to make it easier to run benchmarks that exercise multiple CPUs.
237</p>
238
239<p>
240<em>Updating</em>: The crypto/tls fix may break existing code, but such
241code was erroneous and should be updated.
Rob Pike969dc762014-04-09 07:12:20 +1000242</p>
243
Rob Pike09e1da32014-03-26 13:56:16 +1100244<h3 id="minor_library_changes">Minor changes to the library</h3>
245
246<p>
247The following list summarizes a number of minor changes to the library, mostly additions.
248See the relevant package documentation for more information about each change.
249</p>
250
251<ul>
252
Rob Pike969dc762014-04-09 07:12:20 +1000253<li>
254The complex power function, <a href="/pkg/math/cmplx/#Pow"><code>Pow</code></a>,
255now specifies the behavior when the first argument is zero. It was undefined before.
256The details are in the <a href="/pkg/math/cmplx/#Pow">documentation for the function</a>.
257</li>
258
Rob Pike09e1da32014-03-26 13:56:16 +1100259<li> TODO: crypto/tls: add DialWithDialer (CL 68920045)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000260
Rob Pike09e1da32014-03-26 13:56:16 +1100261<li> TODO: crypto/tls: report TLS version in ConnectionState (CL 68250043)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000262
Rob Pike09e1da32014-03-26 13:56:16 +1100263<li> TODO: crypto/x509: support CSRs (CL 49830048)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000264
265<li>
266The formatted print functions of the <code>fmt</code> package now define <code>%F</code>
267as a synonym for <code>%f</code> when printing floating-point values.
268</li>
269
Brad Fitzpatrick4f193cd2014-04-08 19:46:33 -0700270<li>
271The <a href="/pkg/net/http/"><code>net/http</code></a> package now exposes the
272the properties of a TLS connection used to make a client request in the new
273<a href="/pkg/net/http/#Response"><code>Response.TLS</code></a> field.
274</li>
Rob Pike969dc762014-04-09 07:12:20 +1000275
Brad Fitzpatrick4f193cd2014-04-08 19:46:33 -0700276<li>
277The <a href="/pkg/net/http/"><code>net/http</code></a> package now
278allows setting an optional server error logger
279with <a href="/pkg/net/http/#Server"><code>Server.ErrorLog</code></a>.
280The default is still that all errors go to stderr.
281</li>
Rob Pike969dc762014-04-09 07:12:20 +1000282
Rob Pike09e1da32014-03-26 13:56:16 +1100283<li> TODO: net/http: add Server.SetKeepAlivesEnabled (CL 69670043)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000284
Rob Pike09e1da32014-03-26 13:56:16 +1100285<li> TODO: net/http: add Transport.TLSHandshakeTimeout; set it by default (CL 68150045)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000286
Rob Pike09e1da32014-03-26 13:56:16 +1100287<li> TODO: net/http: add optional Server.ConnState callback (CL 69260044)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000288
Rob Pike09e1da32014-03-26 13:56:16 +1100289<li> TODO: net/http: use TCP Keep-Alives on DefaultTransport's connections (CL 68330046)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000290
Rob Pike09e1da32014-03-26 13:56:16 +1100291<li> TODO: net/http: use TCP keep-alives for ListenAndServe and ListenAndServeTLS (CL 48300043)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000292
Rob Pike09e1da32014-03-26 13:56:16 +1100293<li> TODO: net: add Dialer.KeepAlive option (CL 68380043)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000294
Rob Pike09e1da32014-03-26 13:56:16 +1100295<li> TODO: net: enable fast socket creation using SOCK_CLOEXEC and Accept4 on FreeBSD 10 (69100043)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000296
297<li>
298The <a href="/pkg/os/exec/"><code>os/exec</code></a> package now implements
299what the documentation has always said with regard to relative paths for the binary.
300In particular, it only calls <a href="/pkg/os/exec/#LookPath"><code>LookPath</code></a>
301when the binary's file name contains no path separators.
302</li>
303
304<li>
305The <a href="/pkg/strconv/#CanBackquote"><code>CanBackquote</code></a>
306function in the <a href="/pkg/strconv/"><code>strconv</code></a> package
307now considers the <code>DEL</code> character, <code>U+007F</code>, to be
308non-printing.
309</li>
310
Rob Pike09e1da32014-03-26 13:56:16 +1100311<li> TODO: syscall: add Accept4 for freebsd (CL 68880043)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000312
Rob Pike09e1da32014-03-26 13:56:16 +1100313<li> TODO: syscall: add NewCallbackCDecl to use for windows callbacks (CL 36180044)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000314
Rob Pike09e1da32014-03-26 13:56:16 +1100315<li> TODO: syscall: add support for FreeBSD 10 (CL 56770044, 56980043)</li>
Rob Pike969dc762014-04-09 07:12:20 +1000316
Rob Pike969dc762014-04-09 07:12:20 +1000317<li>
318The <a href="/pkg/testing/"><code>testing</code></a> package now
Rob Pikec5f14c52014-04-09 08:19:35 +1000319diagnoses tests that call <code>panic(nil)</code>, which are almost always erroneous.
Rob Pike969dc762014-04-09 07:12:20 +1000320</li>
321
322<li>
323The <a href="/pkg/unicode/"><code>unicode</code></a> package and associated
324support throughout the system has been upgraded from
325Unicode 6.2.0 to <a href="http://www.unicode.org/versions/Unicode6.3.0/">Unicode 6.3.0</a>.
326</li>
327
Rob Pike09e1da32014-03-26 13:56:16 +1100328</ul>