| 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 |
| 7 on Mac. Was already non-blocking on all other platforms. |
| 6 * 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. |
| 7 | 9 |
| 8 ### Tool Changes | 10 ### Tool Changes |
| 9 | 11 |
| 10 * `dartfmt` - upgraded to v0.2.9 | 12 * `dartfmt` - upgraded to v0.2.9 |
| 11 * Support trailing commas in argument and parameter lists. | 13 * Support trailing commas in argument and parameter lists. |
| 12 * Gracefully handle read-only files. | 14 * Gracefully handle read-only files. |
| 13 * About a dozen other bug fixes. | 15 * About a dozen other bug fixes. |
| 14 | 16 |
| 15 * Pub | 17 * Pub |
| (...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 they will keep the Dart process alive until they time out. This fixes the | 1097 they will keep the Dart process alive until they time out. This fixes the |
| 1096 handling of persistent connections. Previously, the client would shut down | 1098 handling of persistent connections. Previously, the client would shut down |
| 1097 immediately after a request. | 1099 immediately after a request. |
| 1098 | 1100 |
| 1099 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1101 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1100 default. The new `autoCompress` property can be set to `true` to re-enable | 1102 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1101 compression. | 1103 compression. |
| 1102 | 1104 |
| 1103 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1105 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1104 which controls how it resolves `package:` URIs. | 1106 which controls how it resolves `package:` URIs. |
| OLD | NEW |