Bug Fixes
- headers: Content-Encoding needs a hyphen. (ca2815ef)
Features
Breaking Changes
-
AccessControlAllowHeaders
andAccessControlRequestHeaders
values
are case insensitive now.AccessControlAllowOrigin
variants are nowAny
and
Value
to match the other headers.(94f38950)
-
If-Match
,If-None-Match
andVary
item variant name changed toItems
(38d297b1)
-
Etag
header field is nowETag
header field(4434ea6a)
-
For people using the default HttpConnector and Client,
everything should continue to just work. If the Client has been
used with a generic parameter, it should be removed.However, there were some breaking changes to the internals of
NetworkConnectors. Specifically, they no longer return a
NetworkStream, but instead a Into<Box<NetworkStream + Send>>. All
implementations of NetworkStream should continue to just work,
however.Possible breakages could come from the stricter usage of Send
throughout the Client API.(139a51f1)