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

Side by Side Diff: CHANGELOG.md

Issue 2447173005: Add changes to switch cases warnings to CHANGELOG.md. (Closed)
Patch Set: Merge correctly. Created 4 years, 1 month 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.21.0 1 ## 1.21.0
2 2
3 ### Language 3 ### Language
4 4
5 * Don't warn about switch case fallthrough if the case ends in a `rethrow`
6 statement.
7 * Also don't warn if the entire switch case is wrapped in braces - as long as
8 the block ends with a `break`, `continue`, `rethrow`, `return` or `throw`.
5 * Allow `=` as well as `:` as separator for named parameter default values. 9 * Allow `=` as well as `:` as separator for named parameter default values.
6 10
7 ### Core library changes 11 ### Core library changes
8 12
9 * `dart:core`: `Set.difference` now takes a `Set<Object>` as argument. 13 * `dart:core`: `Set.difference` now takes a `Set<Object>` as argument.
10 14
11 * `dart:developer`: 15 * `dart:developer`:
12 * The service protocol http server can now be controlled from Dart code. 16 * The service protocol http server can now be controlled from Dart code.
13 17
14 ## 1.20.1 - 2016-10-13 18 ## 1.20.1 - 2016-10-13
(...skipping 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after
1348 they will keep the Dart process alive until they time out. This fixes the 1352 they will keep the Dart process alive until they time out. This fixes the
1349 handling of persistent connections. Previously, the client would shut down 1353 handling of persistent connections. Previously, the client would shut down
1350 immediately after a request. 1354 immediately after a request.
1351 1355
1352 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1356 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1353 default. The new `autoCompress` property can be set to `true` to re-enable 1357 default. The new `autoCompress` property can be set to `true` to re-enable
1354 compression. 1358 compression.
1355 1359
1356 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1360 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1357 which controls how it resolves `package:` URIs. 1361 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