| OLD | NEW |
| 1 ## 1.14.0 | 1 ## 1.14.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 * `dart:convert` |
| 5 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. |
| 6 |
| 7 * `dart:core` |
| 8 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the |
| 9 return type. |
| 10 * Added `growable` parameter to `List.filled` constructor. |
| 11 |
| 4 * `dart:math` | 12 * `dart:math` |
| 5 * `Random` added a `secure` constructor returning a cryptographically secure | 13 * `Random` added a `secure` constructor returning a cryptographically secure |
| 6 random generator which reads from the entropy source provided by the | 14 random generator which reads from the entropy source provided by the |
| 7 embedder for every generated random value. | 15 embedder for every generated random value. |
| 8 | 16 |
| 9 * `dart:core` | |
| 10 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the | |
| 11 return type. | |
| 12 | |
| 13 * `dart:convert` | |
| 14 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. | |
| 15 | |
| 16 * `dart:io` | 17 * `dart:io` |
| 17 * `Platform` added an `isiOS` getter and `Platform.operatingSystem` may now | 18 * `Platform` added an `isiOS` getter and `Platform.operatingSystem` may now |
| 18 return `ios`. | 19 return `ios`. |
| 19 | 20 |
| 20 ## 1.13.0 | 21 ## 1.13.0 |
| 21 | 22 |
| 22 ### Core library changes | 23 ### Core library changes |
| 23 * `dart:async` | 24 * `dart:async` |
| 24 * `StreamController` added getters for `onListen`, `onPause`, and `onResume` | 25 * `StreamController` added getters for `onListen`, `onPause`, and `onResume` |
| 25 with the corresponding new `typedef void ControllerCallback()`. | 26 with the corresponding new `typedef void ControllerCallback()`. |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 they will keep the Dart process alive until they time out. This fixes the | 659 they will keep the Dart process alive until they time out. This fixes the |
| 659 handling of persistent connections. Previously, the client would shut down | 660 handling of persistent connections. Previously, the client would shut down |
| 660 immediately after a request. | 661 immediately after a request. |
| 661 | 662 |
| 662 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 663 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 663 default. The new `autoCompress` property can be set to `true` to re-enable | 664 default. The new `autoCompress` property can be set to `true` to re-enable |
| 664 compression. | 665 compression. |
| 665 | 666 |
| 666 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 667 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 667 which controls how it resolves `package:` URIs. | 668 which controls how it resolves `package:` URIs. |
| OLD | NEW |