| OLD | NEW |
| 1 ## 0.14.1+3 |
| 2 |
| 3 * Add a dependency on the `pool` package. |
| 4 |
| 1 ## 0.14.1+2 | 5 ## 0.14.1+2 |
| 2 | 6 |
| 3 * Automatically log how long it takes long-running transforms to run. | 7 * Automatically log how long it takes long-running transforms to run. |
| 4 | 8 |
| 5 ## 0.14.1+1 | 9 ## 0.14.1+1 |
| 6 | 10 |
| 7 * Fix a bug where an event could be added to a closed stream. | 11 * Fix a bug where an event could be added to a closed stream. |
| 8 | 12 |
| 9 ## 0.14.1 | 13 ## 0.14.1 |
| 10 | 14 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 104 |
| 101 * If a transformer calls `Transform.logger.error`, the transformer will now be | 105 * 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 | 106 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 | 107 its outputs will not be consumed by future transformers and its primary input |
| 104 will not be passed through to the next phase. | 108 will not be passed through to the next phase. |
| 105 | 109 |
| 106 * If a transform calls `Transform.getInput`, `Transform.readInput`, | 110 * If a transform calls `Transform.getInput`, `Transform.readInput`, |
| 107 `Transform.readInputAsString`, or `Transform.hasInput` on an input that | 111 `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 | 112 doesn't exist, the transform will be re-run if that input is created in the |
| 109 future. | 113 future. |
| OLD | NEW |