Releases: launchdarkly/rust-eventsource-client
Releases · launchdarkly/rust-eventsource-client
v0.13.0
v0.12.2
v0.12.1
v0.12.0
0.11.0
[0.11.0] - 2022-11-07
Fixed:
- Add missing retry interval reset behavior.
- Add missing jitter to retry strategy.
0.10.2
[0.10.2] - 2022-10-28
Fixed:
- Correctly handle comment payloads.
0.10.1
[0.10.1] - 2022-04-14
Fixed:
- Comment events were incorrectly consuming non-comment event data. Now comment events are emitted as they are parsed and can no longer affect non-comment event data.
0.10.0
[0.10.0] - 2022-03-23
Added:
- Added support for following 301 & 307 redirects with configurable redirect limit.
Fixed:
- Fixed
Last-Event-ID
handling when server sends explicit empty ID.
0.9.0
[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 returnimpl Client
, whereClient
is a sealed trait that exposes astream()
method. Users will need to update fromClient::for_url
toClientBuilder::for_url
.
Fixed:
- Fixed various bugs related to SSE protocol.
0.8.2
[0.8.2] - 2022-02-03
Added:
- Support for creating an event source client with a pre-configured connection.