| 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 * Fix a deadlock bug when a lazy primary input to a lazy transformer became |
| 6 dirty while the transformer's `apply` method was running. |
| 7 |
| 5 ## 0.13.0 | 8 ## 0.13.0 |
| 6 | 9 |
| 7 * `Transformer.isPrimary` now takes an `AssetId` rather than an `Asset`. | 10 * `Transformer.isPrimary` now takes an `AssetId` rather than an `Asset`. |
| 8 | 11 |
| 9 * `DeclaringTransform` now only exposes the primary input's `AssetId`, rather | 12 * `DeclaringTransform` now only exposes the primary input's `AssetId`, rather |
| 10 than the primary `Asset` object. | 13 than the primary `Asset` object. |
| 11 | 14 |
| 12 * `DeclaringTransform` no longer supports `getInput`, `readInput`, | 15 * `DeclaringTransform` no longer supports `getInput`, `readInput`, |
| 13 `readInputAsString`, or `hasInput`. | 16 `readInputAsString`, or `hasInput`. |
| 14 | 17 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 37 | 40 |
| 38 * If a transformer calls `Transform.logger.error`, the transformer will now be | 41 * If a transformer calls `Transform.logger.error`, the transformer will now be |
| 39 considered to have failed after it finishes running `apply()`. This means that | 42 considered to have failed after it finishes running `apply()`. This means that |
| 40 its outputs will not be consumed by future transformers and its primary input | 43 its outputs will not be consumed by future transformers and its primary input |
| 41 will not be passed through to the next phase. | 44 will not be passed through to the next phase. |
| 42 | 45 |
| 43 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 46 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 44 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 47 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
| 45 doesn't exist, the transform will be re-run if that input is created in the | 48 doesn't exist, the transform will be re-run if that input is created in the |
| 46 future. | 49 future. |
| OLD | NEW |