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