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