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