| OLD | NEW |
| 1 ## 0.5.3 |
| 2 |
| 3 * Add new named parameters to `Request.change`: `scriptName` and `url`. |
| 4 |
| 1 ## 0.5.2 | 5 ## 0.5.2 |
| 2 | 6 |
| 3 * Add a `Cascade` helper that runs handlers in sequence until one returns a | 7 * Add a `Cascade` helper that runs handlers in sequence until one returns a |
| 4 response that's neither a 404 nor a 405. | 8 response that's neither a 404 nor a 405. |
| 5 | 9 |
| 6 * Add a `Request.change` method that copies a request with new header values. | 10 * Add a `Request.change` method that copies a request with new header values. |
| 7 | 11 |
| 8 * Add a `Request.hijack` method that allows handlers to gain access to the | 12 * Add a `Request.hijack` method that allows handlers to gain access to the |
| 9 underlying HTTP socket. | 13 underlying HTTP socket. |
| 10 | 14 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 84 |
| 81 * **BREAKING** Removed `Shelf` prefix from all classes. | 85 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 82 * **BREAKING** `Response` has drastically different constructors. | 86 * **BREAKING** `Response` has drastically different constructors. |
| 83 * *NEW!* `Response` now accepts a body of either `String` or | 87 * *NEW!* `Response` now accepts a body of either `String` or |
| 84 `Stream<List<int>>`. | 88 `Stream<List<int>>`. |
| 85 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 89 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 86 | 90 |
| 87 ## 0.1.0 2014-03-02 | 91 ## 0.1.0 2014-03-02 |
| 88 | 92 |
| 89 * First reviewed release | 93 * First reviewed release |
| OLD | NEW |