Releases: hyperium/hyper
Releases · hyperium/hyper
v0.3.8
v0.3.7
v0.3.6
v0.3.5
v0.3.4
v0.3.3
v0.3.2
httparse
Bug Fixes
- header: Fix charset parsing bug. (5a6e176f)
- headers: Fix overflow with empty cookies (99baaa10)
- rustup: update to latest rustc (4fd8a6a9)
Features
Breaking Changes
-
Several public functions and types in the
http
module
have been removed. They have been replaced with 2 methods that handle
all of the http1 parsing.(b87bb20f)
v0.3.0
v0.1.13
Bug Fixes
Features
- header: Support arbitary status codes (73978531)
- headers:
- server: Rewrite the accept loop into a custom thread pool. (3528fb9b)
Breaking Changes
-
This removes unregistered status codes from the enum. Use
FromPrimitive
methods to create them now. StatusCode and StatusClass can no
longer be casted tou16
, useToPrimitive
methods now.
For examplestatus.to_u16().unwrap()
to get the status code number.(73978531)