]> Cypherpunks.ru repositories - gostls13.git/blob - doc/go1.21.html
doc/go1.21: update crypto release notes
[gostls13.git] / doc / go1.21.html
1 <!--{
2         "Title": "Go 1.21 Release Notes",
3         "Path":  "/doc/go1.21"
4 }-->
5
6 <!--
7 NOTE: In this document and others in this directory, the convention is to
8 set fixed-width phrases with non-fixed-width spaces, as in
9 <code>hello</code> <code>world</code>.
10 Do not send CLs removing the interior tags from such phrases.
11 -->
12
13 <style>
14   main ul li { margin: 0.5em 0; }
15 </style>
16
17 <h2 id="introduction">DRAFT RELEASE NOTES — Introduction to Go 1.21</h2>
18
19 <p>
20   <strong>
21     Go 1.21 is not yet released. These are work-in-progress
22     release notes. Go 1.21 is expected to be released in August 2023.
23   </strong>
24 </p>
25
26 <p>
27   The latest Go release, version 1.21, arrives six months after <a href="/doc/go1.20">Go 1.20</a>.
28   Most of its changes are in the implementation of the toolchain, runtime, and libraries.
29   As always, the release maintains the Go 1 <a href="/doc/go1compat">promise of compatibility</a>;
30   in fact, Go 1.21 <a href="#godebug">improves upon that promise</a>.
31   We expect almost all Go programs to continue to compile and run as before.
32 </p>
33
34 <p><!-- https://go.dev/issue/57631 -->
35   Go 1.21 introduces a small change to the numbering of releases.
36   In the past, we used Go 1.<i>N</i> to refer to both the overall Go language version and release family
37   as well as the first release in that family.
38   Starting in Go 1.21, the first release is now Go 1.<i>N</i>.0.
39   Today we are releasing both the Go 1.21 language and its initial implementation, the Go 1.21.0 release.
40   These notes refer to “Go 1.21”; tools like <code>go</code> <code>version</code> will report “<code>go1.21.0</code>”
41   (until you upgrade to Go 1.21.1).
42   See “<a href="/doc/toolchain#versions">Go versions</a>” in the “Go Toolchains” documentation for details
43   about the new version numbering.
44 </p>
45
46 <h2 id="language">Changes to the language</h2>
47
48 <p>
49   Go 1.21 adds three new built-ins to the language.
50
51   <ul>
52     <li><!-- https://go.dev/issue/59488 -->
53       The new functions <code>min</code> and <code>max</code> compute the
54       smallest (or largest, for <code>max</code>) value of a fixed number
55       of given arguments.
56       See the language spec for
57       <a href="https://tip.golang.org/ref/spec#Min_and_max">details</a>.
58     </li>
59     <li><!-- https://go.dev/issue/56351 -->
60       The new function <code>clear</code> deletes all elements from a
61       map or zeroes all elements of a slice.
62       See the language spec for
63       <a href="https://tip.golang.org/ref/spec#Clear">details</a>.
64     </li>
65   </ul>
66 </p>
67
68 <p><!-- https://go.dev/issue/57411 -->
69   Package initialization order is now specified more precisely. The
70   new algorithm is:
71   <ul>
72     <li>
73       Sort all packages by import path.
74     </li>
75     <li>Repeat until the list of packages is empty:
76       <ul>
77         <li>
78           Find the first package in the list for which all imports are
79           already initialized.
80         </li>
81         <li>
82           Initialize that package and remove it from the list.
83         </li>
84       </ul>
85     </li>
86   </ul>
87   This may change the behavior of some programs that rely on a
88   specific initialization ordering that was not expressed by explicit
89   imports. The behavior of such programs was not well defined by the
90   spec in past releases. The new rule provides an unambiguous definition.
91 </p>
92
93 <p>
94   Multiple improvements that increase the power and precision of type inference have been made.
95 </p>
96 <ul>
97   <li><!-- https://go.dev/issue/59338 -->
98     A (possibly partially instantiated generic) function may now be called with arguments that are
99     themselves (possibly partially instantiated) generic functions.
100     The compiler will attempt to infer the missing type arguments of the callee (as before) and,
101     for each argument that is a generic function that is not fully instantiated,
102     its missing type arguments (new).
103     Typical use cases are calls to generic functions operating on containers
104     (such as <a href="/pkg/slices#IndexFunc">slices.IndexFunc</a>) where a function argument
105     may also be generic, and where the type argument of the called function and its arguments
106     are inferred from the container type.
107     More generally, a generic function may now be used without explicit instantiation when
108     it is assigned to a variable or returned as a result value if the type arguments can
109     be inferred from the assignment.
110   </li>
111   <li><!-- https://go.dev/issue/60353, https://go.dev/issue/57192, https://go.dev/issue/52397, https://go.dev/issue/41176 -->
112     Type inference now also considers methods when a value is assigned to an interface:
113     type arguments for type parameters used in method signatures may be inferred from
114     the corresponding parameter types of matching methods.
115   </li>
116   <li><!-- https://go.dev/issue/51593 https://go.dev/issue/39661 -->
117     Similarly, since a type argument must implement all the methods of its corresponding constraint,
118     the methods of the type argument and constraint are matched which may lead to the inference of
119     additional type arguments.
120   </li>
121   <li><!-- https://go.dev/issue/58671 -->
122     If multiple untyped constant arguments of different kinds (such as an untyped int and
123     an untyped floating-point constant) are passed to parameters with the same (not otherwise
124     specified) type parameter type, instead of an error, now type inference determines the
125     type using the same approach as an operator with untyped constant operands.
126     This change brings the types inferred from untyped constant arguments in line with the
127     types of constant expressions.
128   </li>
129   <li><!-- https://go.dev/issue/59750 -->
130     Type inference is now precise when matching corresponding types in assignments:
131     component types (such as the elements of slices, or the parameter types in function signatures)
132     must be identical (given suitable type arguments) to match, otherwise inference fails.
133     This change produces more accurate error messages:
134     where in the past type inference may have succeeded incorrectly and lead to an invalid assignment,
135     the compiler now reports an inference error if two types can't possibly match.
136   </li>
137 </ul>
138
139 <p><!-- https://go.dev/issue/58650 -->
140   More generally, the description of
141   <a href="https://tip.golang.org/ref/spec#Type_inference">type inference</a>
142   in the language spec has been clarified.
143   Together, all these changes make type inference more powerful and inference failures less surprising.
144 </p>
145
146 <!-- https://go.dev/issue/57969 -->
147 <p>
148   Go 1.21 includes a preview of a language change we are considering for a future version of Go:
149   making for loop variables per-iteration instead of per-loop, to avoid accidental sharing bugs.
150   For details about how to try that language change, see <a href="https://go.dev/wiki/LoopvarExperiment">the LoopvarExperiment wiki page</a>.
151 </p>
152
153 <h2 id="tools">Tools</h2>
154 <p>
155   Go 1.21 adds improved support for backwards compatibility and forwards compatibility
156   in the Go toolchain.
157 </p>
158
159 <p><!-- https://go.dev/issue/56986 -->
160   To improve backwards compatibility, Go 1.21 formalizes
161   Go's use of the GODEBUG environment variable to control
162   the default behavior for changes that are non-breaking according to the
163   <a href="/doc/go1compat">compatibility policy</a>
164   but nonetheless may cause existing programs to break.
165   (For example, programs that depend on buggy behavior may break
166   when a bug is fixed, but bug fixes are not considered breaking changes.)
167   When Go must make this kind of behavior change,
168   it now chooses between the old and new behavior based on the
169   <code>go</code> line in the workspace's <code>go.work</code> file
170   or else the main module's <code>go.mod</code> file.
171   Upgrading to a new Go toolchain but leaving the <code>go</code> line
172   set to its original (older) Go version preserves the behavior of the older
173   toolchain.
174   With this compatibility support, the latest Go toolchain should always
175   be the best, most secure, implementation of an older version of Go.
176   See “<a href="/doc/godebug">Go, Backwards Compatibility, and GODEBUG</a>” for details.
177 </p>
178
179 <p><!-- https://go.dev/issue/57001 -->
180   To improve forwards compatibility, Go 1.21 now reads the <code>go</code> line
181   in a <code>go.work</code> or <code>go.mod</code> file as a strict
182   minimum requirement: <code>go</code> <code>1.21.0</code> means
183   that the workspace or module cannot be used with Go 1.20 or with Go 1.21rc1.
184   This allows projects that depend on fixes made in later versions of Go
185   to ensure that they are not used with earlier versions.
186   It also gives better error reporting for projects that make use of new Go features:
187   when the problem is that a newer Go version is needed,
188   that problem is reported clearly, instead of attempting to build the code
189   and instead printing errors about unresolved imports or syntax errors.
190 </p>
191
192 <p>
193   To make these new stricter version requirements easier to manage,
194   the <code>go</code> command can now invoke not just the toolchain
195   bundled in its own release but also other Go toolchain versions found in the PATH
196   or downloaded on demand.
197   If a <code>go.mod</code> or <code>go.work</code> <code>go</code> line
198   declares a minimum requirement on a newer version of Go, the <code>go</code>
199   command will find and run that version automatically.
200   The new <code>toolchain</code> directive sets a suggested minimum toolchain to use,
201   which may be newer than the strict <code>go</code> minimum.
202   See “<a href="/doc/toolchain">Go Toolchains</a>” for details.
203 </p>
204
205 <h3 id="go-command">Go command</h3>
206
207 <p><!-- https://go.dev/issue/58099, CL 474236 -->
208   The <code>-pgo</code> build flag now defaults to <code>-pgo=auto</code>,
209   and the restriction of specifying a single main package on the command
210   line is now removed. If a file named <code>default.pgo</code> is present
211   in the main package's directory, the <code>go</code> command will use
212   it to enable profile-guided optimization for building the corresponding
213   program.
214 </p>
215
216 <p>
217   The <code>-C</code> <code>dir</code> flag must now be the first
218   flag on the command-line when used.
219 </p>
220
221 <p><!-- https://go.dev/issue/37708, CL 463837 -->
222   The new <code>go</code> <code>test</code> option
223   <code>-fullpath</code> prints full path names in test log messages,
224   rather than just base names.
225 </p>
226
227 <p><!-- https://go.dev/issue/15513, CL 466397 -->
228   The <code>go</code> <code>test</code> <code>-c</code> flag now
229   supports writing test binaries for multiple packages, each to
230   <code>pkg.test</code> where <code>pkg</code> is the package name.
231   It is an error if more than one test package being compiled has a given package name.]
232 </p>
233
234 <p><!-- https://go.dev/issue/15513, CL 466397 -->
235   The <code>go</code> <code>test</code> <code>-o</code> flag now
236   accepts a directory argument, in which case test binaries are written to that
237   directory instead of the current directory.
238 </p>
239
240 <h3 id="cgo">Cgo</h3>
241
242 <p><!-- CL 490819 -->
243   In files that <code>import "C"</code>, the Go toolchain now
244   correctly reports errors for attempts to declare Go methods on C types.
245 </p>
246
247 <h2 id="runtime-changes">Runtime</h2>
248
249 <p><!-- https://go.dev/issue/7181 -->
250   When printing very deep stacks, the runtime now prints the first 50
251   (innermost) frames followed by the bottom 50 (outermost) frames,
252   rather than just printing the first 100 frames. This makes it easier
253   to see how deeply recursive stacks started, and is especially
254   valuable for debugging stack overflows.
255 </p>
256
257 <p><!-- https://go.dev/issue/59960 -->
258   On Linux platforms that support transparent huge pages, the Go runtime
259   now manages which parts of the heap may be backed by huge pages more
260   explicitly. This leads to better utilization of memory: small heaps
261   should see less memory used (up to 50% in pathological cases) while
262   large heaps should see fewer broken huge pages for dense parts of the
263   heap, improving CPU usage and latency by up to 1%.
264 </p>
265
266 <p><!-- https://go.dev/issue/57069, https://go.dev/issue/56966 -->
267   As a result of runtime-internal garbage collection tuning,
268   applications may see up to a 40% reduction in application tail latency
269   and a small decrease in memory use. Some applications may also observe
270   a small loss in throughput.
271
272   The memory use decrease should be proportional to the loss in
273   throughput, such that the previous release's throughput/memory
274   tradeoff may be recovered (with little change to latency) by
275   increasing <code>GOGC</code> and/or <code>GOMEMLIMIT</code> slightly.
276 </p>
277
278 <p><!-- https://go.dev/issue/51676 -->
279   Calls from C to Go on threads created in C require some setup to prepare for
280   Go execution. On Unix platforms, this setup is now preserved across multiple
281   calls from the same thread. This significantly reduces the overhead of
282   subsequent C to Go calls from ~1-3 microseconds per call to ~100-200
283   nanoseconds per call.
284 </p>
285
286 <h2 id="compiler">Compiler</h2>
287
288 <p>
289   Profile-guide optimization (PGO), added as a preview in Go 1.20, is now ready
290   for general use. PGO enables additional optimizations on code identified as
291   hot by profiles of production workloads. As mentioned in the
292   <a href="#go-command">Go command section</a>, PGO is enabled by default for
293   binaries that contain a <code>default.pgo</code> profile in the main
294   package directory. Performance improvements vary depending on application
295   behavior, with most programs from a representative set of Go programs seeing
296   between 2 and 7% improvement from enabling PGO. See the
297   <a href="/doc/pgo">PGO user guide</a> for detailed documentation.
298 </p>
299
300 <!-- https://go.dev/issue/59959 -->
301 <p>
302   PGO builds can now devirtualize some interface method calls, adding a
303   concrete call to the most common callee. This enables further optimization,
304   such as inlining the callee.
305 </p>
306
307 <!-- CL 497455 -->
308 <p>
309   Go 1.21 improves build speed by up to 6%, largely thanks to building the
310   compiler itself with PGO.
311 </p>
312
313 <h2 id="assembler">Assembler</h2>
314
315 <!-- https://go.dev/issue/58378 -->
316 <p>
317   On amd64, frameless nosplit assembly functions are no longer automatically marked as <code>NOFRAME</code>.
318   Instead, the <code>NOFRAME</code> attribute must be explicitly specified if desired,
319   which is already the behavior on other architectures supporting frame pointers.
320   With this, the runtime now maintains the frame pointers for stack transitions.
321 </p>
322
323 <!-- CL 476295 -->
324 <p>
325   The verifier that checks for incorrect uses of <code>R15</code> when dynamic linking on amd64 has been improved.
326 </p>
327
328 <h2 id="linker">Linker</h2>
329
330 <p><!-- https://go.dev/issue/57302, CL 461749, CL 457455 -->
331   On windows/amd64, the linker (with help from the compiler) now emits
332   SEH unwinding data by default, which improves the integration
333   of Go applications with Windows debuggers and other tools.
334 </p>
335
336 <!-- CL 463395, CL 461315 -->
337 <p>
338   In Go 1.21 the linker (with help from the compiler) is now capable of
339   deleting dead (unreferenced) global map variables, if the number of
340   entries in the variable initializer is sufficiently large, and if the
341   initializer expressions are side-effect free.
342 </p>
343
344 <h2 id="library">Core library</h2>
345
346 <h3 id="slog">New log/slog package</h3>
347
348 <p><!-- https://go.dev/issue/59060, https://go.dev/issue/59141, https://go.dev/issue/59204, https://go.dev/issue/59280,
349         https://go.dev/issue/59282, https://go.dev/issue/59339, https://go.dev/issue/59345, https://go.dev/issue/61200,
350         CL 477295, CL 484096, CL 486376, CL 486415, CL 487855, CL 508195 -->
351   The new <a href="/pkg/log/slog">log/slog</a> package provides structured logging with levels.
352   Structured logging emits key-value pairs
353   to enable fast, accurate processing of large amounts of log data.
354   The package supports integration with popular log analysis tools and services.
355 </p>
356
357 <h3 id="slogtest">New testing/slogtest package</h3>
358
359 <p><!-- CL 487895 -->
360   The new <a href="/pkg/testing/slogtest">testing/slogtest</a> package can help
361   to validate <a href="/pkg/log/slog#Handler">slog.Handler</a> implementations.
362 </p>
363
364 <h3 id="slices">New slices package</h3>
365
366 <p>
367   <!-- https://go.dev/issue/45955, https://go.dev/issue/54768 -->
368   <!-- https://go.dev/issue/57348, https://go.dev/issue/57433 -->
369   <!-- https://go.dev/issue/58565, https://go.dev/issue/60091 -->
370   <!-- https://go.dev/issue/60546 -->
371   <!-- CL 467417, CL 468855, CL 483175, CL 496078, CL 498175, CL 502955 -->
372   The new <a href="/pkg/slices">slices</a> package provides many common
373   operations on slices, using generic functions that work with slices
374   of any element type.
375 </p>
376
377 <h3 id="maps">New maps package</h3>
378
379 <p><!-- https://go.dev/issue/57436, CL 464343 -->
380   The new <a href="/pkg/maps/">maps</a> package provides several
381   common operations on maps, using generic functions that work with
382   maps of any key or element type.
383 </p>
384
385 <h3 id="cmp">New cmp package</h3>
386
387 <p><!-- https://go.dev/issue/59488, CL 496356 -->
388   The new <a href="/pkg/cmp/">cmp</a> package defines the type
389   constraint <a href="/pkg/cmp/#Ordered"><code>Ordered</code></a> and
390   two new generic functions
391   <a href="/pkg/cmp/#Less"><code>Less</code></a>
392   and <a href="/pkg/cmp/#Compare"><code>Compare</code></a> that are
393   useful with <a href="/ref/spec/#Comparison_operators">ordered
394   types</a>.
395 </p>
396
397 <h3 id="minor_library_changes">Minor changes to the library</h3>
398
399 <p>
400   As always, there are various minor changes and updates to the library,
401   made with the Go 1 <a href="/doc/go1compat">promise of compatibility</a>
402   in mind.
403   There are also various performance improvements, not enumerated here.
404 </p>
405
406 <dl id="archive/tar"><dt><a href="/pkg/archive/tar/">archive/tar</a></dt>
407   <dd>
408     <p><!-- https://go.dev/issue/54451, CL 491175 -->
409       The implementation of the
410       <a href="/pkg/io/fs/#FileInfo"><code>io/fs.FileInfo</code></a>
411       interface returned by
412       <a href="/pkg/archive/tar/#Header.FileInfo"><code>Header.FileInfo</code></a>
413       now implements a <code>String</code> method that calls
414       <a href="/pkg/io/fs/#FormatFileInfo"><code>io/fs.FormatFileInfo</code></a>.
415     </p>
416   </dd>
417 </dl><!-- archive/tar -->
418
419 <dl id="archive/zip"><dt><a href="/pkg/archive/zip/">archive/zip</a></dt>
420   <dd>
421     <p><!-- https://go.dev/issue/54451, CL 491175 -->
422       The implementation of the
423       <a href="/pkg/io/fs/#FileInfo"><code>io/fs.FileInfo</code></a>
424       interface returned by
425       <a href="/pkg/archive/zip/#FileHeader.FileInfo"><code>FileHeader.FileInfo</code></a>
426       now implements a <code>String</code> method that calls
427       <a href="/pkg/io/fs/#FormatFileInfo"><code>io/fs.FormatFileInfo</code></a>.
428     </p>
429
430     <p><!-- https://go.dev/issue/54451, CL 491175 -->
431       The implementation of the
432       <a href="/pkg/io/fs/#DirEntry"><code>io/fs.DirEntry</code></a>
433       interface returned by the
434       <a href="/pkg/io/fs/#ReadDirFile.ReadDir"><code>io/fs.ReadDirFile.ReadDir</code></a>
435       method of the
436       <a href="/pkg/io/fs/#File"><code>io/fs.File</code></a>
437       returned by
438       <a href="/pkg/archive/zip/#Reader.Open"><code>Reader.Open</code></a>
439       now implements a <code>String</code> method that calls
440       <a href="/pkg/io/fs/#FormatDirEntry"><code>io/fs.FormatDirEntry</code></a>.
441     </p>
442   </dd>
443 </dl><!-- archive/zip -->
444
445 <dl id="bytes"><dt><a href="/pkg/bytes/">bytes</a></dt>
446   <dd>
447     <p><!-- https://go.dev/issue/53685, CL 474635 -->
448       The <a href="/pkg/bytes/#Buffer"><code>Buffer</code></a> type
449       has two new methods:
450       <a href="/pkg/bytes/#Buffer.Available"><code>Available</code></a>
451       and <a href="/pkg/bytes/#AvailableBuffer"><code>AvailableBuffer</code></a>.
452       These may be used along with the
453       <a href="/pkg/bytes/#Buffer.Write"><code>Write</code></a>
454       method to append directly to the <code>Buffer</code>.
455     </p>
456   </dd>
457 </dl><!-- bytes -->
458
459 <dl id="context"><dt><a href="/pkg/context/">context</a></dt>
460   <dd>
461     <p><!-- https://go.dev/issue/40221, CL 479918 -->
462       The new <a href="/pkg/context/#WithoutCancel"><code>WithoutCancel</code></a>
463       function returns a copy of a context that is not canceled when the original
464       context is canceled.
465     </p>
466     <p><!-- https://go.dev/issue/56661, CL 449318 -->
467       The new <a href="/pkg/context/#WithDeadlineCause"><code>WithDeadlineCause</code></a>
468       and <a href="/pkg/context/#WithTimeoutCause"><code>WithTimeoutCause</code></a>
469       functions provide a way to set a context cancellation cause when a deadline or
470       timer expires. The cause may be retrieved with the
471       <a href="/pkg/context/#Cause"><code>Cause</code></a> function.
472     </p>
473     <p><!-- https://go.dev/issue/57928, CL 482695 -->
474       The new <a href="/pkg/context/#AfterFunc"><code>AfterFunc</code></a>
475       function registers a function to run after a context has been cancelled.
476     </p>
477
478     <p><!-- CL 455455 -->
479       An optimization means that the results of calling
480       <a href="/pkg/context/#Background"><code>Background</code></a>
481       and <a href="/pkg/context/#TODO"><code>TODO</code></a> and
482       converting them to a shared type can be considered equal.
483       In previous releases they were always different.  Comparing
484       <a href="/pkg/context/#Context"><code>Context</code></a> values
485       for equality has never been well-defined, so this is not
486       considered to be an incompatible change.
487     </p>
488   </dd>
489 </dl>
490
491
492 <dl id="crypto/ecdsa"><dt><a href="/pkg/crypto/ecdsa/">crypto/ecdsa</a></dt>
493   <dd>
494     <p><!-- CL 492955 -->
495       <a href="/pkg/crypto/ecdsa/#PublicKey.Equal"><code>PublicKey.Equal</code></a> and
496       <a href="/pkg/crypto/ecdsa/#PrivateKey.Equal"><code>PrivateKey.Equal</code></a>
497       now execute in constant time.
498     </p>
499   </dd>
500 </dl><!-- crypto/ecdsa -->
501
502 <dl id="crypto/elliptic"><dt><a href="/pkg/crypto/elliptic/">crypto/elliptic</a></dt>
503   <dd>
504     <p><!-- CL 459977 -->
505       All of the <a href="/pkg/crypto/elliptic/#Curve"><code>Curve</code></a> methods have been deprecated, along with <a href="/pkg/crypto/elliptic/#GenerateKey"><code>GenerateKey</code></a>, <a href="/pkg/crypto/elliptic/#Marshal"><code>Marshal</code></a>, and <a href="/pkg/crypto/elliptic/#Unmarshal"><code>Unmarshal</code></a>. For ECDH operations, the new <a href="/pkg/crypto/ecdh/"><code>crypto/ecdh</code></a> package should be used instead. For lower-level operations, use third-party modules such as <a href="https://pkg.go.dev/filippo.io/nistec">filippo.io/nistec</a>.
506     </p>
507   </dd>
508 </dl><!-- crypto/elliptic -->
509
510 <dl id="crypto/rand"><dt><a href="/pkg/crypto/rand/">crypto/rand</a></dt>
511   <dd>
512     <p><!-- CL 463123 -->
513       The <a href="/pkg/crypto/rand/"><code>crypto/rand</code></a> package now uses the <code>getrandom</code> system call on NetBSD 10.0 and later.
514     </p>
515   </dd>
516 </dl><!-- crypto/rand -->
517
518 <dl id="crypto/rsa"><dt><a href="/pkg/crypto/rsa/">crypto/rsa</a></dt>
519   <dd>
520     <p><!-- CL 471259, CL 492935 -->
521       The performance of private RSA operations (decryption and signing) is now better than Go 1.19 for <code>GOARCH=amd64</code> and <code>GOARCH=arm64</code>. It had regressed in Go 1.20.
522     </p>
523     <p>
524       Due to the addition of private fields to <a href="/pkg/crypto/rsa/#PrecomputedValues"><code>PrecomputedValues</code></a>, <a href="/pkg/crypto/rsa/#PrivateKey.Precompute"><code>PrivateKey.Precompute</code></a> must be called for optimal performance even if deserializing (for example from JSON) a previously-precomputed private key.
525     </p>
526     <p><!-- CL 492955 -->
527       <a href="/pkg/crypto/rsa/#PublicKey.Equal"><code>PublicKey.Equal</code></a> and
528       <a href="/pkg/crypto/rsa/#PrivateKey.Equal"><code>PrivateKey.Equal</code></a>
529       now execute in constant time.
530     </p>
531     <p><!-- https://go.dev/issue/56921, CL 459976 -->
532       The <a href="/pkg/crypto/rsa/#GenerateMultiPrimeKey"><code>GenerateMultiPrimeKey</code></a> function and the <a href="/pkg/crypto/rsa/#PrecomputedValues.CRTValues"><code>PrecomputedValues.CRTValues</code></a> field have been deprecated. <a href="/pkg/crypto/rsa/#PrecomputedValues.CRTValues"><code>PrecomputedValues.CRTValues</code></a> will still be populated when <a href="/pkg/crypto/rsa/#PrivateKey.Precompute"><code>PrivateKey.Precompute</code></a> is called, but the values will not be used during decryption operations.
533     </p>
534   </dd>
535 </dl><!-- crypto/rsa -->
536
537 <!-- CL 483815 reverted -->
538
539 <dl id="crypto/sha256"><dt><a href="/pkg/crypto/sha256/">crypto/sha256</a></dt>
540   <dd>
541     <p><!-- https://go.dev/issue/50543, CL 408795 -->
542       SHA-224 and SHA-256 operations now use native instructions when available when <code>GOARCH=amd64</code>, providing a performance improvement on the order of 3-4x.
543     </p>
544   </dd>
545 </dl><!-- crypto/sha256 -->
546
547 <!-- CL 481478 reverted -->
548 <!-- CL 483816 reverted -->
549
550 <dl id="crypto/tls"><dt><a href="/pkg/crypto/tls/">crypto/tls</a></dt>
551   <dd>
552     <p><!-- CL 497895 -->
553       Servers now skip verifying client certificates (including not running
554       <a href="/pkg/crypto/tls/#Config.VerifyPeerCertificate"><code>Config.VerifyPeerCertificate</code></a>)
555       for resumed connections, besides checking the expiration time. This makes
556       session tickets larger when client certificates are in use. Clients were
557       already skipping verification on resumption, but now check the expiration
558       time even if <a href="/pkg/crypto/tls/#Config.InsecureSkipVerify"><code>Config.InsecureSkipVerify</code></a>
559       is set.
560     </p>
561
562     <p><!-- https://go.dev/issue/60105, CL 496818, CL 496820, CL 496822, CL 496821, CL 501675 -->
563       Applications can now control the content of session tickets.
564       <ul>
565         <li>
566           The new <a href="/pkg/crypto/tls/#SessionState"><code>SessionState</code></a> type
567           describes a resumable session.
568         </li>
569         <li>
570           The <a href="/pkg/crypto/tls/#SessionState.Bytes"><code>SessionState.Bytes</code></a>
571           method and <a href="/pkg/crypto/tls/#ParseSessionState"><code>ParseSessionState</code></a>
572           function serialize and deserialize a <code>SessionState</code>.
573         </li>
574         <li>
575           The <a href="/pkg/crypto/tls/#Config.WrapSession"><code>Config.WrapSession</code></a> and
576           <a href="/pkg/crypto/tls/#Config.UnwrapSession"><code>Config.UnwrapSession</code></a>
577           hooks convert a <code>SessionState</code> to and from a ticket on the server side.
578         </li>
579         <li>
580           The <a href="/pkg/crypto/tls/#Config.EncryptTicket"><code>Config.EncryptTicket</code></a>
581           and <a href="/pkg/crypto/tls/#Config.DecryptTicket"><code>Config.DecryptTicket</code></a>
582           methods provide a default implementation of <code>WrapSession</code> and
583           <code>UnwrapSession</code>.
584         </li>
585         <li>
586           The <a href="/pkg/crypto/tls/#ClientSessionState.ResumptionState"><code>ClientSessionState.ResumptionState</code></a> method and
587           <a href="/pkg/crypto/tls/#NewResumptionState"><code>NewResumptionState</code></a> function
588           may be used by a <code>ClientSessionCache</code> implementation to store and
589           resume sessions on the client side.
590         </li>
591       </ul>
592     </p>
593
594     <p><!-- CL 496817 -->
595       To reduce the potential for session tickets to be used as a tracking
596       mechanism across connections, the server now issues new tickets on every
597       resumption (if they are supported and not disabled) and tickets don't bear
598       an identifier for the key that encrypted them anymore. If passing a large
599       number of keys to <a href="/pkg/crypto/tls/#Conn.SetSessionTicketKeys"><code>Conn.SetSessionTicketKeys</code></a>,
600       this might lead to a noticeable performance cost.
601     </p>
602
603     <p><!-- CL 497376 -->
604       Both clients and servers now implement the Extended Master Secret extension (RFC 7627).
605       The deprecation of <a href="/pkg/crypto/tls/#ConnectionState.TLSUnique"><code>ConnectionState.TLSUnique</code></a>
606       has been reverted, and is now set for resumed connections that support Extended Master Secret.
607     </p>
608
609     <p><!-- https://go.dev/issue/44886, https://go.dev/issue/60107, CL 493655, CL 496995 -->
610       The new <a href="/pkg/crypto/tls/#QUICConn"><code>QUICConn</code></a> type
611       provides support for QUIC implementations, including 0-RTT support. Note
612       that this is not itself a QUIC implementation, and 0-RTT is still not
613       supported in TLS.
614     </p>
615
616     <p><!-- https://go.dev/issue/46308, CL 497377 -->
617       The new <a href="/pkg/crypto/tls/#VersionName"><code>VersionName</code></a> function
618       returns the name for a TLS version number.
619     </p>
620
621     <p><!-- https://go.dev/issue/52113, CL 410496 -->
622       The TLS alert codes sent from the server for client authentication failures have
623       been improved. Previously, these failures always resulted in a "bad certificate" alert.
624       Now, certain failures will result in more appropriate alert codes,
625       as defined by RFC 5246 and RFC 8446:
626       <ul>
627         <li>
628           For TLS 1.3 connections, if the server is configured to require client authentication using
629           <a href="/pkg/crypto/tls/#RequireAnyClientCert"></code>RequireAnyClientCert</code></a> or
630           <a href="/pkg/crypto/tls/#RequireAndVerifyClientCert"></code>RequireAndVerifyClientCert</code></a>,
631           and the client does not provide any certificate, the server will now return the "certificate required" alert.
632         </li>
633         <li>
634           If the client provides a certificate that is not signed by the set of trusted certificate authorities
635           configured on the server, the server will return the "unknown certificate authority" alert.
636         </li>
637         <li>
638           If the client provides a certificate that is either expired or not yet valid,
639           the server will return the "expired certificate" alert.
640         </li>
641         <li>
642           In all other scenarios related to client authentication failures, the server still returns "bad certificate".
643         </li>
644       </ul>
645     </p>
646   </dd>
647 </dl><!-- crypto/tls -->
648
649 <dl id="crypto/x509"><dt><a href="/pkg/crypto/x509/">crypto/x509</a></dt>
650   <dd>
651     <p><!-- https://go.dev/issue/53573, CL 468875 -->
652       <a href="/pkg/crypto/x509/#RevocationList.RevokedCertificates"><code>RevocationList.RevokedCertificates</code></a> has been deprecated and replaced with the new <a href="/pkg/crypto/x509/#RevocationList.RevokedCertificateEntries"><code>RevokedCertificateEntries</code></a> field, which is a slice of <a href="/pkg/crypto/x509/#RevocationListEntry"><code>RevocationListEntry</code></a>. <a href="/pkg/crypto/x509/#RevocationListEntry"><code>RevocationListEntry</code></a> contains all of the fields in <a href="/pkg/crypto/x509/pkix#RevokedCertificate"><code>pkix.RevokedCertificate</code></a>, as well as the revocation reason code.
653     </p>
654
655     <p><!-- CL 478216 -->
656       Name constraints are now correctly enforced on non-leaf certificates, and
657       not on the certificates where they are expressed.
658     </p>
659   </dd>
660 </dl><!-- crypto/x509 -->
661
662 <dl id="debug/elf"><dt><a href="/pkg/debug/elf/">debug/elf</a></dt>
663   <dd>
664     <p><!-- https://go.dev/issue/56892, CL 452617 -->
665       The new
666       <a href="/pkg/debug/elf/#File.DynValue"><code>File.DynValue</code></a>
667       method may be used to retrieve the numeric values listed with a
668       given dynamic tag.
669     </p>
670
671     <p><!-- https://go.dev/issue/56887, CL 452496 -->
672       The constant flags permitted in a <code>DT_FLAGS_1</code>
673       dynamic tag are now defined with type
674       <a href="/pkg/debug/elf/#DynFlag1"><code>DynFlag1</code></a>. These
675       tags have names starting with <code>DF_1</code>.
676     </p>
677
678     <p><!-- CL 473256 -->
679       The package now defines the constant
680       <a href="/pkg/debug/elf/#COMPRESS_ZSTD"><code>COMPRESS_ZSTD</code></a>.
681     </p>
682
683     <p><!-- https://go.dev/issue/60348, CL 496918 -->
684       The package now defines the constant
685       <a href="/pkg/debug/elf/#R_PPC64_REL24_P9NOTOC"><code>R_PPC64_REL24_P9NOTOC</code></a>.
686     </p>
687   </dd>
688 </dl><!-- debug/elf -->
689
690 <dl id="debug/pe"><dt><a href="/pkg/debug/pe/">debug/pe</a></dt>
691   <dd>
692     <p><!-- CL 488475 -->
693       Attempts to read from a section containing uninitialized data
694       using
695       <a href="/pkg/debug/pe/#Section.Data"><code>Section.Data</code></a>
696       or the reader returned by <a href="/pkg/debug/pe/#Section.Open"><code>Section.Open</code></a>
697       now return an error.
698     </p>
699   </dd>
700 </dl><!-- debug/pe -->
701
702 <dl id="embed"><dt><a href="/pkg/embed/">embed</a></dt>
703   <dd>
704     <p><!-- https://go.dev/issue/57803, CL 483235 -->
705       The <a href="/pkg/io/fs/#File"><code>io/fs.File</code></a>
706       returned by
707       <a href="/pkg/embed/#FS.Open"><code>FS.Open</code></a> now
708       has a <code>ReadAt</code> method that
709       implements <a href="/pkg/io/#ReaderAt"><code>io.ReaderAt</code></a>.
710     </p>
711
712     <p><!-- https://go.dev/issue/54451, CL 491175 -->
713       Calling <code><a href="/pkg/embed/FS.Open">FS.Open</a>.<a href="/pkg/io/fs/#File.Stat">Stat</a></code>
714       will return a type that now implements a <code>String</code>
715       method that calls
716       <a href="/pkg/io/fs/#FormatFileInfo"><code>io/fs.FormatFileInfo</code></a>.
717     </p>
718   </dd>
719 </dl><!-- embed -->
720
721 <dl id="errors"><dt><a href="/pkg/errors/">errors</a></dt>
722   <dd>
723     <p><!-- https://go.dev/issue/41198, CL 473935 -->
724       The new
725       <a href="/pkg/errors/#ErrUnsupported"><code>ErrUnsupported</code></a>
726       error provides a standardized way to indicate that a requested
727       operation may not be performed because it is unsupported.
728       For example, a call to
729       <a href="/pkg/os/#Link"><code>os.Link</code></a> when using a
730       file system that does not support hard links.
731     </p>
732   </dd>
733 </dl><!-- errors -->
734
735 <dl id="flag"><dt><a href="/pkg/flag/">flag</a></dt>
736   <dd>
737     <p><!-- https://go.dev/issue/53747, CL 476015 -->
738       The new <a href="/pkg/flag/#BoolFunc"><code>BoolFunc</code></a>
739       function and
740       <a href="/pkg/flag/#FlagSet.BoolFunc"><code>FlagSet.BoolFunc</code></a>
741       method define a flag that does not require an argument and calls
742       a function when the flag is used. This is similar to
743       <a href="/pkg/flag/#Func"><code>Func</code></a> but for a
744       boolean flag.
745     </p>
746
747     <p><!-- CL 480215 -->
748       A flag definition
749       (via <a href="/pkg/flag/#Bool"><code>Bool</code></a>,
750       <a href="/pkg/flag/#BoolVar"><code>BoolVar</code></a>,
751       <a href="/pkg/flag/#Int"><code>Int</code></a>,
752       <a href="/pkg/flag/#IntVar"><code>IntVar</code></a>, etc.)
753       will panic if <a href="/pkg/flag/#Set"><code>Set</code></a> has
754       already been called on a flag with the same name. This change is
755       intended to detect cases where <a href="#language">changes in
756       initialization order</a> cause flag operations to occur in a
757       different order than expected. In many cases the fix to this
758       problem is to introduce a explicit package dependence to
759       correctly order the definition before any
760       <a href="/pkg/flag/#Set"><code>Set</code></a> operations.
761     </p>
762   </dd>
763 </dl><!-- flag -->
764
765 <dl id="go/ast"><dt><a href="/pkg/go/ast/">go/ast</a></dt>
766   <dd>
767     <p><!-- https://go.dev/issue/28089, CL 487935 -->
768       The new <a href="/pkg/go/ast/#IsGenerated"><code>IsGenerated</code></a> predicate
769       reports whether a file syntax tree contains the
770       <a href="https://go.dev/s/generatedcode">special comment</a>
771       that conventionally indicates that the file was generated by a tool.
772     </p>
773   </dd>
774
775   <dd>
776     <p><!-- https://go.dev/issue/59033, CL 476276 -->
777       The new
778       <a href="/pkg/go/ast/#File.GoVersion"><code>File.GoVersion</code></a>
779       field records the minimum Go version required by
780       any <code>//go:build</code> or <code>// +build</code>
781       directives.
782     </p>
783   </dd>
784 </dl><!-- go/ast -->
785
786 <dl id="go/build"><dt><a href="/pkg/go/build/">go/build</a></dt>
787   <dd>
788     <p><!-- https://go.dev/issue/56986, CL 453603 -->
789       The package now parses build directives (comments that start
790       with <code>//go:</code>) in file headers (before
791       the <code>package</code> declaration). These directives are
792       available in the new
793       <a href="/pkg/go/build#Package"><code>Package</code></a> fields
794       <a href="/pkg/go/build#Package.Directives"><code>Directives</code></a>,
795       <a href="/pkg/go/build#Package.TestDirectives"><code>TestDirectives</code></a>,
796       and
797       <a href="/pkg/go/build#Package.XTestDirectives"><code>XTestDirectives</code></a>.
798     </p>
799   </dd>
800 </dl><!-- go/build -->
801
802 <dl id="go/build/constraint"><dt><a href="/pkg/go/build/constraint/">go/build/constraint</a></dt>
803   <dd>
804     <p><!-- https://go.dev/issue/59033, CL 476275 -->
805       The new
806       <a href="/pkg/go/build/constraint/#GoVersion"><code>GoVersion</code></a>
807       function returns the minimum Go version implied by a build
808       expression.
809     </p>
810   </dd>
811 </dl><!-- go/build/constraint -->
812
813 <dl id="go/token"><dt><a href="/pkg/go/token/">go/token</a></dt>
814   <dd>
815     <p><!-- https://go.dev/issue/57708, CL 464515 -->
816       The new <a href="/pkg/go/token/#File.Lines"><code>File.Lines</code></a> method
817       returns the file's line-number table in the same form as accepted by
818       <code>File.SetLines</code>.
819     </p>
820   </dd>
821 </dl><!-- go/token -->
822
823 <dl id="go/types"><dt><a href="/pkg/go/types/">go/types</a></dt>
824   <dd>
825     <p><!-- https://go.dev/issue/61175, CL 507975 -->
826       The new <a href="/pkg/go/types/#Package.GoVersion"><code>Package.GoVersion</code></a>
827       method returns the Go language version used to check the package.
828     </p>
829   </dd>
830 </dl><!-- go/types -->
831
832 <dl id="hash/maphash"><dt><a href="/pkg/hash/maphash/">hash/maphash</a></dt>
833   <dd>
834     <p><!-- https://go.dev/issue/47342, CL 468795 -->
835       The <code>hash/maphash</code> package now has a pure Go implementation, selectable with the <code>purego</code> build tag.
836     </p>
837   </dd>
838 </dl><!-- hash/maphash -->
839
840 <dl id="html/template"><dt><a href="/pkg/html/template/">html/template</a></dt>
841   <dd>
842     <p><!-- https://go.dev/issue/59584, CL 496395 -->
843       The new error
844       <a href="/pkg/html/template/#ErrJSTemplate"><code>ErrJSTemplate</code></a>
845       is returned when an action appears in a JavaScript template
846       literal. Previously an unexported error was returned.
847     </p>
848   </dd>
849 </dl><!-- html/template -->
850
851 <dl id="io/fs"><dt><a href="/pkg/io/fs/">io/fs</a></dt>
852   <dd>
853     <p><!-- https://go.dev/issue/54451, CL 489555 -->
854       The new
855       <a href="/pkg/io/fs/#FormatFileInfo"><code>FormatFileInfo</code></a>
856       function returns a formatted version of a
857       <a href="/pkg/io/fs/#FileInfo"><code>FileInfo</code></a>.
858       The new
859       <a href="/pkg/io/fs/#FormatDirEntry"><code>FormatDirEntry</code></a>
860       function returns a formatted version of a
861       <a href="/pkg/io/fs/#FileInfo"><code>DirEntry</code></a>.
862       The implementation of
863       <a href="/pkg/io/fs/#DirEntry"><code>DirEntry</code></a>
864       returned by
865       <a href="/pkg/io/fs/#ReadDir"><code>ReadDir</code></a> now
866       implements a <code>String</code> method that calls
867       <a href="/pkg/io/fs/#FormatDirEntry"><code>FormatDirEntry</code></a>,
868       and the same is true for
869       the <a href="/pkg/io/fs/#DirEntry"><code>DirEntry</code></a>
870       value passed to
871       <a href="/pkg/io/fs/#WalkDirFunc"><code>WalkDirFunc</code></a>.
872     </p>
873   </dd>
874 </dl><!-- io/fs -->
875
876 <!-- https://go.dev/issue/56491 rolled back by https://go.dev/issue/60519 -->
877 <!-- CL 459435 reverted by CL 467255 -->
878 <!-- CL 467515 reverted by CL 499416 -->
879
880 <dl id="math/big"><dt><a href="/pkg/math/big/">math/big</a></dt>
881   <dd>
882     <p><!-- https://go.dev/issue/56984, CL 453115, CL 500116 -->
883       The new <a href="/pkg/math/big/#Int.Float64"><code>Int.Float64</code></a>
884       method returns the nearest floating-point value to a
885       multi-precision integer, along with an indication of any
886       rounding that occurred.
887     </p>
888   </dd>
889 </dl><!-- math/big -->
890
891 <dl id="net"><dt><a href="/pkg/net/">net</a></dt>
892   <dd>
893     <p>
894       <!-- https://go.dev/issue/59166, https://go.dev/issue/56539 -->
895       <!-- CL 471136, CL 471137, CL 471140 -->
896       On Linux, the <a href="/pkg/net/">net</a> package can now use
897       Multipath TCP when the kernel supports it. It is not used by
898       default. To use Multipath TCP when available on a client, call
899       the
900       <a href="/pkg/net/#Dialer.SetMultipathTCP"><code>Dialer.SetMultipathTCP</code></a>
901       method before calling the
902       <a href="/pkg/net/#Dialer.Dial"><code>Dialer.Dial</code></a> or
903       <a href="/pkg/net/#Dialer.DialContext"><code>Dialer.DialContext</code></a>
904       methods. To use Multipath TCP when available on a server, call
905       the
906       <a href="/pkg/net/#ListenConfig.SetMultipathTCP"><code>ListenConfig.SetMultipathTCP</code></a>
907       method before calling the
908       <a href="/pkg/net/#ListenConfig.Listen"><code>ListenConfig.Listen</code></a>
909       method. Specify the network as <code>"tcp"</code> or
910       <code>"tcp4"</code> or <code>"tcp6"</code> as usual. If
911       Multipath TCP is not supported by the kernel or the remote host,
912       the connection will silently fall back to TCP. To test whether a
913       particular connection is using Multipath TCP, use the
914       <a href="/pkg/net/#TCPConn.MultipathTCP"><code>TCPConn.MultipathTCP</code></a>
915       method.
916     </p>
917     <p>
918       In a future Go release we may enable Multipath TCP by default on
919       systems that support it.
920     </p>
921   </dd>
922 </dl><!-- net -->
923
924 <dl id="net/http"><dt><a href="/pkg/net/http/">net/http</a></dt>
925   <dd>
926     <p><!-- CL 472636 -->
927       The new <a href="/pkg/net/http#ResponseController.EnableFullDuplex"><code>ResponseController.EnableFullDuplex</code></a>
928       method allows server handlers to concurrently read from an HTTP/1
929       request body while writing the response. Normally, the HTTP/1 server
930       automatically consumes any remaining request body before starting to
931       write the response, to avoid deadlocking clients which attempt to
932       write a complete request before reading the response. The
933       <code>EnableFullDuplex</code> method disables this behavior.
934     </p>
935
936     <p><!-- https://go.dev/issue/44855, CL 382117 -->
937       The new <a href="/pkg/net/http/#ErrSchemeMismatch"><code>ErrSchemeMismatch</code></a> error is returned by <a href="/pkg/net/http/#Client"><code>Client</code></a> and <a href="/pkg/net/http/#Transport"><code>Transport</code></a> when the server responds to an HTTPS request with an HTTP response.
938     </p>
939
940     <p><!-- CL 494122 -->
941       The <a href="/pkg/net/http/">net/http</a> package now supports
942       <a href="/pkg/errors/#ErrUnsupported"><code>errors.ErrUnsupported</code></a>,
943       in that the expression
944       <code>errors.Is(http.ErrNotSupported, errors.ErrUnsupported)</code>
945       will return true.
946     </p>
947   </dd>
948 </dl><!-- net/http -->
949
950 <dl id="os"><dt><a href="/pkg/os/">os</a></dt>
951   <dd>
952     <p><!-- https://go.dev/issue/32558, CL 219638 -->
953       Programs may now pass an empty <code>time.Time</code> value to
954       the <a href="/pkg/os/#Chtimes"><code>Chtimes</code></a> function
955       to leave either the access time or the modification time unchanged.
956     </p>
957
958     <p><!-- CL 480135 -->
959       On Windows the
960       <a href="/pkg/os#File.Chdir"><code>File.Chdir</code></a> method
961       now changes the current directory to the file, rather than
962       always returning an error.
963     </p>
964
965     <p><!-- CL 495079 -->
966       On Unix systems, if a non-blocking descriptor is passed
967       to <a href="/pkg/os/#NewFile"><code>NewFile</code></a>, calling
968       the <a href="/pkg/os/#File.Fd"><code>File.Fd</code></a> method
969       will now return a non-blocking descriptor. Previously the
970       descriptor was converted to blocking mode.
971     </p>
972
973     <p><!-- CL 477215 -->
974       On Windows calling
975       <a href="/pkg/os/#Truncate"><code>Truncate</code></a> on a
976       non-existent file used to create an empty file. It now returns
977       an error indicating that the file does not exist.
978     </p>
979
980     <p><!-- https://go.dev/issue/56899, CL 463219 -->
981       On Windows calling
982       <a href="/pkg/os/#TempDir"><code>TempDir</code></a> now uses
983       GetTempPath2W when available, instead of GetTempPathW. The
984       new behavior is a security hardening measure that prevents
985       temporary files created by processes running as SYSTEM to
986       be accessed by non-SYSTEM processes.
987     </p>
988
989     <p><!-- CL 493036 -->
990       On Windows the os package now supports working with files whose
991       names, stored as UTF-16, can't be represented as valid UTF-8.
992     </p>
993
994     <p><!-- CL 463177 -->
995       On Windows <a href="/pkg/os/#Lstat"><code>Lstat</code></a> now resolves
996       symbolic links for paths ending with a path separator, consistent with its
997       behavior on POSIX platforms.
998     </p>
999
1000     <p><!-- https://go.dev/issue/54451, CL 491175 -->
1001       The implementation of the
1002       <a href="/pkg/io/fs/#DirEntry"><code>io/fs.DirEntry</code></a>
1003       interface returned by the
1004       <a href="/pkg/os/#ReadDir"><code>ReadDir</code></a> function and
1005       the <a href="/pkg/os/#File.ReadDir"><code>File.ReadDir</code></a>
1006       method now implements a <code>String</code> method that calls
1007       <a href="/pkg/io/fs/#FormatDirEntry"><code>io/fs.FormatDirEntry</code></a>.
1008     </p>
1009
1010     <p><!-- https://go.dev/issue/53761, CL 416775, CL 498015-->
1011     The implementation of the
1012     <a href="/pkg/io/fs/#FS"><code>io/fs.FS</code></a> interface returned by
1013     the <a href="/pkg/os/#DirFS"><code>DirFS</code></a> function now implements
1014     the <a href="/pkg/io/fs/#ReadFileFS"><code>io/fs.ReadFileFS</code></a> and
1015     the <a href="/pkg/io/fs/#ReadDirFS"><code>io/fs.ReadDirFS</code></a>
1016     interfaces.
1017     </p>
1018   </dd>
1019 </dl><!-- os -->
1020
1021 <dl id="path/filepath"><dt><a href="/pkg/path/filepath/">path/filepath</a></dt>
1022   <dd>
1023     <p>
1024       The implementation of the
1025       <a href="/pkg/io/fs/#DirEntry"><code>io/fs.DirEntry</code></a>
1026       interface passed to the function argument of
1027       <a href="/pkg/path/filepath/#WalkDir"><code>WalkDir</code></a>
1028       now implements a <code>String</code> method that calls
1029       <a href="/pkg/io/fs/#FormatDirEntry"><code>io/fs.FormatDirEntry</code></a>.
1030     </p>
1031   </dd>
1032 </dl><!-- path/filepath -->
1033
1034 <!-- CL 459455 reverted -->
1035
1036 <dl id="reflect"><dt><a href="/pkg/reflect/">reflect</a></dt>
1037   <dd>
1038     <p><!-- CL 408826, CL 413474 -->
1039       In Go 1.21, <a href="/pkg/reflect/#ValueOf"><code>ValueOf</code></a>
1040       no longer forces its argument to be allocated on the heap, allowing
1041       a <code>Value</code>'s content to be allocated on the stack. Most
1042       operations on a <code>Value</code> also allow the underlying value
1043       to be stack allocated.
1044     </p>
1045
1046     <p><!-- https://go.dev/issue/55002 -->
1047       The new <a href="/pkg/reflect/#Value"><code>Value</code></a>
1048       method <a href="/pkg/reflect/#Value.Clear"><code>Value.Clear</code></a>
1049       clears the contents of a map or zeros the contents of a slice.
1050       This corresponds to the new <code>clear</code> built-in
1051       <a href="#language">added to the language</a>.
1052     </p>
1053
1054     <p><!-- https://go.dev/issue/56906, CL 452762 -->
1055       The <a href="/pkg/reflect/#SliceHeader"><code>SliceHeader</code></a>
1056       and <a href="/pkg/reflect/#StringHeader"><code>StringHeader</code></a>
1057       types are now deprecated. In new code
1058       prefer <a href="/pkg/unsafe/#Slice"><code>unsafe.Slice</code></a>,
1059       <a href="/pkg/unsafe/#SliceData"><code>unsafe.SliceData</code></a>,
1060       <a href="/pkg/unsafe/#String"><code>unsafe.String</code></a>,
1061       or <a href="/pkg/unsafe/#StringData"><code>unsafe.StringData</code></a>.
1062     </p>
1063   </dd>
1064 </dl><!-- reflect -->
1065
1066 <dl id="regexp"><dt><a href="/pkg/regexp/">regexp</a></dt>
1067   <dd>
1068     <p><!-- https://go.dev/issue/46159, CL 479401 -->
1069       <a href="/pkg/regexp#Regexp"><code>Regexp</code></a> now defines
1070       <a href="/pkg/regexp#Regexp.MarshalText"><code>MarshalText</code></a>
1071       and <a href="/pkg/regexp#Regexp.UnmarshalText"><code>UnmarshalText</code></a>
1072       methods. These implement
1073       <a href="/pkg/encoding#TextMarshaler"><code>encoding.TextMarshaler</code></a>
1074       and
1075       <a href="/pkg/encoding#TextUnmarshaler"><code>encoding.TextUnmarshaler</code></a>
1076       and will be used by packages such as
1077       <a href="/pkg/encoding/json">encoding/json</a>.
1078     </p>
1079   </dd>
1080 </dl><!-- regexp -->
1081
1082 <dl id="runtime"><dt><a href="/pkg/runtime/">runtime</a></dt>
1083   <dd>
1084     <p><!-- https://go.dev/issue/38651, CL 435337 -->
1085       Textual stack traces produced by Go programs, such as those
1086       produced when crashing, calling <code>runtime.Stack</code>, or
1087       collecting a goroutine profile with <code>debug=2</code>, now
1088       include the IDs of the goroutines that created each goroutine in
1089       the stack trace.
1090     </p>
1091
1092     <p><!-- https://go.dev/issue/57441, CL 474915 -->
1093       Crashing Go applications can now opt-in to Windows Error Reporting (WER) by setting the environment variable
1094       <code>GOTRACEBACK=wer</code> or calling <a href="/pkg/runtime/debug/#SetTraceback"><code>debug.SetTraceback("wer")</code></a>
1095       before the crash. Other than enabling WER, the runtime will behave as with <code>GOTRACEBACK=crash</code>.
1096       On non-Windows systems, <code>GOTRACEBACK=wer</code> is ignored.
1097     </p>
1098
1099     <p><!-- CL 447778 -->
1100       <code>GODEBUG=cgocheck=2</code>, a thorough checker of cgo pointer passing rules,
1101       is no longer available as a <a href="/pkg/runtime#hdr-Environment_Variables">debug option</a>.
1102       Instead, it is available as an experiment using <code>GOEXPERIMENT=cgocheck2</code>.
1103       In particular this means that this mode has to be selected at build time instead of startup time.
1104     </p>
1105
1106     <p>
1107       <code>GODEBUG=cgocheck=1</code> is still available (and is still the default).
1108     </p>
1109
1110     <p><!-- https://go.dev/issue/46787, CL 367296 -->
1111       A new type <code>Pinner</code> has been added to the runtime
1112       package. <code>Pinner</code>s may be used to "pin" Go memory
1113       such that it may be used more freely by non-Go code. For instance,
1114       passing Go values that reference pinned Go memory to C code is
1115       now allowed. Previously, passing any such nested reference was
1116       disallowed by the
1117       <a href="https://pkg.go.dev/cmd/cgo#hdr-Passing_pointers">cgo pointer passing rules.</a>
1118
1119       See <a href="/pkg/runtime#Pinner">the docs</a> for more details.
1120     </p>
1121
1122     <!-- CL 472195 no release note needed -->
1123   </dd>
1124 </dl><!-- runtime -->
1125
1126 <dl id="runtime/metrics"><dt><a href="/pkg/runtime/metrics/">runtime/metrics</a></dt>
1127   <dd>
1128     <p><!-- https://go.dev/issue/56857, CL 497315 -->
1129       A few previously-internal GC metrics, such as live heap size, are
1130       now available.
1131
1132       <code>GOGC</code> and <code>GOMEMLIMIT</code> are also now
1133       available as metrics.
1134     </p>
1135   </dd>
1136 </dl><!-- runtime/metrics -->
1137
1138 <dl id="runtime/trace"><dt><a href="/pkg/runtime/trace/">runtime/trace</a></dt>
1139   <dd>
1140     <p><!-- https://go.dev/issue/16638 -->
1141       Collecting traces on amd64 and arm64 now incurs a substantially
1142       smaller CPU cost: up to a 10x improvement over the previous release.
1143     </p>
1144
1145     <p><!-- CL 494495 -->
1146       Traces now contain explicit stop-the-world events for every reason
1147       the Go runtime might stop-the-world, not just garbage collection.
1148     </p>
1149   </dd>
1150 </dl><!-- runtime/trace -->
1151
1152 <dl id="sync"><dt><a href="/pkg/sync/">sync</a></dt>
1153   <dd>
1154     <p><!-- https://go.dev/issue/56102, CL 451356 -->
1155       The new <a href="/pkg/sync/#OnceFunc"><code>OnceFunc</code></a>,
1156       <a href="/pkg/sync/#OnceValue"><code>OnceValue</code></a>, and
1157       <a href="/pkg/sync/#OnceValues"><code>OnceValues</code></a>
1158       functions capture a common use of <a href="/pkg/sync/#Once">Once</a> to
1159       lazily initialize a value on first use.
1160     </p>
1161   </dd>
1162 </dl>
1163
1164 <dl id="syscall"><dt><a href="/pkg/syscall/">syscall</a></dt>
1165   <dd>
1166     <p><!-- CL 480135 -->
1167       On Windows the
1168       <a href="/pkg/syscall#Fchdir"><code>Fchdir</code></a> function
1169       now changes the current directory to its argument, rather than
1170       always returning an error.
1171     </p>
1172
1173     <p><!-- https://go.dev/issue/46259, CL 458335 -->
1174       On FreeBSD
1175       <a href="/pkg/syscall#SysProcAttr"><code>SysProcAttr</code></a>
1176       has a new field <code>Jail</code> that may be used to put the
1177       newly created process in a jailed environment.
1178     </p>
1179
1180     <p><!-- CL 493036 -->
1181       On Windows the syscall package now supports working with files whose
1182       names, stored as UTF-16, can't be represented as valid UTF-8.
1183       The <a href="/pkg/syscall#UTF16ToString"><code>UTF16ToString</code></a>
1184       and <a href="/pkg/syscall#UTF16FromString"><code>UTF16FromString</code></a>
1185       functions now convert between UTF-16 data and
1186       <a href="https://simonsapin.github.io/wtf-8/">WTF-8</a> strings.
1187       This is backward compatible as WTF-8 is a superset of the UTF-8
1188       format that was used in earlier releases.
1189     </p>
1190
1191     <p><!-- CL 476578, CL 476875, CL 476916 -->
1192       Several error values match the new
1193       <a href="/pkg/errors/#ErrUnsupported"><code>errors.ErrUnsupported</code></a>,
1194       such that <code>errors.Is(err, errors.ErrUnsupported)</code>
1195       returns true.
1196       <ul>
1197         <li><code>ENOSYS</code></li>
1198         <li><code>ENOTSUP</code></li>
1199         <li><code>EOPNOTSUPP</code></li>
1200         <li><code>EPLAN9</code> (Plan 9 only)</li>
1201         <li><code>ERROR_CALL_NOT_IMPLEMENTED</code> (Windows only)</li>
1202         <li><code>ERROR_NOT_SUPPORTED</code> (Windows only)</li>
1203         <li><code>EWINDOWS</code> (Windows only)</li>
1204       </ul>
1205     </p>
1206   </dd>
1207 </dl><!-- syscall -->
1208
1209 <dl id="testing"><dt><a href="/pkg/testing/">testing</a></dt>
1210   <dd>
1211     <p><!-- https://go.dev/issue/37708, CL 463837 -->
1212       The new <code>-test.fullpath</code> option will print full path
1213       names in test log messages, rather than just base names.
1214     </p>
1215
1216     <p><!-- https://go.dev/issue/52600, CL 475496 -->
1217       The new <a href="/pkg/testing/#Testing"><code>Testing</code></a> function reports whether the program is a test created by <code>go</code> <code>test</code>.
1218     </p>
1219   </dd>
1220 </dl><!-- testing -->
1221
1222 <dl id="testing/fstest"><dt><a href="/pkg/testing/fstest/">testing/fstest</a></dt>
1223   <dd>
1224     <p><!-- https://go.dev/issue/54451, CL 491175 -->
1225       Calling <code><a href="/pkg/testing/fstest/MapFS.Open">Open</a>.<a href="/pkg/io/fs/#File.Stat">Stat</a></code>
1226       will return a type that now implements a <code>String</code>
1227       method that calls
1228       <a href="/pkg/io/fs/#FormatFileInfo"><code>io/fs.FormatFileInfo</code></a>.
1229     </p>
1230   </dd>
1231 </dl><!-- testing/fstest -->
1232
1233 <dl id="unicode"><dt><a href="/pkg/unicode/">unicode</a></dt>
1234   <dd>
1235     <p><!-- CL 456837 -->
1236       The <a href="/pkg/unicode/"><code>unicode</code></a> package and
1237       associated support throughout the system has been upgraded to
1238       <a href="https://www.unicode.org/versions/Unicode15.0.0/">Unicode 15.0.0</a>.
1239     </p>
1240   </dd>
1241 </dl><!-- unicode -->
1242
1243 <h2 id="ports">Ports</h2>
1244
1245 <h3 id="darwin">Darwin</h3>
1246
1247 <p><!-- https://go.dev/issue/57125 -->
1248   As <a href="go1.20#darwin">announced</a> in the Go 1.20 release notes,
1249   Go 1.21 requires macOS 10.15 Catalina or later;
1250   support for previous versions has been discontinued.
1251 </p>
1252
1253 <h3 id="windows">Windows</h3>
1254
1255 <p><!-- https://go.dev/issue/57003, https://go.dev/issue/57004 -->
1256   As <a href="go1.20#windows">announced</a> in the Go 1.20 release notes,
1257   Go 1.21 requires at least Windows 10 or Windows Server 2016;
1258   support for previous versions has been discontinued.
1259 </p>
1260
1261 <!-- CL 470695 -->
1262 <p>
1263   <!-- cmd/dist: default to GOARM=7 on all non-arm systems -->
1264 </p>
1265
1266 <h3 id="wasm">WebAssembly</h3>
1267
1268 <p><!-- https://go.dev/issue/38248, https://go.dev/issue/59149, CL 489255 -->
1269   The new <code>go:wasmimport</code> directive can now be used in Go programs
1270   to import functions from the WebAssembly host.
1271 </p>
1272
1273 <!-- https://go.dev/issue/56100 -->
1274 <p>
1275   The Go scheduler now interacts much more efficiently with the
1276   JavaScript event loop, especially in applications that block
1277   frequently on asynchronous events.
1278 </p>
1279
1280
1281 <h3 id="wasip1">WebAssembly System Interface</h3>
1282
1283 <p><!-- https://go.dev/issue/58141 -->
1284   Go 1.21 adds an experimental port to the <a href="https://wasi.dev/">
1285   WebAssembly System Interface (WASI)</a>, Preview 1
1286   (<code>GOOS=wasip1</code>, <code>GOARCH=wasm</code>).
1287 </p>
1288
1289 <p>
1290   As a result of the addition of the new <code>GOOS</code> value
1291   "<code>wasip1</code>", Go files named <code>*_wasip1.go</code>
1292   will now be <a href="/pkg/go/build/#hdr-Build_Constraints">ignored
1293   by Go tools</a> except when that <code>GOOS</code> value is being
1294   used.
1295   If you have existing filenames matching that pattern, you will
1296   need to rename them.
1297 </p>
1298
1299 <h3 id="PPC64">ppc64/ppc64le</h3>
1300
1301 <p><!-- go.dev/issue/44549 -->
1302   On Linux, <code>GOPPC64=power10</code> now generates PC-relative instructions, prefixed
1303   instructions, and other new Power10 instructions. On AIX, <code>GOPPC64=power10</code>
1304   generates Power10 instructions, but does not generate PC-relative instructions.
1305 </p>
1306
1307 <p>
1308   When building position-independent binaries for <code>GOPPC64=power10</code>
1309   <code>GOOS=linux</code> <code>GOARCH=ppc64le</code>, users can expect reduced binary
1310   sizes in most cases, in some cases 3.5%. Position-independent binaries are built for
1311   ppc64le with the following <code>-buildmode</code> values:
1312   <code>c-archive</code>, <code>c-shared</code>, <code>shared</code>, <code>pie</code>, <code>plugin</code>.
1313 </p>
1314
1315 <h3 id="loong64">loong64</h3>
1316
1317 <p><!-- go.dev/issue/53301, CL 455075, CL 425474, CL 425476, CL 425478, CL 489576 -->
1318   The <code>linux/loong64</code> port now supports <code>-buildmode=c-archive</code>,
1319   <code>-buildmode=c-shared</code> and <code>-buildmode=pie</code>.
1320 </p>
1321
1322 <!-- proposals for x repos that don't need to be mentioned here but
1323      are picked up by the relnote tool. -->
1324 <!-- https://go.dev/issue/54232 -->
1325 <!-- https://go.dev/issue/57051 -->
1326 <!-- https://go.dev/issue/57792 -->
1327 <!-- https://go.dev/issue/57906 -->
1328 <!-- https://go.dev/issue/58668 -->
1329 <!-- https://go.dev/issue/59016 -->
1330 <!-- https://go.dev/issue/59676 -->
1331 <!-- https://go.dev/issue/60409 -->
1332 <!-- https://go.dev/issue/61176 -->
1333
1334 <!-- changes to cmd/api that don't need release notes. -->
1335 <!-- CL 469115, CL 469135, CL 499981 -->
1336
1337 <!-- proposals that don't need release notes. -->
1338 <!-- https://go.dev/issue/10275 -->
1339 <!-- https://go.dev/issue/59719 -->