- Body of a redirect is skipped ([f] is not called with the body) (#26 @hannesm)
- hurl: --output must be a non-existing file (#26 @hannesm)
- http2: shutdown the connection once finished (#23, @reynir)
- update to TLS 1.0 API (#25, @hannesm)
- Order http2 headers appropriately to avoid malformed requests (#20, @hannesm)
- In HTTP/2, always lowercase the header keys (#19 by @ScoreUnder, fixes #7 by @kit-ty-kate)
- Adapt to h2 0.10.0 API change (#18 by @hannesm)
- Update to tls 0.16.0 package split: tls.lwt is now tls-lwt (#17 by @hannesm)
- Fix ownership of buffers given by the HTTP scheduler (#16 by @dinosaure)
- API: In the body function passed to request, the response is the first argument. This allows a client to do different stuff with the body, depending on the response code (and/or content type etc.) (#15 by @hannesm, reviewed and suggested by @reynir in https://git.robur.coop/robur/http-mirage-client/pulls/2)
- Add function "request", remove "one_request". The response body is a stream now to support responses where the body exceeds the memory (or maximum string length) (#14 @kit-ty-kate)
- BUGFIX hurl had "input" and "output" switched (#14 @hannesm)
- use Status.is_redirection instead of a match on the polymorphic variant, to support unknown 3xx codes (such as 308) (#11 @hannesm)
- add some yield in the main loop to allow concurrency with other fibers (issue #12 by @kit-ty-kate, fixed in #13 by @dinosaure)
- hurl: add a no-follow flag (@hannesm)
- upgrade to h2 0.9.0 API (#10 @hannesm)
- upgrade to cmdliner 1.1.0 API (@hannesm)
- remove rresult dependency (#6 @hannesm @reynir)
- Add ?tls_config to Http_lwt_client.one_request to enable passing an entire TLS configuration
- Avoid exception in resolve_location
- Add ?happy_eyeballs to Http_lwt_client.one_request to allow reusing this state across requests
- Initialize Ca_certs.authenticator only once (lazily) to avoid decoding trust anchors multiple times
- Fix Http_lwt_unix.Buffer for resizing on put (to avoid errors with H2)
- Avoid exceptions from Lwt.wakeup_later by calling it at most once
- Fix following redirects if location is relative or schema-relative
- Provide the optional argument ?follow_redirect to not follow redirects
- Unify response API between HTTP1 and HTTP2 requests and responses (issue #5)
- Initial release