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

Side by Side Diff: CHANGELOG.md

Issue 2220963002: Add trailing comma support to changelog (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 | no next file » | 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
4
5 * The language now allows a final argument or parameter in an argument or
Lasse Reichstein Nielsen 2016/08/08 08:30:54 a final -> the final Or better, reorder to put the
mit 2016/08/08 09:04:18 Done.
6 parameter list to have an optional trailing comma. This can make long argument
7 or parameter lists easier to maintain, as commas can be left as-is when
8 reordering lines. For details, see SDK issue
9 [26644](https://github.com/dart-lang/sdk/issues/26644).
10
3 ### Core library changes 11 ### Core library changes
4 12
5 * `dart:io` 13 * `dart:io`
6 * `Socket.connect` with source-address argument is now non-blocking 14 * `Socket.connect` with source-address argument is now non-blocking
7 on Mac. Was already non-blocking on all other platforms. 15 on Mac. Was already non-blocking on all other platforms.
8 * Report a better error when a bind fails because of a bad source address. 16 * Report a better error when a bind fails because of a bad source address.
9 17
10 ### Strong Mode 18 ### Strong Mode
11 19
12 * New feature - an option to disable implicit casts 20 * New feature - an option to disable implicit casts
(...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1154 they will keep the Dart process alive until they time out. This fixes the 1162 they will keep the Dart process alive until they time out. This fixes the
1155 handling of persistent connections. Previously, the client would shut down 1163 handling of persistent connections. Previously, the client would shut down
1156 immediately after a request. 1164 immediately after a request.
1157 1165
1158 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1166 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1159 default. The new `autoCompress` property can be set to `true` to re-enable 1167 default. The new `autoCompress` property can be set to `true` to re-enable
1160 compression. 1168 compression.
1161 1169
1162 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1170 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1163 which controls how it resolves `package:` URIs. 1171 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698