Skip to content

Releases: robur-coop/httpcats

0.3.0

06 May 08:58

Choose a tag to compare

CHANGES:

  • Don't predate how we close underlying connection when we write something. It
    avoid a "double-close" (@dinosaure, #49)

  • breaking change Be able to specify a UNIX domain socket for listening
    (@theAlexes, #51)

  • Delete the rresult dependency on tests (@dinosaure, #54)

  • Close only when (httpcats) we create and bind a socket (and don't do that
    when the user pass a socket for us) (@theAlexes, @dinosaure, #53, #57)

  • Clean and fix our runtime (@dinosaure, #59, #61)

    Here we decided to trust the underlying state machine
    H{1,2}.{Server,Client}_connection.t to properly close a connection. When we
    close it, we Miou.cancel tasks (instead of Miou.await them). httpcats
    requires miou.0.6.0 (which provides Miou.take). When the Flow raises
    an exception, we report this exception to the state machine & it should stop
    everything.

  • breaking change Pass the conn value to the handler (@dinosaure, #60)

0.2.1

25 Mar 07:49

Choose a tag to compare

CHANGES:

  • Use Miou.Ownership to release correctly our resource in any cases (including
    the cancellation case) (@dinosaure, #47)

  • Replace assert false by failwith (@dinosaure, #47)

  • Improve performances (@dinosaure, #46)
    We use a pre-allocated buffer to read/write things into the given flow now
    We don't try to split bigarray to small strings
    We fixed a bit the way to stop a server

    A benchmark was made with wrk and compare httpcats, httpun+eio, vif
    and nginx. It is available here: https://robur-coop.github.io/httpcats/
    The protocol of the benchmark is described into our file bench/PROTOCOL.md.
    The collected results from our machine is available into our file
    bench/BENCH.md. Implementations are available into the bench/ folder.

0.2.0

19 Feb 10:47

Choose a tag to compare

CHANGES:

0.1.0

09 Aug 14:14

Choose a tag to compare

CHANGES:

  • Add the support of websocket (@swrup & @dinosaure)
  • Improve the Httpcats.request and handle cookies and redirections well
    (@dinosaure)
  • Improve the runtime implement to process an HTTP communication (with http/1.1
    & h2) (@dinosaure)
  • Improve the documentation (@dinosaure)

This changelog does not contain PRs referring to additions to httpcats, as they
were produced with a quick iteration to finalise the release of httpcats.0.1.0.

0.0.1

13 Sep 09:32

Choose a tag to compare

CHANGES:

  • First release