| OLD | NEW |
| 1 ## 0.14.0+1 |
| 2 |
| 3 * Fix a bug where a transformer group preceded by another transformer group |
| 4 would sometimes fail to load secondary assets. |
| 5 |
| 1 ## 0.14.0 | 6 ## 0.14.0 |
| 2 | 7 |
| 3 * **Breaking change**: when an output of a lazy transformer is requested, that | 8 * **Breaking change**: when an output of a lazy transformer is requested, that |
| 4 transformer will run long enough to generate the output, then become lazy | 9 transformer will run long enough to generate the output, then become lazy |
| 5 again. Previously, it would become eager as soon as an asset had been | 10 again. Previously, it would become eager as soon as an asset had been |
| 6 requested. | 11 requested. |
| 7 | 12 |
| 8 * Only run `Transformer.isPrimary` and `Transformer.declareOutputs` once for | 13 * Only run `Transformer.isPrimary` and `Transformer.declareOutputs` once for |
| 9 each asset. | 14 each asset. |
| 10 | 15 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 73 |
| 69 * If a transformer calls `Transform.logger.error`, the transformer will now be | 74 * If a transformer calls `Transform.logger.error`, the transformer will now be |
| 70 considered to have failed after it finishes running `apply()`. This means that | 75 considered to have failed after it finishes running `apply()`. This means that |
| 71 its outputs will not be consumed by future transformers and its primary input | 76 its outputs will not be consumed by future transformers and its primary input |
| 72 will not be passed through to the next phase. | 77 will not be passed through to the next phase. |
| 73 | 78 |
| 74 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 79 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 75 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 80 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
| 76 doesn't exist, the transform will be re-run if that input is created in the | 81 doesn't exist, the transform will be re-run if that input is created in the |
| 77 future. | 82 future. |
| OLD | NEW |