| OLD | NEW |
| 1 ## 1.19.0 | 1 ## 1.19.0 |
| 2 | 2 |
| 3 ### Language changes | 3 ### Language changes |
| 4 | 4 |
| 5 * The language now allows a trailing comma after the last argument of a call and | 5 * The language now allows a trailing comma after the last argument of a call and |
| 6 the last parameter of a function declaration. This can make long argument or | 6 the last parameter of a function declaration. This can make long argument or |
| 7 parameter lists easier to maintain, as commas can be left as-is when | 7 parameter lists easier to maintain, as commas can be left as-is when |
| 8 reordering lines. For details, see SDK issue | 8 reordering lines. For details, see SDK issue |
| 9 [26644](https://github.com/dart-lang/sdk/issues/26644). | 9 [26644](https://github.com/dart-lang/sdk/issues/26644). |
| 10 | 10 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 dependencies: | 121 dependencies: |
| 122 flutter_driver: | 122 flutter_driver: |
| 123 sdk: flutter | 123 sdk: flutter |
| 124 version: ^0.0.1 | 124 version: ^0.0.1 |
| 125 | 125 |
| 126 A Flutter `sdk` dependency will only be satisfiable when pub is running in | 126 A Flutter `sdk` dependency will only be satisfiable when pub is running in |
| 127 the context of the `flutter` executable, and when the Flutter SDK contains a | 127 the context of the `flutter` executable, and when the Flutter SDK contains a |
| 128 package with the given name whose version matches the constraint. | 128 package with the given name whose version matches the constraint. |
| 129 | 129 |
| 130 * Added a `--no-packages-dir` flag to `pub get`, `pub upgrade`, and `pub |
| 131 downgrade`. When this flag is passed, pub will not generate a `packages/` |
| 132 directory, and will remove that directory and any symlinks to it if they |
| 133 exist. Note that this replaces the unsupported `--no-package-symlinks` flag. |
| 134 |
| 130 * `tar` files on Linux are now created with `0` as the user and group IDs. | 135 * `tar` files on Linux are now created with `0` as the user and group IDs. |
| 131 This fixes a crash when publishing packages while using Active Directory. | 136 This fixes a crash when publishing packages while using Active Directory. |
| 132 | 137 |
| 133 * Fixed a bug where packages from a hosted HTTP URL were considered the same | 138 * Fixed a bug where packages from a hosted HTTP URL were considered the same |
| 134 as packages from an otherwise-identical HTTPS URL. | 139 as packages from an otherwise-identical HTTPS URL. |
| 135 | 140 |
| 136 * Fixed timer formatting for timers that lasted longer than a minute. | 141 * Fixed timer formatting for timers that lasted longer than a minute. |
| 137 | 142 |
| 138 * Eliminate some false negatives when determining whether global executables | 143 * Eliminate some false negatives when determining whether global executables |
| 139 are on the user's executable path. | 144 are on the user's executable path. |
| (...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1192 they will keep the Dart process alive until they time out. This fixes the | 1197 they will keep the Dart process alive until they time out. This fixes the |
| 1193 handling of persistent connections. Previously, the client would shut down | 1198 handling of persistent connections. Previously, the client would shut down |
| 1194 immediately after a request. | 1199 immediately after a request. |
| 1195 | 1200 |
| 1196 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1201 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1197 default. The new `autoCompress` property can be set to `true` to re-enable | 1202 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1198 compression. | 1203 compression. |
| 1199 | 1204 |
| 1200 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1205 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1201 which controls how it resolves `package:` URIs. | 1206 which controls how it resolves `package:` URIs. |
| OLD | NEW |