| OLD | NEW |
| 1 ## 0.5.2 |
| 2 |
| 3 * Add a `Cascade` helper that runs handlers in sequence until one returns a |
| 4 response that's neither a 404 nor a 405. |
| 5 |
| 1 ## 0.5.1 | 6 ## 0.5.1 |
| 2 | 7 |
| 3 * Add a `context` map to `Request` and `Response` for passing data among | 8 * Add a `context` map to `Request` and `Response` for passing data among |
| 4 handlers and middleware. | 9 handlers and middleware. |
| 5 | 10 |
| 6 ## 0.5.0+1 | 11 ## 0.5.0+1 |
| 7 | 12 |
| 8 * Allow `scheduled_test` development dependency up to v0.12.0 | 13 * Allow `scheduled_test` development dependency up to v0.12.0 |
| 9 | 14 |
| 10 ## 0.5.0 | 15 ## 0.5.0 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 67 |
| 63 * **BREAKING** Removed `Shelf` prefix from all classes. | 68 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 64 * **BREAKING** `Response` has drastically different constructors. | 69 * **BREAKING** `Response` has drastically different constructors. |
| 65 * *NEW!* `Response` now accepts a body of either `String` or | 70 * *NEW!* `Response` now accepts a body of either `String` or |
| 66 `Stream<List<int>>`. | 71 `Stream<List<int>>`. |
| 67 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 72 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 68 | 73 |
| 69 ## 0.1.0 2014-03-02 | 74 ## 0.1.0 2014-03-02 |
| 70 | 75 |
| 71 * First reviewed release | 76 * First reviewed release |
| OLD | NEW |