| OLD | NEW |
| 1 ## 1.17.0 | 1 ## 1.17.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 * `dart:convert` |
| 5 * Deprecate `ChunkedConverter` which was erroneously added in 1.16. |
| 6 |
| 4 * `dart:core` | 7 * `dart:core` |
| 5 * `Uri.replace` supports iterables as values for the query parameters. | 8 * `Uri.replace` supports iterables as values for the query parameters. |
| 6 * `Uri.parseIPv6Address` returns a `Uint8List`. | 9 * `Uri.parseIPv6Address` returns a `Uint8List`. |
| 7 | 10 |
| 8 * `dart:io` | 11 * `dart:io` |
| 9 * Added `NetworkInterface.listSupported`, which is `true` when | 12 * Added `NetworkInterface.listSupported`, which is `true` when |
| 10 `NetworkInterface.list` is supported, and `false` otherwise. Currently, | 13 `NetworkInterface.list` is supported, and `false` otherwise. Currently, |
| 11 `NetworkInterface.list` is not supported on Android. | 14 `NetworkInterface.list` is not supported on Android. |
| 12 | 15 |
| 13 ### Tool Changes | 16 ### Tool Changes |
| (...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 they will keep the Dart process alive until they time out. This fixes the | 1003 they will keep the Dart process alive until they time out. This fixes the |
| 1001 handling of persistent connections. Previously, the client would shut down | 1004 handling of persistent connections. Previously, the client would shut down |
| 1002 immediately after a request. | 1005 immediately after a request. |
| 1003 | 1006 |
| 1004 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1007 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1005 default. The new `autoCompress` property can be set to `true` to re-enable | 1008 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1006 compression. | 1009 compression. |
| 1007 | 1010 |
| 1008 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1011 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1009 which controls how it resolves `package:` URIs. | 1012 which controls how it resolves `package:` URIs. |
| OLD | NEW |