| OLD | NEW |
| 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 `current` getter to `StackTrace` class. |
| 9 * 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 |
| 10 return type. | 10 return type. |
| 11 * Added `growable` parameter to `List.filled` constructor. | 11 * Added `growable` parameter to `List.filled` constructor. |
| 12 * Added microsecond support to `DateTime`: `DateTime.microsecond`, |
| 13 `DateTime.microsecondsSinceEpoch`, and |
| 14 `new DateTime.fromMicrosecondsSinceEpoch`. |
| 12 | 15 |
| 13 * `dart:math` | 16 * `dart:math` |
| 14 * `Random` added a `secure` constructor returning a cryptographically secure | 17 * `Random` added a `secure` constructor returning a cryptographically secure |
| 15 random generator which reads from the entropy source provided by the | 18 random generator which reads from the entropy source provided by the |
| 16 embedder for every generated random value. | 19 embedder for every generated random value. |
| 17 | 20 |
| 18 * `dart:io` | 21 * `dart:io` |
| 19 * `Platform` added an `isiOS` getter and `Platform.operatingSystem` may now | 22 * `Platform` added an `isiOS` getter and `Platform.operatingSystem` may now |
| 20 return `ios`. | 23 return `ios`. |
| 21 | 24 |
| (...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 they will keep the Dart process alive until they time out. This fixes the | 694 they will keep the Dart process alive until they time out. This fixes the |
| 692 handling of persistent connections. Previously, the client would shut down | 695 handling of persistent connections. Previously, the client would shut down |
| 693 immediately after a request. | 696 immediately after a request. |
| 694 | 697 |
| 695 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 698 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 696 default. The new `autoCompress` property can be set to `true` to re-enable | 699 default. The new `autoCompress` property can be set to `true` to re-enable |
| 697 compression. | 700 compression. |
| 698 | 701 |
| 699 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 702 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 700 which controls how it resolves `package:` URIs. | 703 which controls how it resolves `package:` URIs. |
| OLD | NEW |