| OLD | NEW |
| 1 ## 1.24.0 |
| 2 |
| 3 ### Core library changes |
| 4 * `dart:convert` |
| 5 * Removed deprecated `ChunkedConverter` class. |
| 6 |
| 1 ## 1.23.0 | 7 ## 1.23.0 |
| 2 | 8 |
| 3 ### Language | 9 ### Language |
| 4 * Allow using URI strings in `part of` declarations to refer to the | 10 * Allow using URI strings in `part of` declarations to refer to the |
| 5 importing library. | 11 importing library. |
| 6 | 12 |
| 7 ### Core library changes | 13 ### Core library changes |
| 8 | 14 |
| 9 * `dart:core` | 15 * `dart:core` |
| 10 * Added `Uri.isScheme` function to check the scheme of a URI. | 16 * Added `Uri.isScheme` function to check the scheme of a URI. |
| (...skipping 1726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1737 they will keep the Dart process alive until they time out. This fixes the | 1743 they will keep the Dart process alive until they time out. This fixes the |
| 1738 handling of persistent connections. Previously, the client would shut down | 1744 handling of persistent connections. Previously, the client would shut down |
| 1739 immediately after a request. | 1745 immediately after a request. |
| 1740 | 1746 |
| 1741 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1747 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1742 default. The new `autoCompress` property can be set to `true` to re-enable | 1748 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1743 compression. | 1749 compression. |
| 1744 | 1750 |
| 1745 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1751 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1746 which controls how it resolves `package:` URIs. | 1752 which controls how it resolves `package:` URIs. |
| OLD | NEW |