| OLD | NEW |
| 1 ## 0.5.4 | 1 ## 0.5.4 |
| 2 | 2 |
| 3 * The `shelf_io` adapter now sends the `Date` HTTP header by default. | 3 * The `shelf_io` adapter now sends the `Date` HTTP header by default. |
| 4 | 4 |
| 5 * Fixed logic for setting Server header in `shelf_io`. |
| 6 |
| 5 ## 0.5.3 | 7 ## 0.5.3 |
| 6 | 8 |
| 7 * Add new named parameters to `Request.change`: `scriptName` and `url`. | 9 * Add new named parameters to `Request.change`: `scriptName` and `url`. |
| 8 | 10 |
| 9 ## 0.5.2 | 11 ## 0.5.2 |
| 10 | 12 |
| 11 * Add a `Cascade` helper that runs handlers in sequence until one returns a | 13 * Add a `Cascade` helper that runs handlers in sequence until one returns a |
| 12 response that's neither a 404 nor a 405. | 14 response that's neither a 404 nor a 405. |
| 13 | 15 |
| 14 * Add a `Request.change` method that copies a request with new header values. | 16 * Add a `Request.change` method that copies a request with new header values. |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 90 |
| 89 * **BREAKING** Removed `Shelf` prefix from all classes. | 91 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 90 * **BREAKING** `Response` has drastically different constructors. | 92 * **BREAKING** `Response` has drastically different constructors. |
| 91 * *NEW!* `Response` now accepts a body of either `String` or | 93 * *NEW!* `Response` now accepts a body of either `String` or |
| 92 `Stream<List<int>>`. | 94 `Stream<List<int>>`. |
| 93 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 95 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 94 | 96 |
| 95 ## 0.1.0 2014-03-02 | 97 ## 0.1.0 2014-03-02 |
| 96 | 98 |
| 97 * First reviewed release | 99 * First reviewed release |
| OLD | NEW |