From: Russ Cox Date: Fri, 5 Jun 2020 17:51:17 +0000 (-0400) Subject: doc: document encoding/xml change in CL 203417 X-Git-Tag: go1.15beta1~3 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b9332ed31aa4c2b73134a1b968761fc4c259ccac;p=gostls13.git doc: document encoding/xml change in CL 203417 Change-Id: Ibc0228f166f449ec28d813f33bdb550fe7ba2b3e Reviewed-on: https://go-review.googlesource.com/c/go/+/236739 Reviewed-by: Dmitri Shuralyov --- diff --git a/doc/go1.15.html b/doc/go1.15.html index ffe9d26dc7..dd25b27c5f 100644 --- a/doc/go1.15.html +++ b/doc/go1.15.html @@ -478,7 +478,7 @@ Do not send CLs removing the interior tags from such phrases. ClientAuthType now implement fmt.Stringer.

- +

The ConnectionState fields OCSPResponse and SignedCertificateTimestamps @@ -569,7 +569,13 @@ Do not send CLs removing the interior tags from such phrases.

encoding/xml

- TODO: https://golang.org/cl/203417: fix reserved namespace check to be case-insensitive + The encoder has always taken care to avoid using namespace prefixes beginning with + xml, + which are reserved by the XML specification. + Now, following the specification more closely, + that check is case-insensitive, so that prefixes beginning with + XML, XmL, + and so on are also avoided.