| OLD | NEW |
| 1 ## 0.15.2+12 |
| 2 |
| 3 * Declare support for `async` 2.0.0. |
| 4 |
| 1 ## 0.15.2+11 | 5 ## 0.15.2+11 |
| 2 | 6 |
| 3 * Update `AssetNode.whenAvailable` to be a generic method to fix a new strong | 7 * Update `AssetNode.whenAvailable` to be a generic method to fix a new strong |
| 4 mode error. | 8 mode error. |
| 5 | 9 |
| 6 ## 0.15.2+10 | 10 ## 0.15.2+10 |
| 7 | 11 |
| 8 * Update `CancelableFuture` to match the new `Future.then` type signature. The | 12 * Update `CancelableFuture` to match the new `Future.then` type signature. The |
| 9 `onValue` parameter now has a return type of `FutureOr<S>` instead of | 13 `onValue` parameter now has a return type of `FutureOr<S>` instead of |
| 10 `S`. | 14 `S`. |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 | 177 |
| 174 * If a transformer calls `Transform.logger.error`, the transformer will now be | 178 * If a transformer calls `Transform.logger.error`, the transformer will now be |
| 175 considered to have failed after it finishes running `apply()`. This means that | 179 considered to have failed after it finishes running `apply()`. This means that |
| 176 its outputs will not be consumed by future transformers and its primary input | 180 its outputs will not be consumed by future transformers and its primary input |
| 177 will not be passed through to the next phase. | 181 will not be passed through to the next phase. |
| 178 | 182 |
| 179 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 183 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 180 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 184 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
| 181 doesn't exist, the transform will be re-run if that input is created in the | 185 doesn't exist, the transform will be re-run if that input is created in the |
| 182 future. | 186 future. |
| OLD | NEW |