| OLD | NEW |
| 1 ## 0.15.0+1 |
| 2 |
| 3 * Widen the version constraint on the `collection` package. |
| 4 |
| 1 ## 0.15.0 | 5 ## 0.15.0 |
| 2 | 6 |
| 3 * Fully switch from `source_maps`' `Span` class to `source_span`'s `SourceSpan` | 7 * Fully switch from `source_maps`' `Span` class to `source_span`'s `SourceSpan` |
| 4 class. | 8 class. |
| 5 | 9 |
| 6 ## 0.14.2 | 10 ## 0.14.2 |
| 7 | 11 |
| 8 * All TransformLogger methods now accept SourceSpans from the source_span | 12 * All TransformLogger methods now accept SourceSpans from the source_span |
| 9 package in addition to Spans from the source_maps package. In 0.15.0, only | 13 package in addition to Spans from the source_maps package. In 0.15.0, only |
| 10 SourceSpans will be accepted. | 14 SourceSpans will be accepted. |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 119 |
| 116 * If a transformer calls `Transform.logger.error`, the transformer will now be | 120 * If a transformer calls `Transform.logger.error`, the transformer will now be |
| 117 considered to have failed after it finishes running `apply()`. This means that | 121 considered to have failed after it finishes running `apply()`. This means that |
| 118 its outputs will not be consumed by future transformers and its primary input | 122 its outputs will not be consumed by future transformers and its primary input |
| 119 will not be passed through to the next phase. | 123 will not be passed through to the next phase. |
| 120 | 124 |
| 121 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 125 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 122 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 126 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
| 123 doesn't exist, the transform will be re-run if that input is created in the | 127 doesn't exist, the transform will be re-run if that input is created in the |
| 124 future. | 128 future. |
| OLD | NEW |