| OLD | NEW |
| 1 ## 1.17.0 | 1 ## 1.17.0 - 2016-06-06 |
| 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 12 matching lines...) Expand all Loading... |
| 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 | 31 * A bug has been fixed in which `pub get --offline` would crash when a |
| 32 prerelease version was selected. | 32 prerelease version was selected. |
| 33 | 33 |
| 34 ## 1.16.0 | 34 * Dartium and content shell |
| 35 * Debugging Dart code inside iframes improved, was broken. |
| 36 |
| 37 ## 1.16.1 - 2016-05-24 |
| 38 |
| 39 Patch release, resolves one issue: |
| 40 |
| 41 * VM: Fixes a bug that caused intermittent hangs on Windows. |
| 42 (SDK issue [26400](https://github.com/dart-lang/sdk/issues/26400)) |
| 43 |
| 44 ## 1.16.0 - 2016-04-26 |
| 35 | 45 |
| 36 ### Core library changes | 46 ### Core library changes |
| 37 | 47 |
| 38 * `dart:convert` | 48 * `dart:convert` |
| 39 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor. | 49 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor. |
| 40 | 50 |
| 41 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. | 51 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. |
| 42 | 52 |
| 43 * `dart:html` | 53 * `dart:html` |
| 44 | 54 |
| (...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 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 |
| 1007 handling of persistent connections. Previously, the client would shut down | 1017 handling of persistent connections. Previously, the client would shut down |
| 1008 immediately after a request. | 1018 immediately after a request. |
| 1009 | 1019 |
| 1010 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1020 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1011 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 |
| 1012 compression. | 1022 compression. |
| 1013 | 1023 |
| 1014 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1024 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1015 which controls how it resolves `package:` URIs. | 1025 which controls how it resolves `package:` URIs. |
| OLD | NEW |