From fc60d9dd6ee3163c88a25803a082d462eac3e78d Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 15 Feb 2019 23:42:32 +0000 Subject: [PATCH] [release-branch.go1.12] doc/go1.12: document net/url.Parse now rejecting ASCII CTLs Updates #27302 Updates #22907 Change-Id: Iac6957f3517265dfb9c662efb7af31192e3bfd6c Reviewed-on: https://go-review.googlesource.com/c/162960 Reviewed-by: Ian Lance Taylor (cherry picked from commit ef454fd586ee30d8b35b5895320619ebde2beb98) Reviewed-on: https://go-review.googlesource.com/c/162826 --- doc/go1.12.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/doc/go1.12.html b/doc/go1.12.html index fda61a69a760b..1b937fdd79592 100644 --- a/doc/go1.12.html +++ b/doc/go1.12.html @@ -694,6 +694,20 @@

Minor changes to the library

+
net/url
+
+

+ Parse, + ParseRequestURI, + and + URL.Parse + now return an + error for URLs containing ASCII control characters, which includes NULL, + tab, and newlines. +

+ +
+
net/http/httputil