| OLD | NEW |
| 1 ## 0.5.6-dev |
| 2 |
| 3 * Fixed `createMiddleware` to only catch errors in `errorHandler` is provided. |
| 4 |
| 1 ## 0.5.5+1 | 5 ## 0.5.5+1 |
| 2 | 6 |
| 3 * Updated `Request.change` to include the original `onHijack` callback if one | 7 * Updated `Request.change` to include the original `onHijack` callback if one |
| 4 exists. | 8 exists. |
| 5 | 9 |
| 6 ## 0.5.5 | 10 ## 0.5.5 |
| 7 | 11 |
| 8 * Added default body text for `Response.forbidden` and `Response.notFound` if | 12 * Added default body text for `Response.forbidden` and `Response.notFound` if |
| 9 null is provided. | 13 null is provided. |
| 10 | 14 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 | 120 |
| 117 * **BREAKING** Removed `Shelf` prefix from all classes. | 121 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 118 * **BREAKING** `Response` has drastically different constructors. | 122 * **BREAKING** `Response` has drastically different constructors. |
| 119 * *NEW!* `Response` now accepts a body of either `String` or | 123 * *NEW!* `Response` now accepts a body of either `String` or |
| 120 `Stream<List<int>>`. | 124 `Stream<List<int>>`. |
| 121 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 125 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 122 | 126 |
| 123 ## 0.1.0 2014-03-02 | 127 ## 0.1.0 2014-03-02 |
| 124 | 128 |
| 125 * First reviewed release | 129 * First reviewed release |
| OLD | NEW |