| OLD | NEW |
| 1 ## 1.13.0 | 1 ## 1.13.0 |
| 2 | 2 |
| 3 * `dart:async` |
| 4 * `StreamTransformer` instances created with `fromHandlers` with no |
| 5 `handleError` callback now forward stack traces along with errors to the |
| 6 resulting streams. |
| 7 |
| 3 * `dart:core` | 8 * `dart:core` |
| 4 * `Uri` added `removeFragment` method. | 9 * `Uri` added `removeFragment` method. |
| 5 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, | 10 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, |
| 6 as all `allMatches` implementations are intended to be. | 11 as all `allMatches` implementations are intended to be. |
| 7 | 12 |
| 8 * `dart:io` | 13 * `dart:io` |
| 9 * `HttpClient` no longer sends URI fragments in the request. This is not | 14 * `HttpClient` no longer sends URI fragments in the request. This is not |
| 10 allowed by the HTTP protocol. | 15 allowed by the HTTP protocol. |
| 11 The `HttpServer` still gracefully receives fragments, but discards them | 16 The `HttpServer` still gracefully receives fragments, but discards them |
| 12 before delivering the request. | 17 before delivering the request. |
| 13 | 18 |
| 14 * `dart:async` | |
| 15 * `StreamTransformer`s created with `fromHandlers` with no `handleError` | |
| 16 callback now forward stack traces along with errors to the resulting | |
| 17 streams. | |
| 18 | |
| 19 ### Tool changes | 19 ### Tool changes |
| 20 | 20 |
| 21 * `docgen` and 'dartdocgen' no longer ship in the sdk. The `docgen` sources have | 21 * `docgen` and 'dartdocgen' no longer ship in the sdk. The `docgen` sources have |
| 22 been removed from the repository. | 22 been removed from the repository. |
| 23 | 23 |
| 24 ## 1.12.0 | 24 ## 1.12.0 |
| 25 | 25 |
| 26 ### Language changes | 26 ### Language changes |
| 27 | 27 |
| 28 * Null-aware operators | 28 * Null-aware operators |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 they will keep the Dart process alive until they time out. This fixes the | 544 they will keep the Dart process alive until they time out. This fixes the |
| 545 handling of persistent connections. Previously, the client would shut down | 545 handling of persistent connections. Previously, the client would shut down |
| 546 immediately after a request. | 546 immediately after a request. |
| 547 | 547 |
| 548 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 548 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 549 default. The new `autoCompress` property can be set to `true` to re-enable | 549 default. The new `autoCompress` property can be set to `true` to re-enable |
| 550 compression. | 550 compression. |
| 551 | 551 |
| 552 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 552 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 553 which controls how it resolves `package:` URIs. | 553 which controls how it resolves `package:` URIs. |
| OLD | NEW |