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 | 7 |
8 * `dart:io` | 8 * `dart:io` |
9 * `HttpClient` no longer sends URI fragments in the requeust. This is not | 9 * `HttpClient` no longer sends URI fragments in the requeust. This is not |
10 allowed by the HTTP protocol. | 10 allowed by the HTTP protocol. |
11 The `HttpServer` still gracefully receives fragments, but discards them | 11 The `HttpServer` still gracefully receives fragments, but discards them |
12 before delivering the request. | 12 before delivering the request. |
| 13 * `Platform.packageRoot` changed to return a `Uri` for the package root |
| 14 of the current isolate, not a `String` representing the command line |
| 15 parameter. Also added `Platform.packageMap` getter. |
13 | 16 |
14 ## 1.12.0 | 17 ## 1.12.0 |
15 | 18 |
16 ### Core library changes | 19 ### Core library changes |
17 | 20 |
18 * `dart:async` | 21 * `dart:async` |
19 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` | 22 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` |
20 and `onCancel` callbacks. | 23 and `onCancel` callbacks. |
21 | 24 |
22 * `dart:convert` | 25 * `dart:convert` |
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 they will keep the Dart process alive until they time out. This fixes the | 529 they will keep the Dart process alive until they time out. This fixes the |
527 handling of persistent connections. Previously, the client would shut down | 530 handling of persistent connections. Previously, the client would shut down |
528 immediately after a request. | 531 immediately after a request. |
529 | 532 |
530 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 533 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
531 default. The new `autoCompress` property can be set to `true` to re-enable | 534 default. The new `autoCompress` property can be set to `true` to re-enable |
532 compression. | 535 compression. |
533 | 536 |
534 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 537 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
535 which controls how it resolves `package:` URIs. | 538 which controls how it resolves `package:` URIs. |
OLD | NEW |