From 8d04110ce16ecc5cc10e6d5da7678f9c39a222cb Mon Sep 17 00:00:00 2001 From: Damien Neil Date: Wed, 17 Jan 2024 11:03:15 -0800 Subject: [PATCH] doc/go1.22: document net/http/cgi changes For #61422 Change-Id: If9c3d3ccbfb2061f42ffc26461209c96d38020e5 Reviewed-on: https://go-review.googlesource.com/c/go/+/556395 LUCI-TryBot-Result: Go LUCI Reviewed-by: Bryan Mills --- doc/go1.22.html | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/doc/go1.22.html b/doc/go1.22.html index b04f50192c..42ca2d5f7b 100644 --- a/doc/go1.22.html +++ b/doc/go1.22.html @@ -747,13 +747,17 @@ We plan to include an API migration tool in a future release, likely Go 1.23. - - - - - - - +
net/http/cgi
+
+

<\!-- CL 539615 -\-> + When executing a CGI process, the PATH_INFO variable is now + always set to the empty string or a value starting with a / character, + as required by RFC 3875. It was previously possible for some combinations of + Handler.Root + and request URL to violate this requirement. +

+
+
<\!-- net/http/cgi -\->