| OLD | NEW |
| 1 ## 1.17.0 - 2016-06-06 | 1 ## 1.17.0 - 2016-06-08 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 * `dart:convert` | 4 * `dart:convert` |
| 5 * Deprecate `ChunkedConverter` which was erroneously added in 1.16. | 5 * Deprecate `ChunkedConverter` which was erroneously added in 1.16. |
| 6 | 6 |
| 7 * `dart:core` | 7 * `dart:core` |
| 8 * `Uri.replace` supports iterables as values for the query parameters. | 8 * `Uri.replace` supports iterables as values for the query parameters. |
| 9 * `Uri.parseIPv6Address` returns a `Uint8List`. | 9 * `Uri.parseIPv6Address` returns a `Uint8List`. |
| 10 | 10 |
| 11 * `dart:io` | 11 * `dart:io` |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 they will keep the Dart process alive until they time out. This fixes the | 1016 they will keep the Dart process alive until they time out. This fixes the |
| 1017 handling of persistent connections. Previously, the client would shut down | 1017 handling of persistent connections. Previously, the client would shut down |
| 1018 immediately after a request. | 1018 immediately after a request. |
| 1019 | 1019 |
| 1020 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1020 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1021 default. The new `autoCompress` property can be set to `true` to re-enable | 1021 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1022 compression. | 1022 compression. |
| 1023 | 1023 |
| 1024 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1024 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1025 which controls how it resolves `package:` URIs. | 1025 which controls how it resolves `package:` URIs. |
| OLD | NEW |