diff --git a/doc/go1.18.html b/doc/go1.18.html index 2ea8e08423..3e7de64121 100644 --- a/doc/go1.18.html +++ b/doc/go1.18.html @@ -76,15 +76,6 @@ proposal.
- Go 1.18 is the last release that is supported on FreeBSD 11.x, which has - already reached end-of-life. Go 1.19 will require FreeBSD 12.2+ or FreeBSD - 13.0+. - FreeBSD 13.0+ will require a kernel with the COMPAT_FREEBSD12 option set (this is the default). -
-
@@ -105,6 +96,15 @@ proposal.
now supports the c-archive and c-shared build modes.
+ The windows/arm and windows/arm64 ports now support
+ non-cooperative preemption, bringing that capability to all four Windows
+ ports, which should hopefully address subtle bugs encountered when calling
+ into Win32 functions that block for extended periods of time.
+
@@ -113,6 +113,15 @@ proposal. Go 1.18 now requires iOS 12 or later; support for previous versions has been discontinued.
++ Go 1.18 is the last release that is supported on FreeBSD 11.x, which has + already reached end-of-life. Go 1.19 will require FreeBSD 12.2+ or FreeBSD + 13.0+. + FreeBSD 13.0+ will require a kernel with the COMPAT_FREEBSD12 option set (this is the default). +
+
- The windows/arm and windows/arm64 ports now support
- non-cooperative preemption, bringing that capability to all four Windows
- ports, which should hopefully address subtle bugs encountered when calling
- into Win32 functions that block for extended periods of time.
-
The garbage collector now includes non-heap sources of garbage collector work (e.g., stack scanning) when determining how frequently to run. As a result, @@ -222,6 +224,13 @@ proposal. been tuned to work more aggressively as a result.
+
+ Go 1.17 generally improved the formatting of arguments in stack traces,
+ but could print inaccurate values for arguments passed in registers.
+ This is improved in Go 1.18 by printing a question mark (?)
+ after each value that may be inaccurate.
+
@@ -243,13 +252,6 @@ proposal. Go 1.17 release notes for more details.
-
- Go 1.17 generally improved the formatting of arguments in stack traces,
- but could print inaccurate values for arguments passed in registers.
- This is improved in Go 1.18 by printing a question mark (?)
- after each value that may be inaccurate.
-
The new compiler -asan option supports the
new go command -asan option.