h2: Don't count peer max concurrent streams based on what the endpoint receives; the endpoint is responsible for selecting it (#71)
h2: Fix bug in Headers.remove that prevented removing the last header pair (#73)
h2: Fix bug in Headers.replace that prevented replacing the last header pair (#76)
h2-mirage: Adapt to Mirage 3.7 interfaces. h2_mirage now requires conduit-mirage >= 2.0.2 and mirage-flow >= 2.0.0 (#77)
0.3.0 2019-05-04
h2-mirage: Provide Server and Client functors that take a Mirage_flow_lwt.S module as an argument (#37)
h2: Fix bug in the client implementation that didn't report connection preface errors as soon as they happened (#38)
h2: optimize the stream scheduler: previously when the writer yielded between writes, a wake up function was registered with all the (active) streams, which required a linear traversal of all the streams. The optimization is to allow every stream to wake up a global writer to which they hold a reference (#40)
h2: improve handling of received frames against closed streams (#40)
h2: in the client implementation, call the stream level error handler when receiving an RST_STREAM frame (#42)
h2-lwt-unix: fail earlier when setting up a SSL/TLS server without the depopts being available (#46)
h2-lwt-unix: improve the default ALPN negotiation mechanism in the SSL binding (#46)
0.2.0 2019-04-06
h2: Fix false negative related to receiving trailer headers with CONTINUATION frames (#11)
hpack: Fix bug where trying to add an entry to an HPACK dynamic table with 0 capacity resulted in an out-of-bounds array access (#13, #35)
h2: Add support for the 421 (Misdirected Request) status code as per RFC7540ยง9.1.2 (#15)
h2, h2-lwt, h2-lwt-unix, h2-mirage: Add an HTTP/2 client implementation (#16)