Skip to content

Releases: robur-coop/http-lwt-client

0.0.8

17 Sep 11:16
Compare
Choose a tag to compare

CHANGES:

  • 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)

0.0.7

25 Aug 11:57
Compare
Choose a tag to compare

CHANGES:

0.0.6

16 Mar 09:12
Compare
Choose a tag to compare

CHANGES:

  • upgrade to cmdliner 1.1.0 API (@hannesm)

0.0.5

30 Oct 16:39
Compare
Choose a tag to compare

CHANGES:

0.0.4

11 Sep 11:50
Compare
Choose a tag to compare

CHANGES:

  • 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

0.0.3

07 Sep 14:55
Compare
Choose a tag to compare

CHANGES:

  • Fix following redirects if location is relative or schema-relative
  • Provide the optional argument ?follow_redirect to not follow redirects

0.0.2

06 Sep 20:21
Compare
Choose a tag to compare

CHANGES:

  • Unify response API between HTTP1 and HTTP2 requests and responses (issue #5)

0.0.1

06 Sep 11:27
Compare
Choose a tag to compare

CHANGES:

  • Initial release