OLD | NEW |
| 1 ## 1.2.0 |
| 2 |
| 3 * Add `Client.isClosed` and `Server.isClosed`, which make it possible to |
| 4 synchronously determine whether the connection is open. In particular, this |
| 5 makes it possible to reliably tell whether it's safe to call |
| 6 `Client.sendRequest`. |
| 7 |
| 8 * Fix a race condition in `Server` where a `StateError` could be thrown if the |
| 9 connection was closed in the middle of handling a request. |
| 10 |
1 ## 1.1.1 | 11 ## 1.1.1 |
2 | 12 |
3 * Update the README to match the current API. | 13 * Update the README to match the current API. |
4 | 14 |
5 ## 1.1.0 | 15 ## 1.1.0 |
6 | 16 |
7 * Add a `done` getter to `Client`, `Server`, and `Peer`. | 17 * Add a `done` getter to `Client`, `Server`, and `Peer`. |
8 | 18 |
9 ## 1.0.0 | 19 ## 1.0.0 |
10 | 20 |
(...skipping 13 matching lines...) Expand all Loading... |
24 * Add `Server.close()`, which closes the underlying request stream and response | 34 * Add `Server.close()`, which closes the underlying request stream and response |
25 sink. | 35 sink. |
26 | 36 |
27 ## 0.0.2+3 | 37 ## 0.0.2+3 |
28 | 38 |
29 * Widen the version constraint for `stack_trace`. | 39 * Widen the version constraint for `stack_trace`. |
30 | 40 |
31 ## 0.0.2+2 | 41 ## 0.0.2+2 |
32 | 42 |
33 * Fix error response to include data from `RpcException` when not a map. | 43 * Fix error response to include data from `RpcException` when not a map. |
OLD | NEW |