| OLD | NEW |
| 1 ## 1.13.0 | 1 ## 1.13.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 * `dart:async` | 4 * `dart:async` |
| 5 * `StreamTransformer` instances created with `fromHandlers` with no | 5 * `StreamTransformer` instances created with `fromHandlers` with no |
| 6 `handleError` callback now forward stack traces along with errors to the | 6 `handleError` callback now forward stack traces along with errors to the |
| 7 resulting streams. | 7 resulting streams. |
| 8 | 8 |
| 9 * `dart:core` | 9 * `dart:core` |
| 10 * `Uri` added `removeFragment` method. | 10 * `Uri` added `removeFragment` method. |
| 11 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, | 11 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, |
| 12 as all `allMatches` implementations are intended to be. | 12 as all `allMatches` implementations are intended to be. |
| 13 * `Resource` is deprecated in favor of the resource package. |
| 14 See https://pub.dartlang.org/packages/resource to learn more. This is |
| 15 the last release to contain the Resource class. |
| 13 | 16 |
| 14 * `dart:io` | 17 * `dart:io` |
| 15 * `HttpClient` no longer sends URI fragments in the request. This is not | 18 * `HttpClient` no longer sends URI fragments in the request. This is not |
| 16 allowed by the HTTP protocol. | 19 allowed by the HTTP protocol. |
| 17 The `HttpServer` still gracefully receives fragments, but discards them | 20 The `HttpServer` still gracefully receives fragments, but discards them |
| 18 before delivering the request. | 21 before delivering the request. |
| 19 | 22 |
| 20 ### Tool changes | 23 ### Tool changes |
| 21 | 24 |
| 22 * `docgen` and 'dartdocgen' no longer ship in the sdk. The `docgen` sources have | 25 * `docgen` and 'dartdocgen' no longer ship in the sdk. The `docgen` sources have |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 they will keep the Dart process alive until they time out. This fixes the | 555 they will keep the Dart process alive until they time out. This fixes the |
| 553 handling of persistent connections. Previously, the client would shut down | 556 handling of persistent connections. Previously, the client would shut down |
| 554 immediately after a request. | 557 immediately after a request. |
| 555 | 558 |
| 556 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 559 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 557 default. The new `autoCompress` property can be set to `true` to re-enable | 560 default. The new `autoCompress` property can be set to `true` to re-enable |
| 558 compression. | 561 compression. |
| 559 | 562 |
| 560 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 563 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 561 which controls how it resolves `package:` URIs. | 564 which controls how it resolves `package:` URIs. |
| OLD | NEW |