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

Side by Side Diff: CHANGELOG.md

Issue 2223133002: 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 ### Language changes 3 ### Language changes
4 4
5 * The language now allows a trailing comma after the last argument of a call and 5 * The language now allows a trailing comma after the last argument of a call and
6 the last parameter of a function declaration. This can make long argument or 6 the last parameter of a function declaration. This can make long argument or
7 parameter lists easier to maintain, as commas can be left as-is when 7 parameter lists easier to maintain, as commas can be left as-is when
8 reordering lines. For details, see SDK issue 8 reordering lines. For details, see SDK issue
9 [26644](https://github.com/dart-lang/sdk/issues/26644). 9 [26644](https://github.com/dart-lang/sdk/issues/26644).
10 10
11 ### Core library changes 11 ### Core library changes
12 12
13 * `dart:io` 13 * `dart:io`
14 * `Socket.connect` with source-address argument is now non-blocking 14 * `Socket.connect` with source-address argument is now non-blocking
15 on Mac. Was already non-blocking on all other platforms. 15 on Mac. Was already non-blocking on all other platforms.
16 * Report a better error when a bind fails because of a bad source address. 16 * Report a better error when a bind fails because of a bad source address.
17 * Handle HTTP header `charset` parameter with empty value. 17 * Handle HTTP header `charset` parameter with empty value.
18 18
19 * `dart:async`
20 * More aggressively returns a Future on Stream.cancel operations.
21 Discourages to return `null` from `cancel`.
22 * Fixes a few bugs where the cancel future wasn't passed through
23 transformations.
24
25 ### Strong Mode 19 ### Strong Mode
26 20
27 * New feature - an option to disable implicit casts 21 * New feature - an option to disable implicit casts
28 (SDK issue [26583](https://github.com/dart-lang/sdk/issues/26583)), 22 (SDK issue [26583](https://github.com/dart-lang/sdk/issues/26583)),
29 see the [documentation](https://github.com/dart-lang/dev_compiler/blob/maste r/doc/STATIC_SAFETY.md#disable-implicit-casts) 23 see the [documentation](https://github.com/dart-lang/dev_compiler/blob/maste r/doc/STATIC_SAFETY.md#disable-implicit-casts)
30 for usage instructions and examples. 24 for usage instructions and examples.
31 25
32 * New feature - an option to disable implicit dynamic 26 * New feature - an option to disable implicit dynamic
33 (SDK issue [25573](https://github.com/dart-lang/sdk/issues/25573)), 27 (SDK issue [25573](https://github.com/dart-lang/sdk/issues/25573)),
34 see the [documentation](https://github.com/dart-lang/dev_compiler/blob/maste r/doc/STATIC_SAFETY.md#disable-implicit-dynamic) 28 see the [documentation](https://github.com/dart-lang/dev_compiler/blob/maste r/doc/STATIC_SAFETY.md#disable-implicit-dynamic)
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after
1170 they will keep the Dart process alive until they time out. This fixes the 1164 they will keep the Dart process alive until they time out. This fixes the
1171 handling of persistent connections. Previously, the client would shut down 1165 handling of persistent connections. Previously, the client would shut down
1172 immediately after a request. 1166 immediately after a request.
1173 1167
1174 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1168 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1175 default. The new `autoCompress` property can be set to `true` to re-enable 1169 default. The new `autoCompress` property can be set to `true` to re-enable
1176 compression. 1170 compression.
1177 1171
1178 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1172 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1179 which controls how it resolves `package:` URIs. 1173 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