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

Side by Side Diff: CHANGELOG.md

Issue 2213193004: Revert "Return futures on Stream.cancel when possible." (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | sdk/lib/async/stream.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 ## 1.19.0 1 ## 1.19.0
2 2
3 ### Core library changes 3 ### Core library changes
4 4
5 * `dart:io` 5 * `dart:io`
6 * `Socket.connect` with source-address argument is now non-blocking 6 * `Socket.connect` with source-address argument is now non-blocking
7 on Mac. Was already non-blocking on all other platforms. 7 on Mac. Was already non-blocking on all other platforms.
8 * Report a better error when a bind fails because of a bad source address. 8 * Report a better error when a bind fails because of a bad source address.
9 9
10 * `dart:async`
11 * More aggressively returns a Future on Stream.cancel operations.
12 Discourages to return `null` from `cancel`.
13 * Fixes a few bugs where the cancel future wasn't passed through
14 transformations.
15
16 ### Tool Changes 10 ### Tool Changes
17 11
18 * `dartfmt` - upgraded to v0.2.9 12 * `dartfmt` - upgraded to v0.2.9
19 * Support trailing commas in argument and parameter lists. 13 * Support trailing commas in argument and parameter lists.
20 * Gracefully handle read-only files. 14 * Gracefully handle read-only files.
21 * About a dozen other bug fixes. 15 * About a dozen other bug fixes.
22 16
23 * Pub 17 * Pub
24 * Added the ability for packages to declare a constraint on the [Flutter][] 18 * Added the ability for packages to declare a constraint on the [Flutter][]
25 SDK: 19 SDK:
(...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after
1106 they will keep the Dart process alive until they time out. This fixes the 1100 they will keep the Dart process alive until they time out. This fixes the
1107 handling of persistent connections. Previously, the client would shut down 1101 handling of persistent connections. Previously, the client would shut down
1108 immediately after a request. 1102 immediately after a request.
1109 1103
1110 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1104 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1111 default. The new `autoCompress` property can be set to `true` to re-enable 1105 default. The new `autoCompress` property can be set to `true` to re-enable
1112 compression. 1106 compression.
1113 1107
1114 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1108 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1115 which controls how it resolves `package:` URIs. 1109 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/async/stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698