| OLD | NEW |
| 1 ## 1.24.0 | 1 ## 1.24.0 |
| 2 | 2 |
| 3 ### Language | 3 ### Language |
| 4 | 4 |
| 5 ### Core library changes | 5 ### Core library changes |
| 6 | 6 |
| 7 * `dart:io` | |
| 8 * Added `Platform.localeName`. | |
| 9 | |
| 10 ### Dart VM | 7 ### Dart VM |
| 11 | 8 |
| 12 ### Strong Mode | 9 ### Strong Mode |
| 13 | 10 |
| 14 ### Tool Changes | 11 ### Tool Changes |
| 15 | 12 |
| 16 ## 1.23.0 | 13 ## 1.23.0 |
| 17 | 14 |
| 18 ### Language | 15 ### Language |
| 19 * Allow using URI strings in `part of` declarations to refer to the | 16 * Allow using URI strings in `part of` declarations to refer to the |
| (...skipping 1797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1817 they will keep the Dart process alive until they time out. This fixes the | 1814 they will keep the Dart process alive until they time out. This fixes the |
| 1818 handling of persistent connections. Previously, the client would shut down | 1815 handling of persistent connections. Previously, the client would shut down |
| 1819 immediately after a request. | 1816 immediately after a request. |
| 1820 | 1817 |
| 1821 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1818 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1822 default. The new `autoCompress` property can be set to `true` to re-enable | 1819 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1823 compression. | 1820 compression. |
| 1824 | 1821 |
| 1825 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1822 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1826 which controls how it resolves `package:` URIs. | 1823 which controls how it resolves `package:` URIs. |
| OLD | NEW |