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

Side by Side Diff: CHANGELOG.md

Issue 1448003002: Add StackTrace.current getter. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Address VM comments. Created 5 years 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 | runtime/lib/core_patch.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:convert` 4 * `dart:convert`
5 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. 5 * `Base64Decoder.convert` now takes optional `start` and `end` parameters.
6 6
7 * `dart:core` 7 * `dart:core`
8 * Added `current` getter to `StackTrace` class.
8 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the 9 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the
9 return type. 10 return type.
10 * Added `growable` parameter to `List.filled` constructor. 11 * Added `growable` parameter to `List.filled` constructor.
11 12
12 * `dart:math` 13 * `dart:math`
13 * `Random` added a `secure` constructor returning a cryptographically secure 14 * `Random` added a `secure` constructor returning a cryptographically secure
14 random generator which reads from the entropy source provided by the 15 random generator which reads from the entropy source provided by the
15 embedder for every generated random value. 16 embedder for every generated random value.
16 17
17 * `dart:io` 18 * `dart:io`
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 they will keep the Dart process alive until they time out. This fixes the 664 they will keep the Dart process alive until they time out. This fixes the
664 handling of persistent connections. Previously, the client would shut down 665 handling of persistent connections. Previously, the client would shut down
665 immediately after a request. 666 immediately after a request.
666 667
667 * **Breaking change:** `HttpServer` no longer compresses all traffic by 668 * **Breaking change:** `HttpServer` no longer compresses all traffic by
668 default. The new `autoCompress` property can be set to `true` to re-enable 669 default. The new `autoCompress` property can be set to `true` to re-enable
669 compression. 670 compression.
670 671
671 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 672 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
672 which controls how it resolves `package:` URIs. 673 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/lib/core_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698