| OLD | NEW |
| 1 ## 1.13.0 | 1 ## 1.13.0 |
| 2 | 2 |
| 3 * `dart:core` | 3 * `dart:core` |
| 4 * `Uri` added `removeFragment` method. | 4 * `Uri` added `removeFragment` method. |
| 5 | 5 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, |
| 6 as all `allMatches` implementations are intended to be. |
| 6 * `dart:io` | 7 * `dart:io` |
| 7 * `HttpClient` no longer sends URI fragments in the requeust. This is not | 8 * `HttpClient` no longer sends URI fragments in the requeust. This is not |
| 8 allowed by the HTTP protocol. | 9 allowed by the HTTP protocol. |
| 9 The `HttpServer` still gracefully receives fragments, but discards them | 10 The `HttpServer` still gracefully receives fragments, but discards them |
| 10 before delivering the request. | 11 before delivering the request. |
| 11 | 12 |
| 12 ## 1.12.0 | 13 ## 1.12.0 |
| 13 | 14 |
| 14 ### Core library changes | 15 ### Core library changes |
| 15 | 16 |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 they will keep the Dart process alive until they time out. This fixes the | 465 they will keep the Dart process alive until they time out. This fixes the |
| 465 handling of persistent connections. Previously, the client would shut down | 466 handling of persistent connections. Previously, the client would shut down |
| 466 immediately after a request. | 467 immediately after a request. |
| 467 | 468 |
| 468 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 469 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 469 default. The new `autoCompress` property can be set to `true` to re-enable | 470 default. The new `autoCompress` property can be set to `true` to re-enable |
| 470 compression. | 471 compression. |
| 471 | 472 |
| 472 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 473 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 473 which controls how it resolves `package:` URIs. | 474 which controls how it resolves `package:` URIs. |
| OLD | NEW |