| OLD | NEW |
| 1 ## 1.14.0 | 1 ## 1.14.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 * `dart:math` | 4 * `dart:math` |
| 5 * `Random` added a `secure` constructor returning a cryptographically secure | 5 * `Random` added a `secure` constructor returning a cryptographically secure |
| 6 random generator which reads from the entropy source provided by the | 6 random generator which reads from the entropy source provided by the |
| 7 embedder for every generated random value. | 7 embedder for every generated random value. |
| 8 | 8 |
| 9 ## 1.13.0 | 9 ## 1.13.0 |
| 10 | 10 |
| 11 ### Core library changes | 11 ### Core library changes |
| 12 * `dart:async` | 12 * `dart:async` |
| 13 * `StreamTransformer` instances created with `fromHandlers` with no | 13 * `StreamTransformer` instances created with `fromHandlers` with no |
| 14 `handleError` callback now forward stack traces along with errors to the | 14 `handleError` callback now forward stack traces along with errors to the |
| 15 resulting streams. | 15 resulting streams. |
| 16 | 16 |
| 17 * `dart:convert` |
| 18 * Added support for Base-64 encoding and decoding. |
| 19 * Added new classes `Base64Codec`, `Base64Encoder`, and `Base64Decoder`. |
| 20 * Added new top-level `const Base64Codec BASE64`. |
| 21 |
| 17 * `dart:core` | 22 * `dart:core` |
| 18 * `Uri` added `removeFragment` method. | 23 * `Uri` added `removeFragment` method. |
| 19 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, | 24 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, |
| 20 as all `allMatches` implementations are intended to be. | 25 as all `allMatches` implementations are intended to be. |
| 21 * `Resource` is deprecated in favor of the resource package. | 26 * `Resource` is deprecated in favor of the resource package. |
| 22 See https://pub.dartlang.org/packages/resource to learn more. This is | 27 See https://pub.dartlang.org/packages/resource to learn more. This is |
| 23 the last release to contain the Resource class. | 28 the last release to contain the Resource class. |
| 24 | 29 |
| 25 * `dart:io` | 30 * `dart:io` |
| 26 * `HttpClient` no longer sends URI fragments in the request. This is not | 31 * `HttpClient` no longer sends URI fragments in the request. This is not |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 they will keep the Dart process alive until they time out. This fixes the | 601 they will keep the Dart process alive until they time out. This fixes the |
| 597 handling of persistent connections. Previously, the client would shut down | 602 handling of persistent connections. Previously, the client would shut down |
| 598 immediately after a request. | 603 immediately after a request. |
| 599 | 604 |
| 600 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 605 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 601 default. The new `autoCompress` property can be set to `true` to re-enable | 606 default. The new `autoCompress` property can be set to `true` to re-enable |
| 602 compression. | 607 compression. |
| 603 | 608 |
| 604 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 609 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 605 which controls how it resolves `package:` URIs. | 610 which controls how it resolves `package:` URIs. |
| OLD | NEW |