| OLD | NEW |
| 1 ## 1.13.0 |
| 2 |
| 3 * `dart:core` |
| 4 * `Uri` added `removeFragment` method. |
| 5 |
| 6 * `dart:io` |
| 7 * `HttpClient` no longer sends URI fragments in the requeust. This is not |
| 8 allowed by the HTTP protocol. |
| 9 The `HttpServer` still gracefully receives fragments, but discards them |
| 10 before delivering the request. |
| 11 |
| 1 ## 1.12.0 | 12 ## 1.12.0 |
| 2 | 13 |
| 3 ### Core library changes | 14 ### Core library changes |
| 4 | 15 |
| 5 * `dart:async` | 16 * `dart:async` |
| 6 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` | 17 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` |
| 7 and `onCancel` callbacks. | 18 and `onCancel` callbacks. |
| 8 | 19 |
| 9 * `dart:convert` | 20 * `dart:convert` |
| 10 * `LineSplitter` added a `split` static method returning an `Iterable`. | 21 * `LineSplitter` added a `split` static method returning an `Iterable`. |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 they will keep the Dart process alive until they time out. This fixes the | 464 they will keep the Dart process alive until they time out. This fixes the |
| 454 handling of persistent connections. Previously, the client would shut down | 465 handling of persistent connections. Previously, the client would shut down |
| 455 immediately after a request. | 466 immediately after a request. |
| 456 | 467 |
| 457 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 468 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 458 default. The new `autoCompress` property can be set to `true` to re-enable | 469 default. The new `autoCompress` property can be set to `true` to re-enable |
| 459 compression. | 470 compression. |
| 460 | 471 |
| 461 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 472 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 462 which controls how it resolves `package:` URIs. | 473 which controls how it resolves `package:` URIs. |
| OLD | NEW |