| OLD | NEW |
| 1 ## 1.19.0 | 1 ## 1.19.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 | 4 |
| 5 * `dart:io` | 5 * `dart:io` |
| 6 * `Socket.connect` with source-address argument is now non-blocking | 6 * `Socket.connect` with source-address argument is now non-blocking |
| 7 on Mac. Was already non-blocking on all other platforms. | 7 on Mac. Was already non-blocking on all other platforms. |
| 8 * Report a better error when a bind fails because of a bad source address. | 8 * Report a better error when a bind fails because of a bad source address. |
| 9 | 9 |
| 10 * `dart:async` | |
| 11 * More aggressively returns a Future on Stream.cancel operations. | |
| 12 Discourages to return `null` from `cancel`. | |
| 13 * Fixes a few bugs where the cancel future wasn't passed through | |
| 14 transformations. | |
| 15 | |
| 16 ### Tool Changes | 10 ### Tool Changes |
| 17 | 11 |
| 18 * `dartfmt` - upgraded to v0.2.9 | 12 * `dartfmt` - upgraded to v0.2.9 |
| 19 * Support trailing commas in argument and parameter lists. | 13 * Support trailing commas in argument and parameter lists. |
| 20 * Gracefully handle read-only files. | 14 * Gracefully handle read-only files. |
| 21 * About a dozen other bug fixes. | 15 * About a dozen other bug fixes. |
| 22 | 16 |
| 23 * Pub | 17 * Pub |
| 24 * Added the ability for packages to declare a constraint on the [Flutter][] | 18 * Added the ability for packages to declare a constraint on the [Flutter][] |
| 25 SDK: | 19 SDK: |
| (...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 they will keep the Dart process alive until they time out. This fixes the | 1100 they will keep the Dart process alive until they time out. This fixes the |
| 1107 handling of persistent connections. Previously, the client would shut down | 1101 handling of persistent connections. Previously, the client would shut down |
| 1108 immediately after a request. | 1102 immediately after a request. |
| 1109 | 1103 |
| 1110 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1104 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1111 default. The new `autoCompress` property can be set to `true` to re-enable | 1105 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1112 compression. | 1106 compression. |
| 1113 | 1107 |
| 1114 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1108 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1115 which controls how it resolves `package:` URIs. | 1109 which controls how it resolves `package:` URIs. |
| OLD | NEW |