Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mpx committed Jan 24, 2019
1 parent b88acbb commit ef711fb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,22 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).

## 1.3.0
* Delay reconnecting with randomized exponential backoff. ([@mpx](https://github.com/mpx))
* Reconnect after event stream request ends. ([@mpx](https://github.com/mpx))
* Reconnect after protocol errors (invalid UTF-8, non-200 OK status codes). ([@mpx](https://github.com/mpx))
* Stop event stream after 204 No Content. ([@mpx](https://github.com/mpx))
* Ensure resources are released for old connections. ([@mpx](https://github.com/mpx))

## 1.2.2
* Revert `data` event commit, which was a misreading of the spec. ([@mpx](https://github.com/mpx) in [#4](https://github.com/goto-bus-stop/dart-event-source/pull/4))
* Revert `data` event commit, which was a misreading of the spec. ([@mpx](https://github.com/mpx))

## 1.2.1
* Ensure `data` event data ends in \n per the spec. ([@mpx](https://github.com/mpx) in [#2](https://github.com/goto-bus-stop/dart-event-source/pull/3))
* Fix event name bug in multiline data messages. ([@mpx](https://github.com/mpx) in [#2](https://github.com/goto-bus-stop/dart-event-source/pull/3))
* Ensure `data` event data ends in \n per the spec. ([@mpx](https://github.com/mpx))
* Fix event name bug in multiline data messages. ([@mpx](https://github.com/mpx))

## 1.2.0
* Allow passing in a custom HttpClient factory. ([@mpx](https://github.com/mpx) in [#2](https://github.com/goto-bus-stop/dart-event-source/pull/2))
* Allow passing in a custom HttpClient factory. ([@mpx](https://github.com/mpx))

## 1.1.0
* Implement auto-reconnect.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add to your `pubspec.yaml`:

```yaml
dependencies:
w3c_event_source: ^1.2.2
w3c_event_source: ^1.3.0
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: w3c_event_source
version: 1.2.2
version: 1.3.0
description: W3C EventSource client implementation for Dart / Flutter,
to communicate with server-sent event endpoints.
author: Renée Kooi <[email protected]>
Expand Down

0 comments on commit ef711fb

Please sign in to comment.