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