| OLD | NEW |
| 1 ## 1.15.0 |
| 2 |
| 3 ### Core library changes |
| 4 * Addad `Uri.queryParametersAll` to handle multiple query parameters with |
| 5 the same name. |
| 6 |
| 1 ## 1.14.0 | 7 ## 1.14.0 |
| 2 | 8 |
| 3 ### Core library changes | 9 ### Core library changes |
| 4 * `dart:async` | 10 * `dart:async` |
| 5 * Added `Future.any` static method. | 11 * Added `Future.any` static method. |
| 6 * Added `Stream.fromFutures` constructor. | 12 * Added `Stream.fromFutures` constructor. |
| 7 | 13 |
| 8 * `dart:convert` | 14 * `dart:convert` |
| 9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. | 15 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. |
| 10 | 16 |
| 11 * `dart:core` | 17 * `dart:core` |
| 12 * Added `current` getter to `StackTrace` class. | 18 * Added `current` getter to `StackTrace` class. |
| 13 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the | 19 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the |
| 14 return type. | 20 return type. |
| 15 * Addad `Uri.queryParametersAll` to handle multiple query parameters with | |
| 16 the same name. | |
| 17 * Added `growable` parameter to `List.filled` constructor. | 21 * Added `growable` parameter to `List.filled` constructor. |
| 18 * Added microsecond support to `DateTime`: `DateTime.microsecond`, | 22 * Added microsecond support to `DateTime`: `DateTime.microsecond`, |
| 19 `DateTime.microsecondsSinceEpoch`, and | 23 `DateTime.microsecondsSinceEpoch`, and |
| 20 `new DateTime.fromMicrosecondsSinceEpoch`. | 24 `new DateTime.fromMicrosecondsSinceEpoch`. |
| 21 | 25 |
| 22 * `dart:math` | 26 * `dart:math` |
| 23 * `Random` added a `secure` constructor returning a cryptographically secure | 27 * `Random` added a `secure` constructor returning a cryptographically secure |
| 24 random generator which reads from the entropy source provided by the | 28 random generator which reads from the entropy source provided by the |
| 25 embedder for every generated random value. | 29 embedder for every generated random value. |
| 26 | 30 |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 they will keep the Dart process alive until they time out. This fixes the | 747 they will keep the Dart process alive until they time out. This fixes the |
| 744 handling of persistent connections. Previously, the client would shut down | 748 handling of persistent connections. Previously, the client would shut down |
| 745 immediately after a request. | 749 immediately after a request. |
| 746 | 750 |
| 747 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 751 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 748 default. The new `autoCompress` property can be set to `true` to re-enable | 752 default. The new `autoCompress` property can be set to `true` to re-enable |
| 749 compression. | 753 compression. |
| 750 | 754 |
| 751 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 755 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 752 which controls how it resolves `package:` URIs. | 756 which controls how it resolves `package:` URIs. |
| OLD | NEW |