| OLD | NEW |
| 1 ## 0.15.2+1 |
| 2 |
| 3 * Properly handle logs from a transformer that's been canceled. |
| 4 |
| 1 ## 0.15.2 | 5 ## 0.15.2 |
| 2 | 6 |
| 3 * Add a `StaticPackageProvider` class to more efficiently handle immutable, | 7 * Add a `StaticPackageProvider` class to more efficiently handle immutable, |
| 4 untransformed packages. | 8 untransformed packages. |
| 5 | 9 |
| 6 ## 0.15.0+1 | 10 ## 0.15.0+1 |
| 7 | 11 |
| 8 * Widen the version constraint on the `collection` package. | 12 * Widen the version constraint on the `collection` package. |
| 9 | 13 |
| 10 ## 0.15.0 | 14 ## 0.15.0 |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 | 128 |
| 125 * If a transformer calls `Transform.logger.error`, the transformer will now be | 129 * If a transformer calls `Transform.logger.error`, the transformer will now be |
| 126 considered to have failed after it finishes running `apply()`. This means that | 130 considered to have failed after it finishes running `apply()`. This means that |
| 127 its outputs will not be consumed by future transformers and its primary input | 131 its outputs will not be consumed by future transformers and its primary input |
| 128 will not be passed through to the next phase. | 132 will not be passed through to the next phase. |
| 129 | 133 |
| 130 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 134 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 131 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 135 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
| 132 doesn't exist, the transform will be re-run if that input is created in the | 136 doesn't exist, the transform will be re-run if that input is created in the |
| 133 future. | 137 future. |
| OLD | NEW |