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

Side by Side Diff: CHANGELOG.md

Issue 1411553006: Add a Server interface. (Closed) Base URL: git@github.com:dart-lang/shelf@master
Patch Set: Code review changes Created 5 years, 1 month 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
« no previous file with comments | « no previous file | README.md » ('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.6.4
2
3 * Add a `Server` interface representing an adapter that knows its own URL.
4
5 * Add a `ServerHandler` class that exposes a `Server` backed by a `Handler`.
6
7 * Add an `IOServer` class that implements `Server` in terms of `dart:io`'s
8 `HttpServer`.
9
1 ## 0.6.3+1 10 ## 0.6.3+1
2 11
3 * Cleaned up handling of certain `Map` instances and related dependencies. 12 * Cleaned up handling of certain `Map` instances and related dependencies.
4 13
5 ## 0.6.3 14 ## 0.6.3
6 15
7 * Messages returned by `Request.change()` and `Response.change()` are marked 16 * Messages returned by `Request.change()` and `Response.change()` are marked
8 read whenever the original message is read, and vice-versa. This means that 17 read whenever the original message is read, and vice-versa. This means that
9 it's possible to read a message on which `change()` has been called and to 18 it's possible to read a message on which `change()` has been called and to
10 call `change()` on a message more than once, as long as `read()` is called on 19 call `change()` on a message more than once, as long as `read()` is called on
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 203
195 * **BREAKING** Removed `Shelf` prefix from all classes. 204 * **BREAKING** Removed `Shelf` prefix from all classes.
196 * **BREAKING** `Response` has drastically different constructors. 205 * **BREAKING** `Response` has drastically different constructors.
197 * *NEW!* `Response` now accepts a body of either `String` or 206 * *NEW!* `Response` now accepts a body of either `String` or
198 `Stream<List<int>>`. 207 `Stream<List<int>>`.
199 * *NEW!* `Response` now exposes `encoding` and `mimeType`. 208 * *NEW!* `Response` now exposes `encoding` and `mimeType`.
200 209
201 ## 0.1.0 2014-03-02 210 ## 0.1.0 2014-03-02
202 211
203 * First reviewed release 212 * First reviewed release
OLDNEW
« no previous file with comments | « no previous file | README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698