| OLD | NEW |
| 1 ## 1.17.0 | 1 ## 1.17.0 |
| 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 * Errors caused by invalid arguments now print the full usage information for | 22 * Errors caused by invalid arguments now print the full usage information for |
| 23 the command. | 23 the command. |
| 24 | 24 |
| 25 * SDK constraints for dependency overrides are no longer considered when | 25 * SDK constraints for dependency overrides are no longer considered when |
| 26 determining the total SDK constraint for a lockfile. | 26 determining the total SDK constraint for a lockfile. |
| 27 | 27 |
| 28 * A bug has been fixed in which a lockfile was considered up-to-date when it | 28 * A bug has been fixed in which a lockfile was considered up-to-date when it |
| 29 actually wasn't. | 29 actually wasn't. |
| 30 | 30 |
| 31 * A bug has been fixed in which `pub get --offline` would crash when a |
| 32 prerelease version was selected. |
| 33 |
| 31 ## 1.16.0 | 34 ## 1.16.0 |
| 32 | 35 |
| 33 ### Core library changes | 36 ### Core library changes |
| 34 | 37 |
| 35 * `dart:convert` | 38 * `dart:convert` |
| 36 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor. | 39 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor. |
| 37 | 40 |
| 38 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. | 41 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. |
| 39 | 42 |
| 40 * `dart:html` | 43 * `dart:html` |
| (...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 they will keep the Dart process alive until they time out. This fixes the | 1006 they will keep the Dart process alive until they time out. This fixes the |
| 1004 handling of persistent connections. Previously, the client would shut down | 1007 handling of persistent connections. Previously, the client would shut down |
| 1005 immediately after a request. | 1008 immediately after a request. |
| 1006 | 1009 |
| 1007 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1010 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1008 default. The new `autoCompress` property can be set to `true` to re-enable | 1011 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1009 compression. | 1012 compression. |
| 1010 | 1013 |
| 1011 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1014 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1012 which controls how it resolves `package:` URIs. | 1015 which controls how it resolves `package:` URIs. |
| OLD | NEW |