| OLD | NEW |
| 1 ## 0.15.2+7 |
| 2 |
| 3 * Add periodic fine-grained logging for long running transformers. |
| 4 |
| 1 ## 0.15.2+6 | 5 ## 0.15.2+6 |
| 2 | 6 |
| 3 * Fix a deadlock that occurred occasionally when a declaring transformer was | 7 * Fix a deadlock that occurred occasionally when a declaring transformer was |
| 4 followed by a lazy transformer (most commonly `$dart2js`). | 8 followed by a lazy transformer (most commonly `$dart2js`). |
| 5 | 9 |
| 6 ## 0.15.2+5 | 10 ## 0.15.2+5 |
| 7 | 11 |
| 8 * If a transformer requests a non-existent asset from another package, it will | 12 * If a transformer requests a non-existent asset from another package, it will |
| 9 now be re-run if that asset is later created. | 13 now be re-run if that asset is later created. |
| 10 | 14 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 154 |
| 151 * If a transformer calls `Transform.logger.error`, the transformer will now be | 155 * If a transformer calls `Transform.logger.error`, the transformer will now be |
| 152 considered to have failed after it finishes running `apply()`. This means that | 156 considered to have failed after it finishes running `apply()`. This means that |
| 153 its outputs will not be consumed by future transformers and its primary input | 157 its outputs will not be consumed by future transformers and its primary input |
| 154 will not be passed through to the next phase. | 158 will not be passed through to the next phase. |
| 155 | 159 |
| 156 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 160 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 157 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 161 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
| 158 doesn't exist, the transform will be re-run if that input is created in the | 162 doesn't exist, the transform will be re-run if that input is created in the |
| 159 future. | 163 future. |
| OLD | NEW |