diff --git a/doc/go1.9.html b/doc/go1.9.html index a4db8e90c0..5df1e5cff7 100644 --- a/doc/go1.9.html +++ b/doc/go1.9.html @@ -698,6 +698,17 @@ version of gccgo. Frames are scheduled by following HTTP/2 priorities as described in RFC 7540 Section 5.3. + +
  • + The HTTP handler returned by StripPrefix + now calls its provided handler with a modified clone of the original *http.Request. + Any code storing per-request state in maps keyed by *http.Request should + use + Request.Context, + Request.WithContext, + and + context.WithValue instead. +
  • Client & Transport changes: