| OLD | NEW |
| 1 ## 0.5.1+1 |
| 2 |
| 3 * Capture all asynchronous errors thrown by handlers if they would otherwise be |
| 4 top-leveled. |
| 5 |
| 6 * Add more detail to the README about handlers, middleware, and the rules for |
| 7 implementing an adapter. |
| 8 |
| 1 ## 0.5.1 | 9 ## 0.5.1 |
| 2 | 10 |
| 3 * Add a `context` map to `Request` and `Response` for passing data among | 11 * Add a `context` map to `Request` and `Response` for passing data among |
| 4 handlers and middleware. | 12 handlers and middleware. |
| 5 | 13 |
| 6 ## 0.5.0+1 | 14 ## 0.5.0+1 |
| 7 | 15 |
| 8 * Allow `scheduled_test` development dependency up to v0.12.0 | 16 * Allow `scheduled_test` development dependency up to v0.12.0 |
| 9 | 17 |
| 10 ## 0.5.0 | 18 ## 0.5.0 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 70 |
| 63 * **BREAKING** Removed `Shelf` prefix from all classes. | 71 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 64 * **BREAKING** `Response` has drastically different constructors. | 72 * **BREAKING** `Response` has drastically different constructors. |
| 65 * *NEW!* `Response` now accepts a body of either `String` or | 73 * *NEW!* `Response` now accepts a body of either `String` or |
| 66 `Stream<List<int>>`. | 74 `Stream<List<int>>`. |
| 67 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 75 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 68 | 76 |
| 69 ## 0.1.0 2014-03-02 | 77 ## 0.1.0 2014-03-02 |
| 70 | 78 |
| 71 * First reviewed release | 79 * First reviewed release |
| OLD | NEW |