Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Side by Side Diff: CHANGELOG.md

Issue 1916223003: Fixes NetworkInterface.list crash on Android (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | runtime/bin/io_natives.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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`
9 * Added `NetworkInterface.listSupported`, which is `true` when
10 `NetworkInterface.list` is supported, and `false` otherwise. Currently,
11 `NetworkInterface.list` is not supported on Android.
12
8 ## 1.16.0 13 ## 1.16.0
9 14
10 ### Core library changes 15 ### Core library changes
11 16
12 * `dart:convert` 17 * `dart:convert`
13 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor. 18 * Added `BASE64URL` codec and corresponding `Base64Codec.urlSafe` constructor.
14 19
15 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. 20 * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`.
16 21
17 * `dart:io` 22 * `dart:io`
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 they will keep the Dart process alive until they time out. This fixes the 903 they will keep the Dart process alive until they time out. This fixes the
899 handling of persistent connections. Previously, the client would shut down 904 handling of persistent connections. Previously, the client would shut down
900 immediately after a request. 905 immediately after a request.
901 906
902 * **Breaking change:** `HttpServer` no longer compresses all traffic by 907 * **Breaking change:** `HttpServer` no longer compresses all traffic by
903 default. The new `autoCompress` property can be set to `true` to re-enable 908 default. The new `autoCompress` property can be set to `true` to re-enable
904 compression. 909 compression.
905 910
906 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 911 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
907 which controls how it resolves `package:` URIs. 912 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/io_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698