Releases: hyperium/h2
Releases · hyperium/h2
v0.2.6
- Integrate
tracing
directly wherelog
was used. (For 0.2.x,log
s 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_SIZE
setting.
v0.2.3
- Fix server being able to accept
CONNECT
requests without:scheme
or: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
FlowControl
andRecvStream
.
v0.2.1
- Relax
Unpin
bounds on the sendBuf
generic.
v0.2.0
- Add server support for
PUSH_PROMISE
s (#327). - Add
server::Connection::set_initial_window_size
andclient::Connection::set_initial_window_size
which can adjust theINITIAL_WINDOW_SIZE
setting on an existing connection (#421). - Update to
http
v0.2. - Update to
tokio
v0.2. - Update from
futures
0.1 tostd::future::Future
. - Change
unstable-stream
feature tostream
. - Change
ReserveCapacity
toFlowControl
(#423). - Change
Stream
implementations to the optionalstream
cargo feature, default disabled. Specific async and poll functions are now inherent, andStream
can be re-enabled with thestream
cargo feature. - Remove
From<io::Error>
forError
.