| OLD | NEW |
| 1 ## 1.6.0 | 1 ## 1.6.0 |
| 2 | 2 |
| 3 - Added `CancelableOperation.valueOrCancellation()`, which allows users to be | 3 - Added `CancelableOperation.valueOrCancellation()`, which allows users to be |
| 4 notified when an operation is canceled elsewhere. | 4 notified when an operation is canceled elsewhere. |
| 5 | 5 |
| 6 - Added `StreamSinkTransformer` which transforms events before they're passed to |
| 7 a `StreamSink`, similarly to how `StreamTransformer` transforms events after |
| 8 they're emitted by a stream. |
| 9 |
| 6 ## 1.5.0 | 10 ## 1.5.0 |
| 7 | 11 |
| 8 - Added `LazyStream`, which forwards to the return value of a callback that's | 12 - Added `LazyStream`, which forwards to the return value of a callback that's |
| 9 only called when the stream is listened to. | 13 only called when the stream is listened to. |
| 10 | 14 |
| 11 ## 1.4.0 | 15 ## 1.4.0 |
| 12 | 16 |
| 13 - Added `AsyncMemoizer.future`, which allows the result to be accessed before | 17 - Added `AsyncMemoizer.future`, which allows the result to be accessed before |
| 14 `runOnce()` is called. | 18 `runOnce()` is called. |
| 15 | 19 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 - Added a `StreamGroup` class for merging the events of a group of streams, | 59 - Added a `StreamGroup` class for merging the events of a group of streams, |
| 56 potentially of unknown size. | 60 potentially of unknown size. |
| 57 | 61 |
| 58 ## 1.1.1 | 62 ## 1.1.1 |
| 59 | 63 |
| 60 - Updated SDK version constraint to at least 1.9.0. | 64 - Updated SDK version constraint to at least 1.9.0. |
| 61 | 65 |
| 62 ## 1.1.0 | 66 ## 1.1.0 |
| 63 | 67 |
| 64 - ChangeLog starts here. | 68 - ChangeLog starts here. |
| OLD | NEW |