Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 * Added `growable` parameter to `List.filled` constructor. | 15 * Added `growable` parameter to `List.filled` constructor. |
| 16 * Added microsecond support to `DateTime`: `DateTime.microsecond`, | 16 * Added microsecond support to `DateTime`: `DateTime.microsecond`, |
| 17 `DateTime.microsecondsSinceEpoch`, and | 17 `DateTime.microsecondsSinceEpoch`, and |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 56 | 56 |
| 57 * `pub global run` now detects when a global executable's SDK constraint is no | 57 * `pub global run` now detects when a global executable's SDK constraint is no |
| 58 longer met and errors out, rather than trying to run the executable anyway. | 58 longer met and errors out, rather than trying to run the executable anyway. |
| 59 | 59 |
| 60 * Fixed a crashing bug when using `pub global run` on a global script that | 60 * Fixed a crashing bug when using `pub global run` on a global script that |
| 61 didn't exist. | 61 didn't exist. |
| 62 | 62 |
| 63 * Fixed a crashing bug when a pubspec contains a dependency without a source | 63 * Fixed a crashing bug when a pubspec contains a dependency without a source |
| 64 declared. | 64 declared. |
| 65 | 65 |
| 66 ## 1.13.2 - 2016-01-06 | |
| 67 | |
| 68 Patch release, resolves one issues: | |
| 69 | |
| 70 * dart2js: Stack traces are not captured correctly (SDK issue [25235](https://gi thub.com/dart-lang/sdk/issues/25235)) | |
| 71 | |
| 72 ## 1.13.1 - 2015-12-17 | |
| 73 | |
| 74 Patch release, resolves three issues: | |
| 75 | |
| 76 * VM type propagation fix: Resolves a potential crash in the Dart VM (SDK commit [dff13be](https://github.com/dart-lang/sdk/commit/dff13bef8de104d33b04820136da2 d80f3c835d7)) | |
| 77 | |
| 78 * dart2js crash fix: Resolves a crash in pkg/js and dart2js (SDK issue [24974](h ttps://github.com/dart-lang/sdk/issues/24974)) | |
| 79 | |
| 80 * Pub get crash on ARM: Fixes a crash triggered when running 'pub get' on ARM pr ocessors such as those on a Raspberry Pi (SDK issue [24855](https://github.com/d art-lang/sdk/issues/24855)) | |
|
Bill Hesse
2016/01/11 17:55:13
Long lines, beyond those required by the links.
| |
| 81 | |
| 66 ## 1.13.0 - 2015-11-18 | 82 ## 1.13.0 - 2015-11-18 |
| 67 | 83 |
| 68 ### Core library changes | 84 ### Core library changes |
| 69 * `dart:async` | 85 * `dart:async` |
| 70 * `StreamController` added getters for `onListen`, `onPause`, and `onResume` | 86 * `StreamController` added getters for `onListen`, `onPause`, and `onResume` |
| 71 with the corresponding new `typedef void ControllerCallback()`. | 87 with the corresponding new `typedef void ControllerCallback()`. |
| 72 * `StreamController` added a getter for `onCancel` with the corresponding | 88 * `StreamController` added a getter for `onCancel` with the corresponding |
| 73 new `typedef ControllerCancelCallback()`; | 89 new `typedef ControllerCancelCallback()`; |
| 74 * `StreamTransformer` instances created with `fromHandlers` with no | 90 * `StreamTransformer` instances created with `fromHandlers` with no |
| 75 `handleError` callback now forward stack traces along with errors to the | 91 `handleError` callback now forward stack traces along with errors to the |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 708 they will keep the Dart process alive until they time out. This fixes the | 724 they will keep the Dart process alive until they time out. This fixes the |
| 709 handling of persistent connections. Previously, the client would shut down | 725 handling of persistent connections. Previously, the client would shut down |
| 710 immediately after a request. | 726 immediately after a request. |
| 711 | 727 |
| 712 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 728 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 713 default. The new `autoCompress` property can be set to `true` to re-enable | 729 default. The new `autoCompress` property can be set to `true` to re-enable |
| 714 compression. | 730 compression. |
| 715 | 731 |
| 716 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 732 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 717 which controls how it resolves `package:` URIs. | 733 which controls how it resolves `package:` URIs. |
| OLD | NEW |