Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(658)

Side by Side Diff: CHANGELOG.md

Issue 2252493002: Bring in the latest pub. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 * `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.
132
130 * Fixed a bug where packages from a hosted HTTP URL were considered the same 133 * Fixed a bug where packages from a hosted HTTP URL were considered the same
131 as packages from an otherwise-identical HTTPS URL. 134 as packages from an otherwise-identical HTTPS URL.
132 135
133 * Fixed timer formatting for timers that lasted longer than a minute. 136 * Fixed timer formatting for timers that lasted longer than a minute.
134 137
135 * Eliminate some false negatives when determining whether global executables 138 * Eliminate some false negatives when determining whether global executables
136 are on the user's executable path. 139 are on the user's executable path.
137 140
138 * dart2dart (aka `dart2js --output-type=dart`) has been removed (this was 141 * dart2dart (aka `dart2js --output-type=dart`) has been removed (this was
139 deprecated in Dart 1.11) 142 deprecated in Dart 1.11)
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after
1189 they will keep the Dart process alive until they time out. This fixes the 1192 they will keep the Dart process alive until they time out. This fixes the
1190 handling of persistent connections. Previously, the client would shut down 1193 handling of persistent connections. Previously, the client would shut down
1191 immediately after a request. 1194 immediately after a request.
1192 1195
1193 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1196 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1194 default. The new `autoCompress` property can be set to `true` to re-enable 1197 default. The new `autoCompress` property can be set to `true` to re-enable
1195 compression. 1198 compression.
1196 1199
1197 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1200 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1198 which controls how it resolves `package:` URIs. 1201 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698