From: Alberto Donizetti Date: Wed, 14 Jun 2017 09:55:05 +0000 (+0200) Subject: doc: list html/template and text/template changes in 1.9 relnotes X-Git-Tag: go1.9beta1~16 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2c3c8c4247f84f53533dc61f606bbde09f783cdf;p=gostls13.git doc: list html/template and text/template changes in 1.9 relnotes Updates #20587 Change-Id: I3d65a0124157990b302db8879ee1a4941124ea11 Reviewed-on: https://go-review.googlesource.com/45730 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go1.9.html b/doc/go1.9.html index 3c2a1ce8fd..51aa1f071f 100644 --- a/doc/go1.9.html +++ b/doc/go1.9.html @@ -377,12 +377,11 @@ type T1 = T2
html/template
-

- TODO: https://golang.org/cl/37880: panic if predefined escapers are found in pipelines during rewriting -

- -

- TODO: https://golang.org/cl/40936: allow safe usage of predefined escapers in pipelines +

+ The package now reports an error if a predefined escaper (one of + "html", "urlquery" and "js") is found in a pipeline and its + rewriting by the contextual auto-escaper could potentially lead + to security or correctness issues.

@@ -717,7 +716,9 @@ type T1 = T2
text/template

- TODO: https://golang.org/cl/38420: fix handling of empty blocks + The handling of empty blocks, which was broken by a Go 1.8 + change that made the result dependent on the order of templates, + has been fixed, restoring the old Go 1.7 behavior.