OLD | NEW |
| 1 ## 0.14.2 |
| 2 |
| 3 * 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 |
| 5 SourceSpans will be accepted. |
| 6 |
1 ## 0.14.1+3 | 7 ## 0.14.1+3 |
2 | 8 |
3 * Add a dependency on the `pool` package. | 9 * Add a dependency on the `pool` package. |
4 | 10 |
5 ## 0.14.1+2 | 11 ## 0.14.1+2 |
6 | 12 |
7 * Automatically log how long it takes long-running transforms to run. | 13 * Automatically log how long it takes long-running transforms to run. |
8 | 14 |
9 ## 0.14.1+1 | 15 ## 0.14.1+1 |
10 | 16 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 | 110 |
105 * If a transformer calls `Transform.logger.error`, the transformer will now be | 111 * If a transformer calls `Transform.logger.error`, the transformer will now be |
106 considered to have failed after it finishes running `apply()`. This means that | 112 considered to have failed after it finishes running `apply()`. This means that |
107 its outputs will not be consumed by future transformers and its primary input | 113 its outputs will not be consumed by future transformers and its primary input |
108 will not be passed through to the next phase. | 114 will not be passed through to the next phase. |
109 | 115 |
110 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 116 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
111 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 117 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
112 doesn't exist, the transform will be re-run if that input is created in the | 118 doesn't exist, the transform will be re-run if that input is created in the |
113 future. | 119 future. |
OLD | NEW |