| OLD | NEW |
| 1 ## 1.19.0 | 1 ## 1.19.0 |
| 2 | 2 |
| 3 ### Core library changes |
| 4 |
| 5 * `dart:io` |
| 6 * Report a better error when a bind fails because of a bad source address. |
| 7 |
| 3 ### Tool Changes | 8 ### Tool Changes |
| 4 | 9 |
| 5 * `dartfmt` - upgraded to v0.2.9 | 10 * `dartfmt` - upgraded to v0.2.9 |
| 6 * Support trailing commas in argument and parameter lists. | 11 * Support trailing commas in argument and parameter lists. |
| 7 * Gracefully handle read-only files. | 12 * Gracefully handle read-only files. |
| 8 * About a dozen other bug fixes. | 13 * About a dozen other bug fixes. |
| 9 | 14 |
| 10 * Pub | 15 * Pub |
| 11 * Added the ability for packages to declare a constraint on the [Flutter][] | 16 * Added the ability for packages to declare a constraint on the [Flutter][] |
| 12 SDK: | 17 SDK: |
| (...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1077 they will keep the Dart process alive until they time out. This fixes the | 1082 they will keep the Dart process alive until they time out. This fixes the |
| 1078 handling of persistent connections. Previously, the client would shut down | 1083 handling of persistent connections. Previously, the client would shut down |
| 1079 immediately after a request. | 1084 immediately after a request. |
| 1080 | 1085 |
| 1081 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1086 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1082 default. The new `autoCompress` property can be set to `true` to re-enable | 1087 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1083 compression. | 1088 compression. |
| 1084 | 1089 |
| 1085 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1090 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1086 which controls how it resolves `package:` URIs. | 1091 which controls how it resolves `package:` URIs. |
| OLD | NEW |