OLD | NEW |
1 ## 0.13.1 | 1 ## 0.13.1 |
2 | 2 |
3 * Only run `Transformer.isPrimary` once for each asset. | 3 * Only run `Transformer.isPrimary` once for each asset. |
4 | 4 |
5 * Don't warn if a lazy or declaring transformer doesn't emit outputs that it has | 5 * Don't warn if a lazy or declaring transformer doesn't emit outputs that it has |
6 declared. This is valid for transformers like dart2js that need to read their | 6 declared. This is valid for transformers like dart2js that need to read their |
7 primary input in order to determine whether they should run. | 7 primary input in order to determine whether they should run. |
8 | 8 |
| 9 * Allow `Transformer.isPrimary`, `Transformer.apply`, and |
| 10 `DeclaringTransformer.declareOutputs` to return non-`Future` values if they |
| 11 run synchronously. |
| 12 |
9 * Fix a deadlock bug when a lazy primary input to a lazy transformer became | 13 * Fix a deadlock bug when a lazy primary input to a lazy transformer became |
10 dirty while the transformer's `apply` method was running. | 14 dirty while the transformer's `apply` method was running. |
11 | 15 |
12 ## 0.13.0 | 16 ## 0.13.0 |
13 | 17 |
14 * `Transformer.isPrimary` now takes an `AssetId` rather than an `Asset`. | 18 * `Transformer.isPrimary` now takes an `AssetId` rather than an `Asset`. |
15 | 19 |
16 * `DeclaringTransform` now only exposes the primary input's `AssetId`, rather | 20 * `DeclaringTransform` now only exposes the primary input's `AssetId`, rather |
17 than the primary `Asset` object. | 21 than the primary `Asset` object. |
18 | 22 |
(...skipping 25 matching lines...) Expand all Loading... |
44 | 48 |
45 * If a transformer calls `Transform.logger.error`, the transformer will now be | 49 * If a transformer calls `Transform.logger.error`, the transformer will now be |
46 considered to have failed after it finishes running `apply()`. This means that | 50 considered to have failed after it finishes running `apply()`. This means that |
47 its outputs will not be consumed by future transformers and its primary input | 51 its outputs will not be consumed by future transformers and its primary input |
48 will not be passed through to the next phase. | 52 will not be passed through to the next phase. |
49 | 53 |
50 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 54 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
51 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 55 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
52 doesn't exist, the transform will be re-run if that input is created in the | 56 doesn't exist, the transform will be re-run if that input is created in the |
53 future. | 57 future. |
OLD | NEW |