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

Side by Side Diff: CHANGELOG.md

Issue 1980663002: Make json-maps implement Map<String, dynamic>. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Changelog and test updates Created 3 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/lib/convert_patch.dart » ('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.24.0 1 ## 1.24.0
2 2
3 ### Core library changes 3 ### Core library changes
4 * `dart:convert` 4 * `dart:convert`
5 * Removed deprecated `ChunkedConverter` class. 5 * Removed deprecated `ChunkedConverter` class.
6 * JSON maps are now typed as `Map<String, dynamic>` instead of
7 `Map<dynamic, dynamic>`. A JSON-map is not a `HashMap` or `LinkedHashMap`
8 anymore (but just a `Map`).
6 9
7 10
8 ### Language 11 ### Language
9 12
10 #### Strong Mode 13 #### Strong Mode
11 14
12 ### Core library changes 15 ### Core library changes
13 16
14 * `dart:io` 17 * `dart:io`
15 * Added `Platform.localeName`, needed for accessing the locale on platforms 18 * Added `Platform.localeName`, needed for accessing the locale on platforms
(...skipping 1867 matching lines...) Expand 10 before | Expand all | Expand 10 after
1883 they will keep the Dart process alive until they time out. This fixes the 1886 they will keep the Dart process alive until they time out. This fixes the
1884 handling of persistent connections. Previously, the client would shut down 1887 handling of persistent connections. Previously, the client would shut down
1885 immediately after a request. 1888 immediately after a request.
1886 1889
1887 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1890 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1888 default. The new `autoCompress` property can be set to `true` to re-enable 1891 default. The new `autoCompress` property can be set to `true` to re-enable
1889 compression. 1892 compression.
1890 1893
1891 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1894 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1892 which controls how it resolves `package:` URIs. 1895 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/lib/convert_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698