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