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

Side by Side Diff: CHANGELOG.md

Issue 1784443002: update version that analyzer changes landed (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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.15.0 1 ## 1.16.0
2 2
3 ### Analyzer 3 ### Analyzer
4 4
5 * Static checking of `for in` statements. These will now produce static 5 * Static checking of `for in` statements. These will now produce static
6 warnings: 6 warnings:
7 7
8 ```dart 8 ```dart
9 // Not Iterable. 9 // Not Iterable.
10 for (var i in 1234) { ... } 10 for (var i in 1234) { ... }
11 11
12 // String cannot be assigned to int. 12 // String cannot be assigned to int.
13 for (int n in <String>["a", "b"]) { ... } 13 for (int n in <String>["a", "b"]) { ... }
14 14
15 ## 1.15.0
16
15 ### Core library changes 17 ### Core library changes
16 18
17 * `dart:async` 19 * `dart:async`
18 * Made `StreamView` class a `const` class. 20 * Made `StreamView` class a `const` class.
19 21
20 * `dart:core` 22 * `dart:core`
21 * Added `Uri.queryParametersAll` to handle multiple query parameters with 23 * Added `Uri.queryParametersAll` to handle multiple query parameters with
22 the same name. 24 the same name.
23 25
24 * `dart:io` 26 * `dart:io`
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 they will keep the Dart process alive until they time out. This fixes the 837 they will keep the Dart process alive until they time out. This fixes the
836 handling of persistent connections. Previously, the client would shut down 838 handling of persistent connections. Previously, the client would shut down
837 immediately after a request. 839 immediately after a request.
838 840
839 * **Breaking change:** `HttpServer` no longer compresses all traffic by 841 * **Breaking change:** `HttpServer` no longer compresses all traffic by
840 default. The new `autoCompress` property can be set to `true` to re-enable 842 default. The new `autoCompress` property can be set to `true` to re-enable
841 compression. 843 compression.
842 844
843 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 845 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
844 which controls how it resolves `package:` URIs. 846 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