| OLD | NEW |
| 1 ## 1.24.0 | 1 ## 1.24.0 |
| 2 | 2 |
| 3 ### Core library changes | |
| 4 * `dart:convert` | |
| 5 * Removed deprecated `ChunkedConverter` class. | |
| 6 | |
| 7 | |
| 8 ### Language | 3 ### Language |
| 9 | 4 |
| 10 #### Strong Mode | 5 #### Strong Mode |
| 11 | 6 |
| 12 ### Core library changes | 7 ### Core library changes |
| 13 | 8 |
| 14 * `dart:io` | 9 * `dart:io` |
| 15 * Added `Platform.localeName`, needed for accessing the locale on platforms | 10 * Added `Platform.localeName`, needed for accessing the locale on platforms |
| 16 that don't store it in an environment variable. | 11 that don't store it in an environment variable. |
| 17 * Added `ProcessInfo.currentRss` and `ProcessInfo.maxRss` for inspecting | 12 * Added `ProcessInfo.currentRss` and `ProcessInfo.maxRss` for inspecting |
| 18 the Dart VM process current and peak resident set size. | 13 the Dart VM process current and peak resident set size. |
| 19 * Added 'RawSynchronousSocket', a basic synchronous socket implementation. | 14 * Added 'RawSynchronousSocket', a basic synchronous socket implementation. |
| 15 * `dart:convert` |
| 16 * Removed deprecated `ChunkedConverter` class. |
| 20 | 17 |
| 21 ### Dart VM | 18 ### Dart VM |
| 22 | 19 |
| 23 ### Tool Changes | 20 ### Tool Changes |
| 24 | 21 |
| 25 * Pub | 22 * Pub |
| 26 * `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 |
| 27 transformer. | 24 transformer. |
| 28 * Allow publishing packages that depend on the Flutter SDK. | 25 * Allow publishing packages that depend on the Flutter SDK. |
| 29 | 26 |
| (...skipping 1853 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 | 1880 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 | 1881 handling of persistent connections. Previously, the client would shut down |
| 1885 immediately after a request. | 1882 immediately after a request. |
| 1886 | 1883 |
| 1887 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1884 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1888 default. The new `autoCompress` property can be set to `true` to re-enable | 1885 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1889 compression. | 1886 compression. |
| 1890 | 1887 |
| 1891 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1888 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1892 which controls how it resolves `package:` URIs. | 1889 which controls how it resolves `package:` URIs. |
| OLD | NEW |