Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 1.12.0 | 1 ## 1.12.0 |
| 2 | 2 |
| 3 * Add an `AsyncCache` class that caches asynchronous operations for a period of | 3 * Add an `AsyncCache` class that caches asynchronous operations for a period of |
| 4 time. | 4 time. |
| 5 | 5 |
| 6 * Add `StreamQueue.peek` and `StreamQueue.lookAheead`. | |
| 7 These allow users to look at events without consuming them. | |
|
nweiz
2017/01/24 22:37:59
I released 1.12 so I could start using it in other
Lasse Reichstein Nielsen
2017/01/25 07:58:03
Done.
| |
| 8 | |
| 6 * Add `StreamQueue.startTransaction()` and `StreamQueue.withTransaction()`. | 9 * Add `StreamQueue.startTransaction()` and `StreamQueue.withTransaction()`. |
| 7 These allow users to conditionally consume events based on their values. | 10 These allow users to conditionally consume events based on their values. |
| 8 | 11 |
| 9 * Add `StreamQueue.cancelable()`, which allows users to easily make a | 12 * Add `StreamQueue.cancelable()`, which allows users to easily make a |
| 10 `CancelableOperation` that can be canceled without affecting the queue. | 13 `CancelableOperation` that can be canceled without affecting the queue. |
| 11 | 14 |
| 12 * Add a `subscriptionTransformer()` function to create `StreamTransformer`s that | 15 * Add a `subscriptionTransformer()` function to create `StreamTransformer`s that |
| 13 modify the behavior of subscriptions to a stream. | 16 modify the behavior of subscriptions to a stream. |
| 14 | 17 |
| 15 ## 1.11.3 | 18 ## 1.11.3 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 150 - Added a `StreamSplitter` class for splitting a stream into multiple new | 153 - Added a `StreamSplitter` class for splitting a stream into multiple new |
| 151 streams. | 154 streams. |
| 152 | 155 |
| 153 ## 1.1.1 | 156 ## 1.1.1 |
| 154 | 157 |
| 155 - Updated SDK version constraint to at least 1.9.0. | 158 - Updated SDK version constraint to at least 1.9.0. |
| 156 | 159 |
| 157 ## 1.1.0 | 160 ## 1.1.0 |
| 158 | 161 |
| 159 - ChangeLog starts here. | 162 - ChangeLog starts here. |
| OLD | NEW |