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

Side by Side Diff: CHANGELOG.md

Issue 1563223002: Add Future.any and Stream.fromFutures. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Address comment Created 4 years, 11 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/future.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.14.0 1 ## 1.14.0
2 2
3 ### Core library changes 3 ### Core library changes
4 * `dart:async`
5 * Added `Future.any` static method.
6 * Added `Stream.fromFutures` constructor.
7
4 * `dart:convert` 8 * `dart:convert`
5 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. 9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters.
6 10
7 * `dart:core` 11 * `dart:core`
8 * Added `current` getter to `StackTrace` class. 12 * Added `current` getter to `StackTrace` class.
9 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the 13 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the
10 return type. 14 return type.
11 * Added `growable` parameter to `List.filled` constructor. 15 * Added `growable` parameter to `List.filled` constructor.
12 * Added microsecond support to `DateTime`: `DateTime.microsecond`, 16 * Added microsecond support to `DateTime`: `DateTime.microsecond`,
13 `DateTime.microsecondsSinceEpoch`, and 17 `DateTime.microsecondsSinceEpoch`, and
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 they will keep the Dart process alive until they time out. This fixes the 708 they will keep the Dart process alive until they time out. This fixes the
705 handling of persistent connections. Previously, the client would shut down 709 handling of persistent connections. Previously, the client would shut down
706 immediately after a request. 710 immediately after a request.
707 711
708 * **Breaking change:** `HttpServer` no longer compresses all traffic by 712 * **Breaking change:** `HttpServer` no longer compresses all traffic by
709 default. The new `autoCompress` property can be set to `true` to re-enable 713 default. The new `autoCompress` property can be set to `true` to re-enable
710 compression. 714 compression.
711 715
712 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 716 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
713 which controls how it resolves `package:` URIs. 717 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/async/future.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698