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

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

Issue 260933004: Support Request hijacking in Shelf, using a similar API to Rack. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 7 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
« no previous file with comments | « no previous file | pkg/shelf/lib/shelf.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 0.5.2 1 ## 0.5.2
2 2
3 * Add a `Cascade` helper that runs handlers in sequence until one returns a 3 * Add a `Cascade` helper that runs handlers in sequence until one returns a
4 response that's neither a 404 nor a 405. 4 response that's neither a 404 nor a 405.
5 5
6 * Add a `Request.hijack` method that allows handlers to gain access to the
7 underlying HTTP socket.
8
6 ## 0.5.1+1 9 ## 0.5.1+1
7 10
8 * Capture all asynchronous errors thrown by handlers if they would otherwise be 11 * Capture all asynchronous errors thrown by handlers if they would otherwise be
9 top-leveled. 12 top-leveled.
10 13
11 * Add more detail to the README about handlers, middleware, and the rules for 14 * Add more detail to the README about handlers, middleware, and the rules for
12 implementing an adapter. 15 implementing an adapter.
13 16
14 ## 0.5.1 17 ## 0.5.1
15 18
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 78
76 * **BREAKING** Removed `Shelf` prefix from all classes. 79 * **BREAKING** Removed `Shelf` prefix from all classes.
77 * **BREAKING** `Response` has drastically different constructors. 80 * **BREAKING** `Response` has drastically different constructors.
78 * *NEW!* `Response` now accepts a body of either `String` or 81 * *NEW!* `Response` now accepts a body of either `String` or
79 `Stream<List<int>>`. 82 `Stream<List<int>>`.
80 * *NEW!* `Response` now exposes `encoding` and `mimeType`. 83 * *NEW!* `Response` now exposes `encoding` and `mimeType`.
81 84
82 ## 0.1.0 2014-03-02 85 ## 0.1.0 2014-03-02
83 86
84 * First reviewed release 87 * First reviewed release
OLDNEW
« no previous file with comments | « no previous file | pkg/shelf/lib/shelf.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698