| OLD | NEW |
| 1 ## 1.17.0 |
| 2 |
| 3 ### Core library changes |
| 4 * `dart:core` |
| 5 * `Uri.replace` supports iterables as values for the query parameters. |
| 6 * `Uri.parseIPv6Address` returns a `Uint8List`. |
| 7 |
| 1 ## 1.16.0 | 8 ## 1.16.0 |
| 2 | 9 |
| 3 ### Core library changes | 10 ### Core library changes |
| 4 | 11 |
| 5 * `dart:convert` | 12 * `dart:convert` |
| 6 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor. | 13 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor. |
| 7 | 14 |
| 8 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. | 15 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. |
| 9 | 16 |
| 10 * `dart:io` | 17 * `dart:io` |
| (...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 they will keep the Dart process alive until they time out. This fixes the | 898 they will keep the Dart process alive until they time out. This fixes the |
| 892 handling of persistent connections. Previously, the client would shut down | 899 handling of persistent connections. Previously, the client would shut down |
| 893 immediately after a request. | 900 immediately after a request. |
| 894 | 901 |
| 895 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 902 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 896 default. The new `autoCompress` property can be set to `true` to re-enable | 903 default. The new `autoCompress` property can be set to `true` to re-enable |
| 897 compression. | 904 compression. |
| 898 | 905 |
| 899 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 906 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 900 which controls how it resolves `package:` URIs. | 907 which controls how it resolves `package:` URIs. |
| OLD | NEW |