| OLD | NEW |
| 1 ## 0.6.4+1 |
| 2 |
| 3 * When the `shelf_io` adapter detects an error, print the request context as |
| 4 well as the error itself. |
| 5 |
| 1 ## 0.6.4 | 6 ## 0.6.4 |
| 2 | 7 |
| 3 * Add a `Server` interface representing an adapter that knows its own URL. | 8 * Add a `Server` interface representing an adapter that knows its own URL. |
| 4 | 9 |
| 5 * Add a `ServerHandler` class that exposes a `Server` backed by a `Handler`. | 10 * Add a `ServerHandler` class that exposes a `Server` backed by a `Handler`. |
| 6 | 11 |
| 7 * Add an `IOServer` class that implements `Server` in terms of `dart:io`'s | 12 * Add an `IOServer` class that implements `Server` in terms of `dart:io`'s |
| 8 `HttpServer`. | 13 `HttpServer`. |
| 9 | 14 |
| 10 ## 0.6.3+1 | 15 ## 0.6.3+1 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 | 208 |
| 204 * **BREAKING** Removed `Shelf` prefix from all classes. | 209 * **BREAKING** Removed `Shelf` prefix from all classes. |
| 205 * **BREAKING** `Response` has drastically different constructors. | 210 * **BREAKING** `Response` has drastically different constructors. |
| 206 * *NEW!* `Response` now accepts a body of either `String` or | 211 * *NEW!* `Response` now accepts a body of either `String` or |
| 207 `Stream<List<int>>`. | 212 `Stream<List<int>>`. |
| 208 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | 213 * *NEW!* `Response` now exposes `encoding` and `mimeType`. |
| 209 | 214 |
| 210 ## 0.1.0 2014-03-02 | 215 ## 0.1.0 2014-03-02 |
| 211 | 216 |
| 212 * First reviewed release | 217 * First reviewed release |
| OLD | NEW |