| 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 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, | 5 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, |
| 6 as all `allMatches` implementations are intended to be. | 6 as all `allMatches` implementations are intended to be. |
| 7 * `dart:io` | 7 * `dart:io` |
| 8 * `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 |
| 9 allowed by the HTTP protocol. | 9 allowed by the HTTP protocol. |
| 10 The `HttpServer` still gracefully receives fragments, but discards them | 10 The `HttpServer` still gracefully receives fragments, but discards them |
| 11 before delivering the request. | 11 before delivering the request. |
| 12 * `dart:async` |
| 13 * `StreamController` added getters for the `onListen`, `onPause`, `onResume` |
| 14 and `onCancel` callbacks. |
| 15 |
| 12 | 16 |
| 13 ## 1.12.0 | 17 ## 1.12.0 |
| 14 | 18 |
| 15 ### Core library changes | 19 ### Core library changes |
| 16 | 20 |
| 17 * `dart:async` | 21 * `dart:async` |
| 18 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` | 22 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` |
| 19 and `onCancel` callbacks. | 23 and `onCancel` callbacks. |
| 20 | 24 |
| 21 * `dart:convert` | 25 * `dart:convert` |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 they will keep the Dart process alive until they time out. This fixes the | 469 they will keep the Dart process alive until they time out. This fixes the |
| 466 handling of persistent connections. Previously, the client would shut down | 470 handling of persistent connections. Previously, the client would shut down |
| 467 immediately after a request. | 471 immediately after a request. |
| 468 | 472 |
| 469 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 473 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 470 default. The new `autoCompress` property can be set to `true` to re-enable | 474 default. The new `autoCompress` property can be set to `true` to re-enable |
| 471 compression. | 475 compression. |
| 472 | 476 |
| 473 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 477 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 474 which controls how it resolves `package:` URIs. | 478 which controls how it resolves `package:` URIs. |
| OLD | NEW |