From: Kota Date: Mon, 26 Jun 2023 13:33:42 +0000 (+0000) Subject: doc/go1.21: document changes in crypto/x509 X-Git-Tag: go1.21rc3~2^2~59 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9f6e87ff749ea66b8ed28724f63bf04d1d4971f7;p=gostls13.git doc/go1.21: document changes in crypto/x509 RevocationList.RevokedCertificates has been deprecated and replaced with the new RevocationList.RevokedCertificateEntries field, not RevocationList.Entries. Change-Id: I36053e0d67a9997264483d1e04e31774fbab8702 GitHub-Last-Rev: a9f6949b05d73e3ed7a7ca8c83e4df1310954db6 GitHub-Pull-Request: golang/go#60984 Reviewed-on: https://go-review.googlesource.com/c/go/+/505935 Reviewed-by: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov Reviewed-by: Roland Shoemaker Auto-Submit: Dmitri Shuralyov TryBot-Bypass: Dmitri Shuralyov --- diff --git a/doc/go1.21.html b/doc/go1.21.html index d3c1d13647..1a39a27c85 100644 --- a/doc/go1.21.html +++ b/doc/go1.21.html @@ -589,7 +589,7 @@ Do not send CLs removing the interior tags from such phrases.
crypto/x509

- RevocationList.RevokedCertificates has been deprecated and replaced with the new RevocationList.Entries field, which is a slice of RevocationListEntry. RevocationListEntry contains all of the fields in pkix.RevokedCertificate, as well as the revocation reason code. + RevocationList.RevokedCertificates has been deprecated and replaced with the new RevokedCertificateEntries field, which is a slice of RevocationListEntry. RevocationListEntry contains all of the fields in pkix.RevokedCertificate, as well as the revocation reason code.