| 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`. | 10 * Added `Platform.localeName`, needed for accessing the locale on platforms |
| 11 that don't store it in an environment variable. |
| 12 * Added `ProcessInfo.currentRss` and `ProcessInfo.maxRss` for inspecting |
| 13 the Dart VM process current and peak resident set size. |
| 11 | 14 |
| 12 ### Dart VM | 15 ### Dart VM |
| 13 | 16 |
| 14 ### Tool Changes | 17 ### Tool Changes |
| 15 | 18 |
| 16 * Pub | 19 * Pub |
| 17 * `pub build` will use a failing exit code if there are errors in any | 20 * `pub build` will use a failing exit code if there are errors in any |
| 18 transformer. | 21 transformer. |
| 19 * Allow publishing packages that depend on the Flutter SDK. | 22 * Allow publishing packages that depend on the Flutter SDK. |
| 20 | 23 |
| (...skipping 1847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1868 they will keep the Dart process alive until they time out. This fixes the | 1871 they will keep the Dart process alive until they time out. This fixes the |
| 1869 handling of persistent connections. Previously, the client would shut down | 1872 handling of persistent connections. Previously, the client would shut down |
| 1870 immediately after a request. | 1873 immediately after a request. |
| 1871 | 1874 |
| 1872 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1875 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1873 default. The new `autoCompress` property can be set to `true` to re-enable | 1876 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1874 compression. | 1877 compression. |
| 1875 | 1878 |
| 1876 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1879 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1877 which controls how it resolves `package:` URIs. | 1880 which controls how it resolves `package:` URIs. |
| OLD | NEW |