From c918dae2aab9c318fc00c1fdbb15e716a32cf507 Mon Sep 17 00:00:00 2001 From: Brian Rosmaita Date: Wed, 6 Jun 2018 12:05:22 -0400 Subject: [PATCH] Add release note for HTTP headers fix Change-Id: I08838ff4682290527565e8cf687945307034c5ba --- ...http-headers-per-rfc-8187-aafa3199f863be81.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 releasenotes/notes/http-headers-per-rfc-8187-aafa3199f863be81.yaml diff --git a/releasenotes/notes/http-headers-per-rfc-8187-aafa3199f863be81.yaml b/releasenotes/notes/http-headers-per-rfc-8187-aafa3199f863be81.yaml new file mode 100644 index 0000000..ab21b3c --- /dev/null +++ b/releasenotes/notes/http-headers-per-rfc-8187-aafa3199f863be81.yaml @@ -0,0 +1,14 @@ +--- +fixes: + - | + Bug 1766235_: Handle HTTP headers per RFC 8187 + + Previously the glanceclient encoded HTTP headers as UTF-8 + bytes. According to `RFC 8187`_, however, headers should be + encoded as 7-bit ASCII. The glanceclient now sends all headers + as 7-bit ASCII. It handles unicode strings by percent-encoding_ + them before sending them in headers. + + .. _1766235: https://code.launchpad.net/bugs/1766235 + .. _RFC 8187: https://tools.ietf.org/html/rfc8187 + .. _percent-encoding: https://tools.ietf.org/html/rfc3986#section-2.1