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

Side by Side Diff: CHANGELOG.md

Issue 1381033002: Add data-URI support class to dart:core (next to Uri). (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Remove VM assertion that appears to be incorrect. Created 5 years, 1 month 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/bin/builtin.dart » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')
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:math` 4 * `dart:math`
5 * `Random` added a `secure` constructor returning a cryptographically secure 5 * `Random` added a `secure` constructor returning a cryptographically secure
6 random generator which reads from the entropy source provided by the 6 random generator which reads from the entropy source provided by the
7 embedder for every generated random value. 7 embedder for every generated random value.
8 8
9 * `dart:core`
kevmoo 2015/11/12 17:32:02 Tiny nit: in the future keep these updates sorted
10 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the
11 return type.
12
13 * `dart:convert`
14 * `Base64Decoder.convert` now takes optional `start` and `end` parameters.
15
9 ## 1.13.0 16 ## 1.13.0
10 17
11 ### Core library changes 18 ### Core library changes
12 * `dart:async` 19 * `dart:async`
13 * `StreamController` added getters for `onListen`, `onPause`, and `onResume` 20 * `StreamController` added getters for `onListen`, `onPause`, and `onResume`
14 with the corresponding new `typedef void ControllerCallback()`. 21 with the corresponding new `typedef void ControllerCallback()`.
15 * `StreamController` added a getter for `onCancel` with the corresponding 22 * `StreamController` added a getter for `onCancel` with the corresponding
16 new `typedef ControllerCancelCallback()`; 23 new `typedef ControllerCancelCallback()`;
17 * `StreamTransformer` instances created with `fromHandlers` with no 24 * `StreamTransformer` instances created with `fromHandlers` with no
18 `handleError` callback now forward stack traces along with errors to the 25 `handleError` callback now forward stack traces along with errors to the
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 they will keep the Dart process alive until they time out. This fixes the 654 they will keep the Dart process alive until they time out. This fixes the
648 handling of persistent connections. Previously, the client would shut down 655 handling of persistent connections. Previously, the client would shut down
649 immediately after a request. 656 immediately after a request.
650 657
651 * **Breaking change:** `HttpServer` no longer compresses all traffic by 658 * **Breaking change:** `HttpServer` no longer compresses all traffic by
652 default. The new `autoCompress` property can be set to `true` to re-enable 659 default. The new `autoCompress` property can be set to `true` to re-enable
653 compression. 660 compression.
654 661
655 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 662 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
656 which controls how it resolves `package:` URIs. 663 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/builtin.dart » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698