OLD | NEW |
---|---|
1 ## 1.24.0 | 1 ## 1.24.0 |
2 | 2 |
3 ### Language | 3 ### Language |
4 | 4 |
5 #### Strong Mode | 5 #### Strong Mode |
6 | 6 |
7 ### Core library changes | 7 ### Core library changes |
8 | 8 |
9 * `dart:io` | 9 * `dart:io` |
10 * Added `Platform.localeName`, needed for accessing the locale on platforms | 10 * Added `Platform.localeName`, needed for accessing the locale on platforms |
11 that don't store it in an environment variable. | 11 that don't store it in an environment variable. |
12 * Added `ProcessInfo.currentRss` and `ProcessInfo.maxRss` for inspecting | 12 * Added `ProcessInfo.currentRss` and `ProcessInfo.maxRss` for inspecting |
13 the Dart VM process current and peak resident set size. | 13 the Dart VM process current and peak resident set size. |
14 * `dart:async`, `dart:io` | |
15 * Adding to a closed sink now throws. | |
Lasse Reichstein Nielsen
2017/04/26 08:26:18
Also updates dart:core's Sink, so add `dart:core`
floitsch
2017/05/01 16:46:24
Done.
| |
16 | |
14 | 17 |
15 ### Dart VM | 18 ### Dart VM |
16 | 19 |
17 ### Tool Changes | 20 ### Tool Changes |
18 | 21 |
19 * Pub | 22 * Pub |
20 * `pub build` will use a failing exit code if there are errors in any | 23 * `pub build` will use a failing exit code if there are errors in any |
21 transformer. | 24 transformer. |
22 * Allow publishing packages that depend on the Flutter SDK. | 25 * Allow publishing packages that depend on the Flutter SDK. |
23 | 26 |
(...skipping 1847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1871 they will keep the Dart process alive until they time out. This fixes the | 1874 they will keep the Dart process alive until they time out. This fixes the |
1872 handling of persistent connections. Previously, the client would shut down | 1875 handling of persistent connections. Previously, the client would shut down |
1873 immediately after a request. | 1876 immediately after a request. |
1874 | 1877 |
1875 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1878 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
1876 default. The new `autoCompress` property can be set to `true` to re-enable | 1879 default. The new `autoCompress` property can be set to `true` to re-enable |
1877 compression. | 1880 compression. |
1878 | 1881 |
1879 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1882 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
1880 which controls how it resolves `package:` URIs. | 1883 which controls how it resolves `package:` URIs. |
OLD | NEW |