| 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 `Uri.data` getter for `data:` URIs, and `UriData` class for the | 9 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the |
| 9 return type. | 10 return type. |
| 10 * Added `growable` parameter to `List.filled` constructor. | 11 * Added `growable` parameter to `List.filled` constructor. |
| 11 | 12 |
| 12 * `dart:math` | 13 * `dart:math` |
| 13 * `Random` added a `secure` constructor returning a cryptographically secure | 14 * `Random` added a `secure` constructor returning a cryptographically secure |
| 14 random generator which reads from the entropy source provided by the | 15 random generator which reads from the entropy source provided by the |
| 15 embedder for every generated random value. | 16 embedder for every generated random value. |
| 16 | 17 |
| 17 * `dart:io` | 18 * `dart:io` |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 they will keep the Dart process alive until they time out. This fixes the | 664 they will keep the Dart process alive until they time out. This fixes the |
| 664 handling of persistent connections. Previously, the client would shut down | 665 handling of persistent connections. Previously, the client would shut down |
| 665 immediately after a request. | 666 immediately after a request. |
| 666 | 667 |
| 667 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 668 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 668 default. The new `autoCompress` property can be set to `true` to re-enable | 669 default. The new `autoCompress` property can be set to `true` to re-enable |
| 669 compression. | 670 compression. |
| 670 | 671 |
| 671 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 672 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 672 which controls how it resolves `package:` URIs. | 673 which controls how it resolves `package:` URIs. |
| OLD | NEW |