| 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 * Addad `Uri.queryParametersAll` to handle multiple query parameters with |
| 16 the same name. |
| 15 * Added `growable` parameter to `List.filled` constructor. | 17 * Added `growable` parameter to `List.filled` constructor. |
| 16 * Added microsecond support to `DateTime`: `DateTime.microsecond`, | 18 * Added microsecond support to `DateTime`: `DateTime.microsecond`, |
| 17 `DateTime.microsecondsSinceEpoch`, and | 19 `DateTime.microsecondsSinceEpoch`, and |
| 18 `new DateTime.fromMicrosecondsSinceEpoch`. | 20 `new DateTime.fromMicrosecondsSinceEpoch`. |
| 19 | 21 |
| 20 * `dart:math` | 22 * `dart:math` |
| 21 * `Random` added a `secure` constructor returning a cryptographically secure | 23 * `Random` added a `secure` constructor returning a cryptographically secure |
| 22 random generator which reads from the entropy source provided by the | 24 random generator which reads from the entropy source provided by the |
| 23 embedder for every generated random value. | 25 embedder for every generated random value. |
| 24 | 26 |
| (...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 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 |
| 736 handling of persistent connections. Previously, the client would shut down | 738 handling of persistent connections. Previously, the client would shut down |
| 737 immediately after a request. | 739 immediately after a request. |
| 738 | 740 |
| 739 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 741 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 740 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 |
| 741 compression. | 743 compression. |
| 742 | 744 |
| 743 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 745 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 744 which controls how it resolves `package:` URIs. | 746 which controls how it resolves `package:` URIs. |
| OLD | NEW |