| OLD | NEW |
| 1 ## 1.17.0 | 1 ## 1.17.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 * `dart:core` | 4 * `dart:core` |
| 5 * `Uri.replace` supports iterables as values for the query parameters. | 5 * `Uri.replace` supports iterables as values for the query parameters. |
| 6 * `Uri.parseIPv6Address` returns a `Uint8List`. | 6 * `Uri.parseIPv6Address` returns a `Uint8List`. |
| 7 | 7 |
| 8 * `dart:io` | 8 * `dart:io` |
| 9 * Added `NetworkInterface.listSupported`, which is `true` when | 9 * Added `NetworkInterface.listSupported`, which is `true` when |
| 10 `NetworkInterface.list` is supported, and `false` otherwise. Currently, | 10 `NetworkInterface.list` is supported, and `false` otherwise. Currently, |
| 11 `NetworkInterface.list` is not supported on Android. | 11 `NetworkInterface.list` is not supported on Android. |
| 12 | 12 |
| 13 ### Tool Changes |
| 14 |
| 15 * Pub |
| 16 * TAR files created while publishing a package on Mac OS and Linux now use a |
| 17 more portable format. |
| 18 |
| 19 * Errors caused by invalid arguments now print the full usage information for |
| 20 the command. |
| 21 |
| 22 * SDK constraints for dependency overrides are no longer considered when |
| 23 determining the total SDK constraint for a lockfile. |
| 24 |
| 25 * A bug has been fixed in which a lockfile was considered up-to-date when it |
| 26 actually wasn't. |
| 27 |
| 13 ## 1.16.0 | 28 ## 1.16.0 |
| 14 | 29 |
| 15 ### Core library changes | 30 ### Core library changes |
| 16 | 31 |
| 17 * `dart:convert` | 32 * `dart:convert` |
| 18 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor. | 33 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor. |
| 19 | 34 |
| 20 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. | 35 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. |
| 21 | 36 |
| 22 * `dart:html` | 37 * `dart:html` |
| (...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 they will keep the Dart process alive until they time out. This fixes the | 1000 they will keep the Dart process alive until they time out. This fixes the |
| 986 handling of persistent connections. Previously, the client would shut down | 1001 handling of persistent connections. Previously, the client would shut down |
| 987 immediately after a request. | 1002 immediately after a request. |
| 988 | 1003 |
| 989 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1004 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 990 default. The new `autoCompress` property can be set to `true` to re-enable | 1005 default. The new `autoCompress` property can be set to `true` to re-enable |
| 991 compression. | 1006 compression. |
| 992 | 1007 |
| 993 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1008 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 994 which controls how it resolves `package:` URIs. | 1009 which controls how it resolves `package:` URIs. |
| OLD | NEW |