| 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`. |
| 11 | 11 |
| 12 ### Dart VM | 12 ### Dart VM |
| 13 | 13 |
| 14 ### Tool Changes | 14 ### Tool Changes |
| 15 | 15 |
| 16 * `pub build` will use a failing exit code if there are errors in any | 16 * Pub |
| 17 transformer. | 17 * `pub build` will use a failing exit code if there are errors in any |
| 18 transformer. |
| 19 * Allow publishing packages that depend on the Flutter SDK. |
| 18 | 20 |
| 19 ## 1.23.0 | 21 ## 1.23.0 |
| 20 | 22 |
| 21 ### Language | 23 ### Language |
| 22 * Allow using URI strings in `part of` declarations to refer to the | 24 * Allow using URI strings in `part of` declarations to refer to the |
| 23 importing library. | 25 importing library. |
| 24 A library part now can declare its library either as: | 26 A library part now can declare its library either as: |
| 25 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. | 27 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. |
| 26 This allows libraries with no library declarations (and therefore no name) | 28 This allows libraries with no library declarations (and therefore no name) |
| 27 to have parts, and it allows tools to easily find the library of a part file. | 29 to have parts, and it allows tools to easily find the library of a part file. |
| (...skipping 1846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1874 they will keep the Dart process alive until they time out. This fixes the | 1876 they will keep the Dart process alive until they time out. This fixes the |
| 1875 handling of persistent connections. Previously, the client would shut down | 1877 handling of persistent connections. Previously, the client would shut down |
| 1876 immediately after a request. | 1878 immediately after a request. |
| 1877 | 1879 |
| 1878 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1880 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1879 default. The new `autoCompress` property can be set to `true` to re-enable | 1881 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1880 compression. | 1882 compression. |
| 1881 | 1883 |
| 1882 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1884 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1883 which controls how it resolves `package:` URIs. | 1885 which controls how it resolves `package:` URIs. |
| OLD | NEW |