Skip to content

Releases: launchdarkly/rust-eventsource-client

0.9.0

15 Mar 21:52
Compare
Choose a tag to compare

[0.9.0] - 2022-03-15

Added:

  • Added support for SSE test harness. This harness will run the client against a suite of contract tests to verify it implements the SSE specification.

Changed:

  • Change ClientBuilder to return impl Client, where Client is a sealed trait that exposes a stream() method. Users will need to update from Client::for_url to ClientBuilder::for_url.

Fixed:

  • Fixed various bugs related to SSE protocol.

0.8.2

03 Feb 21:27
Compare
Choose a tag to compare

[0.8.2] - 2022-02-03

Added:

  • Support for creating an event source client with a pre-configured connection.

0.8.1

19 Jan 19:34
Compare
Choose a tag to compare

[0.8.1] - 2022-01-19

Changed:

  • Added missing changelog
  • Fixed keyword for crates.io publishing

v0.2.0

24 Jul 21:52
a7fc9cc
Compare
Choose a tag to compare

Change Client::for_url constructor to take a plain &str instead of leaking reqwest::IntoUrl into the API. (Incompatible change unless you were already passing a &str.)