Releases: hyperium/h2
Releases · hyperium/h2
v0.3.0
- Update to Tokio 1.0.
v0.2.7
- Fix stream ref count when sending a push promise
- Fix receiving empty DATA frames in response to a HEAD request
- Fix handling of client disabling SERVER_PUSH
v0.2.6
- Integrate
tracingdirectly wherelogwas used. (For 0.2.x,logs are still emitted by default.)
v0.2.5
- Fix rare debug assert failure in store shutdown.
v0.2.4
- Fix when receiving
SETTINGS_HEADER_TABLE_SIZEsetting.
v0.2.3
- Fix server being able to accept
CONNECTrequests without:schemeor:path. - Fix receiving a GOAWAY frame from updating the recv max ID, it should only update max send ID.
v0.2.2
- Reduce size of
FlowControlandRecvStream.
v0.2.1
- Relax
Unpinbounds on the sendBufgeneric.
v0.2.0
- Add server support for
PUSH_PROMISEs (#327). - Add
server::Connection::set_initial_window_sizeandclient::Connection::set_initial_window_sizewhich can adjust theINITIAL_WINDOW_SIZEsetting on an existing connection (#421). - Update to
httpv0.2. - Update to
tokiov0.2. - Update from
futures0.1 tostd::future::Future. - Change
unstable-streamfeature tostream. - Change
ReserveCapacitytoFlowControl(#423). - Change
Streamimplementations to the optionalstreamcargo feature, default disabled. Specific async and poll functions are now inherent, andStreamcan be re-enabled with thestreamcargo feature. - Remove
From<io::Error>forError.