OLD | NEW |
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 Loading... |
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. |
OLD | NEW |