aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2022-06-08 11:33:53 -0400
committerGopher Robot <gobot@golang.org>2022-06-08 15:47:58 +0000
commit4afb0b9e533767f788252816c4b79ee29a1952a7 (patch)
tree8b6ecf413d2f93666eb4a3f0ecc27fc625dce769
parent3426b7201da8140bb0fb433facd9e1fd3f267dfb (diff)
downloadgo-4afb0b9e533767f788252816c4b79ee29a1952a7.tar.gz
go-4afb0b9e533767f788252816c4b79ee29a1952a7.zip
doc/go1.19: delete remaining TODOs
The crypto ones were done in a separate CL and didn't merge well. Same for runtime/debug. The others are stale. For #51400. Change-Id: Iadb4de94d21cd6a20f52277a1c3d7800a729b81e Reviewed-on: https://go-review.googlesource.com/c/go/+/411115 Run-TryBot: Russ Cox <rsc@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Russ Cox <rsc@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: David Chase <drchase@google.com>
-rw-r--r--doc/go1.19.html36
1 files changed, 3 insertions, 33 deletions
diff --git a/doc/go1.19.html b/doc/go1.19.html
index 4276e9ffea..37f562a9df 100644
--- a/doc/go1.19.html
+++ b/doc/go1.19.html
@@ -43,9 +43,7 @@ Do not send CLs removing the interior tags from such phrases.
</p>
<h2 id="ports">Ports</h2>
-<p>
- TODO: complete this section, or delete if not needed
-</p>
+
<p><!-- https://go.dev/issue/46229 -->
Go 1.19 supports the Loongson 64-bit architecture LoongArch on Linux (<code>GOOS=linux</code>, <code>GOARCH=loong64</code>).
</p>
@@ -82,9 +80,6 @@ as well as support for rendering them to HTML, Markdown, and text.
</p>
<h3 id="go-command">Go command</h3>
-<p>
- TODO: complete this section.
-</p>
<!-- https://go.dev/issue/51461 -->
<p>
@@ -357,14 +352,14 @@ as well as support for rendering them to HTML, Markdown, and text.
now reject certificates and CSRs which contain duplicate extensions.
</p>
- <p><!-- CL 400175 --><!-- CL 388915 -->
+ <p><!-- https://go.dev/issue/46057 --><!-- https://go.dev/issue/35044 --><!-- CL 398237 --><!-- CL 400175 --><!-- CL 388915 -->
The new <a href="/pkg/crypto/x509/#CertPool.Clone"><code>CertPool.Clone</code></a>
and <a href="/pkg/crypto/x509/#CertPool.Equal"><code>CertPool.Equal</code></a>
methods allow cloning a <code>CertPool</code> and checking the equality of two
<code>CertPool</code>s respectively.
</p>
- <p><!-- CL 390834 -->
+ <p><!-- https://go.dev/issue/50674 --><!-- CL 390834 -->
The new function <a href="/pkg/crypto/x509/#ParseRevocationList"><code>ParseRevocationList</code></a>
provides a faster, safer to use CRL parser which returns a
<a href="/pkg/crypto/x509/#RevocationList"><code>RevocationList</code></a>.
@@ -388,23 +383,6 @@ as well as support for rendering them to HTML, Markdown, and text.
now considers certificates to be equal when the subjects, public keys, and SANs
are all equal. Before, it required byte-for-byte equality.
</p>
-
- <p><!-- https://go.dev/issue/46057 --><!-- CL 398237 -->
- TODO: <a href="https://go.dev/issue/46057">https://go.dev/issue/46057</a>: add CertPool.Equal
- </p>
-
- <p><!-- https://go.dev/issue/50674 -->
- TODO: <a href="https://go.dev/issue/50674">https://go.dev/issue/50674</a>: add ParseRevocationList, deprecate ParseCRL &amp; ParseDERCRL
- </p>
-
- <p><!-- CL 390834 -->
- TODO: <a href="https://go.dev/cl/390834">https://go.dev/cl/390834</a>: crypto/x509: add new CRL parser, deprecate old one; modified api/next/50674.txt
- </p>
-
- <p><!-- https://go.dev/issue/35044 --><!-- CL 400175 -->
- TODO: <a href="https://go.dev/cl/400175">https://go.dev/cl/400175</a>: crypto/x509: add CertPool.Clone; modified api/next/35044.txt
- TODO: <a href="https://go.dev/issue/35044">https://go.dev/issue/35044</a>: add CertPool.Clone
- </p>
</dd>
</dl><!-- crypto/x509 -->
@@ -765,14 +743,6 @@ as well as support for rendering them to HTML, Markdown, and text.
</dd>
</dl><!-- runtime -->
-<dl id="runtime/debug"><dt><a href="/pkg/runtime/debug/">runtime/debug</a></dt>
- <dd>
- <p><!-- CL 397018 -->
- TODO: <a href="https://go.dev/cl/397018">https://go.dev/cl/397018</a>: runtime/debug: export SetMemoryLimit; modified api/next/48409.txt
- </p>
- </dd>
-</dl><!-- runtime/debug -->
-
<dl id="runtime/metrics"><dt><a href="/pkg/runtime/metrics/">runtime/metrics</a></dt>
<dd>
<p><!-- https://go.dev/issue/47216 --><!-- CL 404305 -->