| OLD | NEW |
| 1 ## 0.14.1 |
| 2 |
| 3 * Add a `message` getter to `TransformerException` and `AssetLoadException`. |
| 4 |
| 1 ## 0.14.0+2 | 5 ## 0.14.0+2 |
| 2 | 6 |
| 3 * Fix a bug with the previous bug fix. | 7 * Fix a bug with the previous bug fix. |
| 4 | 8 |
| 5 ## 0.14.0+1 | 9 ## 0.14.0+1 |
| 6 | 10 |
| 7 * Fix a bug where a transformer group preceded by another transformer group | 11 * Fix a bug where a transformer group preceded by another transformer group |
| 8 would sometimes fail to load secondary assets. | 12 would sometimes fail to load secondary assets. |
| 9 | 13 |
| 10 ## 0.14.0 | 14 ## 0.14.0 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 81 |
| 78 * If a transformer calls `Transform.logger.error`, the transformer will now be | 82 * 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 | 83 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 | 84 its outputs will not be consumed by future transformers and its primary input |
| 81 will not be passed through to the next phase. | 85 will not be passed through to the next phase. |
| 82 | 86 |
| 83 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 87 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 84 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 88 `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 | 89 doesn't exist, the transform will be re-run if that input is created in the |
| 86 future. | 90 future. |
| OLD | NEW |