| OLD | NEW |
| 1 ## 0.14.1 |
| 2 |
| 3 * Add an `AggregateTransformer` type. Aggregate transformers transform groups of |
| 4 assets for which no single asset is primary. For example, one could be used to |
| 5 merge all images in a directory into a single file. |
| 6 |
| 1 ## 0.14.0+2 | 7 ## 0.14.0+2 |
| 2 | 8 |
| 3 * Fix a bug with the previous bug fix. | 9 * Fix a bug with the previous bug fix. |
| 4 | 10 |
| 5 ## 0.14.0+1 | 11 ## 0.14.0+1 |
| 6 | 12 |
| 7 * Fix a bug where a transformer group preceded by another transformer group | 13 * Fix a bug where a transformer group preceded by another transformer group |
| 8 would sometimes fail to load secondary assets. | 14 would sometimes fail to load secondary assets. |
| 9 | 15 |
| 10 ## 0.14.0 | 16 ## 0.14.0 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 83 |
| 78 * If a transformer calls `Transform.logger.error`, the transformer will now be | 84 * If a transformer calls `Transform.logger.error`, the transformer will now be |
| 79 considered to have failed after it finishes running `apply()`. This means that | 85 considered to have failed after it finishes running `apply()`. This means that |
| 80 its outputs will not be consumed by future transformers and its primary input | 86 its outputs will not be consumed by future transformers and its primary input |
| 81 will not be passed through to the next phase. | 87 will not be passed through to the next phase. |
| 82 | 88 |
| 83 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 89 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 84 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 90 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
| 85 doesn't exist, the transform will be re-run if that input is created in the | 91 doesn't exist, the transform will be re-run if that input is created in the |
| 86 future. | 92 future. |
| OLD | NEW |