Skip to content

Releases: hyperium/h2

v0.2.6

14 Jul 00:11
Compare
Choose a tag to compare
  • Integrate tracing directly where log was used. (For 0.2.x, logs are still emitted by default.)

v0.2.5

13 Jul 23:35
Compare
Choose a tag to compare
  • Fix rare debug assert failure in store shutdown.

v0.2.4

30 Mar 22:29
Compare
Choose a tag to compare
  • Fix when receiving SETTINGS_HEADER_TABLE_SIZE setting.

v0.2.3

30 Mar 22:29
Compare
Choose a tag to compare
  • 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

30 Mar 22:29
Compare
Choose a tag to compare
  • Reduce size of FlowControl and RecvStream.

v0.2.1

06 Dec 20:26
Compare
Choose a tag to compare
  • Relax Unpin bounds on the send Buf generic.

v0.2.0

03 Dec 21:57
Compare
Choose a tag to compare
  • Add server support for PUSH_PROMISEs (#327).
  • Add server::Connection::set_initial_window_size and client::Connection::set_initial_window_size which can adjust the INITIAL_WINDOW_SIZE setting on an existing connection (#421).
  • Update to http v0.2.
  • Update to tokio v0.2.
  • Update from futures 0.1 to std::future::Future.
  • Change unstable-stream feature to stream.
  • Change ReserveCapacity to FlowControl (#423).
  • Change Stream implementations to the optional stream cargo feature, default disabled. Specific async and poll functions are now inherent, and Stream can be re-enabled with the stream cargo feature.
  • Remove From<io::Error> for Error.