From: Alberto Donizetti Date: Tue, 1 Dec 2020 13:19:57 +0000 (+0100) Subject: doc/go1.16: add path, path/filepath changes to release notes X-Git-Tag: go1.16beta1~98 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bdc9a837e914a3bd684ef3a24588b2627b1c6c04;p=gostls13.git doc/go1.16: add path, path/filepath changes to release notes For #40700 Fixes #42910 Change-Id: Ie380f5a03930d20dd5001c4cc184cadf2db33de7 Reviewed-on: https://go-review.googlesource.com/c/go/+/274475 Trust: Alberto Donizetti Reviewed-by: Dmitri Shuralyov --- diff --git a/doc/go1.16.html b/doc/go1.16.html index 1628c6f437..f3bc2fb4d0 100644 --- a/doc/go1.16.html +++ b/doc/go1.16.html @@ -732,16 +732,24 @@ Do not send CLs removing the interior tags from such phrases.
path
-

- TODO: https://golang.org/cl/264397: validate patterns in Match, Glob +

+ The Match and Glob functions now + return an error if the unmatched part of the pattern has a + syntax error. Previously, the functions returned early on a failed + match, and thus did not report any later syntax error in the + pattern.

path/filepath
-

- TODO: https://golang.org/cl/264397: validate patterns in Match, Glob +

+ The Match and Glob functions now + return an error if the unmatched part of the pattern has a + syntax error. Previously, the functions returned early on a failed + match, and thus did not report any later syntax error in the + pattern.