OLD | NEW |
1 ## 1.4.0 | 1 ## 1.4.0 |
2 | 2 |
| 3 - Added `LazyStream`, which forwards to the return value of a callback that's |
| 4 only called when the stream is listened to. |
| 5 |
| 6 ## 1.4.0 |
| 7 |
3 - Added `AsyncMemoizer.future`, which allows the result to be accessed before | 8 - Added `AsyncMemoizer.future`, which allows the result to be accessed before |
4 `runOnce()` is called. | 9 `runOnce()` is called. |
5 | 10 |
6 - Added `CancelableOperation`, an asynchronous operation that can be canceled. | 11 - Added `CancelableOperation`, an asynchronous operation that can be canceled. |
7 It can be created using a `CancelableCompleter`. | 12 It can be created using a `CancelableCompleter`. |
8 | 13 |
9 - Added `RestartableTimer`, a non-periodic timer that can be reset over and | 14 - Added `RestartableTimer`, a non-periodic timer that can be reset over and |
10 over. | 15 over. |
11 | 16 |
12 ## 1.3.0 | 17 ## 1.3.0 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 - Added a `StreamGroup` class for merging the events of a group of streams, | 50 - Added a `StreamGroup` class for merging the events of a group of streams, |
46 potentially of unknown size. | 51 potentially of unknown size. |
47 | 52 |
48 ## 1.1.1 | 53 ## 1.1.1 |
49 | 54 |
50 - Updated SDK version constraint to at least 1.9.0. | 55 - Updated SDK version constraint to at least 1.9.0. |
51 | 56 |
52 ## 1.1.0 | 57 ## 1.1.0 |
53 | 58 |
54 - ChangeLog starts here. | 59 - ChangeLog starts here. |
OLD | NEW |