From: Lucas Clemente Date: Thu, 29 Jun 2017 08:55:48 +0000 (+0200) Subject: doc: note quoted cookie value change in Go 1.9 relnotes X-Git-Tag: go1.9rc1~116 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ee4550440afd4f896dbcfe40c04e7fe11abd5a7b;p=gostls13.git doc: note quoted cookie value change in Go 1.9 relnotes Fixes #20834. Change-Id: Ic60000db6b8ae489a5cedbdc938d9ca1dc34c6d4 Reviewed-on: https://go-review.googlesource.com/47151 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go1.9.html b/doc/go1.9.html index 32acf25253..c1ea504d42 100644 --- a/doc/go1.9.html +++ b/doc/go1.9.html @@ -580,6 +580,12 @@ CL 40331: https://golang.org/cl/40331: cmd/link,runtime/cgo: enable PT_TLS gener
net/http
+

+ The Cookie.String method, used for + Cookie and Set-Cookie headers, now encloses values in double quotes + if the value contains either a space or a comma. +

+

Server changes: