| OLD | NEW |
| 1 ## 0.14.1+2 | |
| 2 | |
| 3 * Automatically log how long it takes long-running transforms to run. | |
| 4 | |
| 5 ## 0.14.1+1 | 1 ## 0.14.1+1 |
| 6 | 2 |
| 7 * Fix a bug where an event could be added to a closed stream. | 3 * Fix a bug where an event could be added to a closed stream. |
| 8 | 4 |
| 9 ## 0.14.1 | 5 ## 0.14.1 |
| 10 | 6 |
| 11 * Add an `AggregateTransformer` type. Aggregate transformers transform groups of | 7 * Add an `AggregateTransformer` type. Aggregate transformers transform groups of |
| 12 assets for which no single asset is primary. For example, one could be used to | 8 assets for which no single asset is primary. For example, one could be used to |
| 13 merge all images in a directory into a single file. | 9 merge all images in a directory into a single file. |
| 14 | 10 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 96 |
| 101 * If a transformer calls `Transform.logger.error`, the transformer will now be | 97 * If a transformer calls `Transform.logger.error`, the transformer will now be |
| 102 considered to have failed after it finishes running `apply()`. This means that | 98 considered to have failed after it finishes running `apply()`. This means that |
| 103 its outputs will not be consumed by future transformers and its primary input | 99 its outputs will not be consumed by future transformers and its primary input |
| 104 will not be passed through to the next phase. | 100 will not be passed through to the next phase. |
| 105 | 101 |
| 106 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 102 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 107 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 103 `Transform.readInputAsString`, or `Transform.hasInput` on an input that |
| 108 doesn't exist, the transform will be re-run if that input is created in the | 104 doesn't exist, the transform will be re-run if that input is created in the |
| 109 future. | 105 future. |
| OLD | NEW |