Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: pkg/shelf/changelog.md

Issue 219283008: pkg/shelf (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698