| OLD | NEW |
| 1 ## 1.13.0 | 1 ## 1.13.0 |
| 2 | 2 |
| 3 * `dart:core` | 3 * `dart:core` |
| 4 * `DataUri` class added to help with creating and deconstructing data: URIs. |
| 4 * `Uri` added `removeFragment` method. | 5 * `Uri` added `removeFragment` method. |
| 5 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, | 6 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, |
| 6 as all `allMatches` implementations are intended to be. | 7 as all `allMatches` implementations are intended to be. |
| 7 | 8 |
| 8 * `dart:io` | 9 * `dart:io` |
| 9 * `HttpClient` no longer sends URI fragments in the request. This is not | 10 * `HttpClient` no longer sends URI fragments in the request. This is not |
| 10 allowed by the HTTP protocol. | 11 allowed by the HTTP protocol. |
| 11 The `HttpServer` still gracefully receives fragments, but discards them | 12 The `HttpServer` still gracefully receives fragments, but discards them |
| 12 before delivering the request. | 13 before delivering the request. |
| 13 | 14 |
| 14 * `dart:async` | 15 * `dart:async` |
| 15 * `StreamTransformer`s created with `fromHandlers` with no `handleError` | 16 * `StreamTransformer`s created with `fromHandlers` with no `handleError` |
| 16 callback now forward stack traces along with errors to the resulting | 17 callback now forward stack traces along with errors to the resulting |
| 17 streams. | 18 streams. |
| 18 | 19 |
| 20 * `dart:convert` |
| 21 * Added `BASE64` codec for simple base64 encoding and decoding. |
| 22 |
| 19 ### Tool changes | 23 ### Tool changes |
| 20 | 24 |
| 21 * `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 |
| 22 been removed from the repository. | 26 been removed from the repository. |
| 23 | 27 |
| 24 ## 1.12.0 | 28 ## 1.12.0 |
| 25 | 29 |
| 26 ### Language changes | 30 ### Language changes |
| 27 | 31 |
| 28 * Null-aware operators | 32 * 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 | 548 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 | 549 handling of persistent connections. Previously, the client would shut down |
| 546 immediately after a request. | 550 immediately after a request. |
| 547 | 551 |
| 548 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 552 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 549 default. The new `autoCompress` property can be set to `true` to re-enable | 553 default. The new `autoCompress` property can be set to `true` to re-enable |
| 550 compression. | 554 compression. |
| 551 | 555 |
| 552 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 556 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 553 which controls how it resolves `package:` URIs. | 557 which controls how it resolves `package:` URIs. |
| OLD | NEW |