| OLD | NEW |
| 1 ## 1.3.0 |
| 2 |
| 3 * Add `Disconnector`, a transformer that allows the caller to disconnect the |
| 4 transformed channel. |
| 5 |
| 1 ## 1.2.0 | 6 ## 1.2.0 |
| 2 | 7 |
| 3 * Add `new StreamChannel.withGuarantees()`, which creates a channel with extra | 8 * Add `new StreamChannel.withGuarantees()`, which creates a channel with extra |
| 4 wrapping to ensure that it obeys the stream channel guarantees. | 9 wrapping to ensure that it obeys the stream channel guarantees. |
| 5 | 10 |
| 6 * Add `StreamChannelController`, which can be used to create custom | 11 * Add `StreamChannelController`, which can be used to create custom |
| 7 `StreamChannel` objects. | 12 `StreamChannel` objects. |
| 8 | 13 |
| 9 ## 1.1.1 | 14 ## 1.1.1 |
| 10 | 15 |
| 11 * Fix the type annotation for `StreamChannel.transform()`'s parameter. | 16 * Fix the type annotation for `StreamChannel.transform()`'s parameter. |
| 12 | 17 |
| 13 ## 1.1.0 | 18 ## 1.1.0 |
| 14 | 19 |
| 15 * Add `StreamChannel.transformStream()`, `StreamChannel.transformSink()`, | 20 * Add `StreamChannel.transformStream()`, `StreamChannel.transformSink()`, |
| 16 `StreamChannel.changeStream()`, and `StreamChannel.changeSink()` to support | 21 `StreamChannel.changeStream()`, and `StreamChannel.changeSink()` to support |
| 17 changing only the stream or only the sink of a channel. | 22 changing only the stream or only the sink of a channel. |
| 18 | 23 |
| 19 * Be more explicit about `JsonDocumentTransformer`'s error-handling behavior. | 24 * Be more explicit about `JsonDocumentTransformer`'s error-handling behavior. |
| 20 | 25 |
| 21 ## 1.0.1 | 26 ## 1.0.1 |
| 22 | 27 |
| 23 * Fix `MultiChannel`'s constructor to take a `StreamChannel`. This is | 28 * Fix `MultiChannel`'s constructor to take a `StreamChannel`. This is |
| 24 technically a breaking change, but since 1.0.0 was only released an hour ago, | 29 technically a breaking change, but since 1.0.0 was only released an hour ago, |
| 25 we're treating it as a bug fix. | 30 we're treating it as a bug fix. |
| 26 | 31 |
| 27 ## 1.0.0 | 32 ## 1.0.0 |
| 28 | 33 |
| 29 * Initial version | 34 * Initial version |
| OLD | NEW |