| 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 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 `setInnerHtml` or other methods that create DOM from text. It is | 38 `setInnerHtml` or other methods that create DOM from text. It is |
| 39 also more efficient, skipping the creation of a `DocumentFragment`. | 39 also more efficient, skipping the creation of a `DocumentFragment`. |
| 40 | 40 |
| 41 * `dart:io` | 41 * `dart:io` |
| 42 * Added two new file modes, `WRITE_ONLY` and `WRITE_ONLY_APPEND` for | 42 * Added two new file modes, `WRITE_ONLY` and `WRITE_ONLY_APPEND` for |
| 43 opening a file write only. | 43 opening a file write only. |
| 44 [eaeecf2](https://github.com/dart-lang/sdk/commit/eaeecf2ed13ba6c7fbfd653c3c
592974a7120960) | 44 [eaeecf2](https://github.com/dart-lang/sdk/commit/eaeecf2ed13ba6c7fbfd653c3c
592974a7120960) |
| 45 * Change stdout/stderr to binary mode on Windows. | 45 * Change stdout/stderr to binary mode on Windows. |
| 46 [4205b29](https://github.com/dart-lang/sdk/commit/4205b2997e01f2cea8e2f44c6f
46ed6259ab7277) | 46 [4205b29](https://github.com/dart-lang/sdk/commit/4205b2997e01f2cea8e2f44c6f
46ed6259ab7277) |
| 47 | 47 |
| 48 * `dart:isolate` |
| 49 * Added `onError`, `onExit` and `errorsAreFatal` parameters to |
| 50 `Isolate.spawnUri`. |
| 51 |
| 48 * `dart:mirrors` | 52 * `dart:mirrors` |
| 49 * `InstanceMirror.delegate` moved up to `ObjectMirror`. | 53 * `InstanceMirror.delegate` moved up to `ObjectMirror`. |
| 50 | 54 |
| 51 ### Tool changes | 55 ### Tool changes |
| 52 | 56 |
| 53 * Pub | 57 * Pub |
| 54 | 58 |
| 55 * **Breaking:** various commands that previously ran `pub get` implicitly no | 59 * **Breaking:** various commands that previously ran `pub get` implicitly no |
| 56 longer do so. Instead, they merely check to make sure the ".packages" file | 60 longer do so. Instead, they merely check to make sure the ".packages" file |
| 57 is newer than the pubspec and the lock file, and fail if it's not. | 61 is newer than the pubspec and the lock file, and fail if it's not. |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 they will keep the Dart process alive until they time out. This fixes the | 492 they will keep the Dart process alive until they time out. This fixes the |
| 489 handling of persistent connections. Previously, the client would shut down | 493 handling of persistent connections. Previously, the client would shut down |
| 490 immediately after a request. | 494 immediately after a request. |
| 491 | 495 |
| 492 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 496 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 493 default. The new `autoCompress` property can be set to `true` to re-enable | 497 default. The new `autoCompress` property can be set to `true` to re-enable |
| 494 compression. | 498 compression. |
| 495 | 499 |
| 496 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 500 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 497 which controls how it resolves `package:` URIs. | 501 which controls how it resolves `package:` URIs. |
| OLD | NEW |