OLD | NEW |
| 1 ## 0.4.0 |
| 2 |
| 3 * Access to headers for `Request` and `Response` is now case-insensitive. |
| 4 |
| 5 * The constructor for `Request` has been simplified. |
| 6 |
| 7 * `Request` now exposes `url` which replaces `pathInfo`, `queryString`, and |
| 8 `pathSegments`. |
| 9 |
1 ## 0.3.0+9 | 10 ## 0.3.0+9 |
2 | 11 |
3 * Removed old testing infrastructure. | 12 * Removed old testing infrastructure. |
4 | 13 |
5 * Updated documentation address. | 14 * Updated documentation address. |
6 | 15 |
7 ## 0.3.0+8 | 16 ## 0.3.0+8 |
8 | 17 |
9 * Added a dependency on the `http_parser` package. | 18 * Added a dependency on the `http_parser` package. |
10 | 19 |
(...skipping 29 matching lines...) Expand all Loading... |
40 | 49 |
41 * **BREAKING** Removed `Shelf` prefix from all classes. | 50 * **BREAKING** Removed `Shelf` prefix from all classes. |
42 * **BREAKING** `Response` has drastically different constructors. | 51 * **BREAKING** `Response` has drastically different constructors. |
43 * *NEW!* `Response` now accepts a body of either `String` or | 52 * *NEW!* `Response` now accepts a body of either `String` or |
44 `Stream<List<int>>`. | 53 `Stream<List<int>>`. |
45 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 54 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
46 | 55 |
47 ## 0.1.0 2014-03-02 | 56 ## 0.1.0 2014-03-02 |
48 | 57 |
49 * First reviewed release | 58 * First reviewed release |
OLD | NEW |