Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Changelog - Shelf - Web Server Middleware for Dart | |
|
nweiz
2014/04/01 19:13:11
Usually in the repo we name this CHANGELOG.md. Als
kevmoo
2014/04/01 19:24:04
Done.
| |
| 2 | |
| 3 ## 0.3.0+5 | |
| 4 | |
| 5 * Updated `pubspec` details for move to Dart SDK. | |
| 6 | |
| 7 ## 0.3.0 2014-03-25 | |
| 8 | |
| 9 * `Response` | |
| 10 * **NEW!** `int get contentLength` | |
| 11 * **NEW!** `DateTime get expires` | |
| 12 * **NEW!** `DateTime get lastModified` | |
| 13 * `Request` | |
| 14 * **BREAKING** `contentLength` is now read from `headers`. The constructor arg ument has been removed. | |
|
nweiz
2014/04/01 19:13:11
Long lines, here and below.
kevmoo
2014/04/01 19:24:04
Done.
| |
| 15 * **NEW!** supports an optional `Stream<List<int>> body` constructor argument. | |
| 16 * **NEW!** `Stream<List<int>> read()` and `Future<String> readAsString([Encodi ng encoding])` | |
| 17 * **NEW!** `DateTime get ifModifiedSince` | |
| 18 * **NEW!** `String get mimeType` | |
| 19 * **NEW!** `Encoding get encoding` | |
| 20 | |
| 21 ## 0.2.0 2014-03-06 | |
| 22 | |
| 23 * **BREAKING** Removed `Shelf` prefix from all classes. | |
| 24 * **BREAKING** `Response` has drastically different constructors. | |
| 25 * *NEW!* `Response` now accepts a body of either `String` or `Stream<List<int>>` . | |
| 26 * *NEW!* `Response` now exposes `encoding` and `mimeType`. | |
| 27 | |
| 28 ## 0.1.0 2014-03-02 | |
| 29 | |
| 30 * First reviewed release | |
| OLD | NEW |