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

Side by Side Diff: CHANGELOG.md

Issue 1583763002: Change Platform.isiOS to isIOS. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: 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/io/platform.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` 4 * `dart:async`
5 * Added `Future.any` static method. 5 * Added `Future.any` static method.
6 * Added `Stream.fromFutures` constructor. 6 * Added `Stream.fromFutures` constructor.
7 7
8 * `dart:convert` 8 * `dart:convert`
9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. 9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters.
10 10
11 * `dart:core` 11 * `dart:core`
12 * Added `current` getter to `StackTrace` class. 12 * Added `current` getter to `StackTrace` class.
13 * 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
14 return type. 14 return type.
15 * Addad `Uri.queryParametersAll` to handle multiple query parameters with 15 * Addad `Uri.queryParametersAll` to handle multiple query parameters with
16 the same name. 16 the same name.
17 * Added `growable` parameter to `List.filled` constructor. 17 * Added `growable` parameter to `List.filled` constructor.
18 * Added microsecond support to `DateTime`: `DateTime.microsecond`, 18 * Added microsecond support to `DateTime`: `DateTime.microsecond`,
19 `DateTime.microsecondsSinceEpoch`, and 19 `DateTime.microsecondsSinceEpoch`, and
20 `new DateTime.fromMicrosecondsSinceEpoch`. 20 `new DateTime.fromMicrosecondsSinceEpoch`.
21 21
22 * `dart:math` 22 * `dart:math`
23 * `Random` added a `secure` constructor returning a cryptographically secure 23 * `Random` added a `secure` constructor returning a cryptographically secure
24 random generator which reads from the entropy source provided by the 24 random generator which reads from the entropy source provided by the
25 embedder for every generated random value. 25 embedder for every generated random value.
26 26
27 * `dart:io` 27 * `dart:io`
28 * `Platform` added an `isiOS` getter and `Platform.operatingSystem` may now 28 * `Platform` added an `isIOS` getter and `Platform.operatingSystem` may now
29 return `ios`. 29 return `ios`.
30 30
31 ### Tool changes 31 ### Tool changes
32 32
33 * `dartfmt` 33 * `dartfmt`
34 34
35 * Better line splitting in a variety of cases. 35 * Better line splitting in a variety of cases.
36 36
37 * Other optimizations and bug fixes. 37 * Other optimizations and bug fixes.
38 38
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 they will keep the Dart process alive until they time out. This fixes the 737 they will keep the Dart process alive until they time out. This fixes the
738 handling of persistent connections. Previously, the client would shut down 738 handling of persistent connections. Previously, the client would shut down
739 immediately after a request. 739 immediately after a request.
740 740
741 * **Breaking change:** `HttpServer` no longer compresses all traffic by 741 * **Breaking change:** `HttpServer` no longer compresses all traffic by
742 default. The new `autoCompress` property can be set to `true` to re-enable 742 default. The new `autoCompress` property can be set to `true` to re-enable
743 compression. 743 compression.
744 744
745 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 745 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
746 which controls how it resolves `package:` URIs. 746 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/io/platform.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698