| OLD | NEW |
| 1 ## 0.6.5 |
| 2 |
| 3 * `Request.hijack()` now takes a callback that accepts a single `StreamChannel` |
| 4 argument rather than separate `Stream` and `StreamSink` arguments. The old |
| 5 callback signature is still supported, but should be considered deprecated. |
| 6 |
| 7 * The `HijackCallback` and `OnHijackCallback` typedefs are deprecated. |
| 8 |
| 1 ## 0.6.4+3 | 9 ## 0.6.4+3 |
| 2 | 10 |
| 3 * Support `http_parser` 2.0.0. | 11 * Support `http_parser` 2.0.0. |
| 4 | 12 |
| 5 ## 0.6.4+2 | 13 ## 0.6.4+2 |
| 6 | 14 |
| 7 * Fix a bug where the `Content-Type` header didn't interact properly with the | 15 * Fix a bug where the `Content-Type` header didn't interact properly with the |
| 8 `encoding` parameter for `new Request()` and `new Response()` if it wasn't | 16 `encoding` parameter for `new Request()` and `new Response()` if it wasn't |
| 9 lowercase. | 17 lowercase. |
| 10 | 18 |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 | 226 |
| 219 * **BREAKING** Removed `Shelf` prefix from all classes. | 227 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 220 * **BREAKING** `Response` has drastically different constructors. | 228 * **BREAKING** `Response` has drastically different constructors. |
| 221 * *NEW!* `Response` now accepts a body of either `String` or | 229 * *NEW!* `Response` now accepts a body of either `String` or |
| 222 `Stream<List<int>>`. | 230 `Stream<List<int>>`. |
| 223 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 231 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 224 | 232 |
| 225 ## 0.1.0 2014-03-02 | 233 ## 0.1.0 2014-03-02 |
| 226 | 234 |
| 227 * First reviewed release | 235 * First reviewed release |
| OLD | NEW |