| OLD | NEW |
| 1 ## 0.6.5+2 |
| 2 |
| 3 * Support `http_parser` 3.0.0. |
| 4 |
| 1 ## 0.6.5+1 | 5 ## 0.6.5+1 |
| 2 | 6 |
| 3 * Fix all strong-mode warnings and errors. | 7 * Fix all strong-mode warnings and errors. |
| 4 | 8 |
| 5 ## 0.6.5 | 9 ## 0.6.5 |
| 6 | 10 |
| 7 * `Request.hijack()` now takes a callback that accepts a single `StreamChannel` | 11 * `Request.hijack()` now takes a callback that accepts a single `StreamChannel` |
| 8 argument rather than separate `Stream` and `StreamSink` arguments. The old | 12 argument rather than separate `Stream` and `StreamSink` arguments. The old |
| 9 callback signature is still supported, but should be considered deprecated. | 13 callback signature is still supported, but should be considered deprecated. |
| 10 | 14 |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 | 234 |
| 231 * **BREAKING** Removed `Shelf` prefix from all classes. | 235 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 232 * **BREAKING** `Response` has drastically different constructors. | 236 * **BREAKING** `Response` has drastically different constructors. |
| 233 * *NEW!* `Response` now accepts a body of either `String` or | 237 * *NEW!* `Response` now accepts a body of either `String` or |
| 234 `Stream<List<int>>`. | 238 `Stream<List<int>>`. |
| 235 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 239 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 236 | 240 |
| 237 ## 0.1.0 2014-03-02 | 241 ## 0.1.0 2014-03-02 |
| 238 | 242 |
| 239 * First reviewed release | 243 * First reviewed release |
| OLD | NEW |