| OLD | NEW |
| 1 ## 1.19.0 | 1 ## 1.19.0 |
| 2 | 2 |
| 3 ### Tool Changes | 3 ### Tool Changes |
| 4 | 4 |
| 5 * `dartfmt` - upgraded to v0.2.9 |
| 6 * Support trailing commas in argument and parameter lists. |
| 7 * Gracefully handle read-only files. |
| 8 * About a dozen other bug fixes. |
| 9 |
| 5 * Pub | 10 * Pub |
| 6 * Added the ability for packages to declare a constraint on the [Flutter][] | 11 * Added the ability for packages to declare a constraint on the [Flutter][] |
| 7 SDK: | 12 SDK: |
| 8 | 13 |
| 9 environment: | 14 environment: |
| 10 flutter: ^0.1.2 | 15 flutter: ^0.1.2 |
| 11 sdk: >=1.19.0 <2.0.0 | 16 sdk: >=1.19.0 <2.0.0 |
| 12 | 17 |
| 13 A Flutter constraint will only be satisfiable when pub is running in the | 18 A Flutter constraint will only be satisfiable when pub is running in the |
| 14 context of the `flutter` executable, and when the Flutter SDK version | 19 context of the `flutter` executable, and when the Flutter SDK version |
| (...skipping 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1072 they will keep the Dart process alive until they time out. This fixes the | 1077 they will keep the Dart process alive until they time out. This fixes the |
| 1073 handling of persistent connections. Previously, the client would shut down | 1078 handling of persistent connections. Previously, the client would shut down |
| 1074 immediately after a request. | 1079 immediately after a request. |
| 1075 | 1080 |
| 1076 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1081 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1077 default. The new `autoCompress` property can be set to `true` to re-enable | 1082 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1078 compression. | 1083 compression. |
| 1079 | 1084 |
| 1080 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1085 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1081 which controls how it resolves `package:` URIs. | 1086 which controls how it resolves `package:` URIs. |
| OLD | NEW |