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

Side by Side Diff: CHANGELOG.md

Issue 2552373003: Start working on Version 1.22 of Dart (Closed)
Patch Set: Created 4 years 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 | tools/VERSION » ('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.21.0 1 ## 1.21.0 - 2016-12-07
2 2
3 ### Language 3 ### Language
4 4
5 * Support generic method syntax. Type arguments are not available at 5 * Support generic method syntax. Type arguments are not available at
6 runtime. For details, check the 6 runtime. For details, check the
7 [informal specification](https://gist.github.com/eernstg/4353d7b4f669745bed3a5 423e04a453c). 7 [informal specification](https://gist.github.com/eernstg/4353d7b4f669745bed3a5 423e04a453c).
8 * Support access to initializing formals, e.g., the use of `x` to initialize 8 * Support access to initializing formals, e.g., the use of `x` to initialize
9 `y` in `class C { var x, y; C(this.x): y = x; }`. 9 `y` in `class C { var x, y; C(this.x): y = x; }`.
10 Please check the 10 Please check the
11 [informal specification](https://gist.github.com/eernstg/cff159be9e34d5ea295d8 c24b1a3e594) 11 [informal specification](https://gist.github.com/eernstg/cff159be9e34d5ea295d8 c24b1a3e594)
(...skipping 1371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1383 they will keep the Dart process alive until they time out. This fixes the 1383 they will keep the Dart process alive until they time out. This fixes the
1384 handling of persistent connections. Previously, the client would shut down 1384 handling of persistent connections. Previously, the client would shut down
1385 immediately after a request. 1385 immediately after a request.
1386 1386
1387 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1387 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1388 default. The new `autoCompress` property can be set to `true` to re-enable 1388 default. The new `autoCompress` property can be set to `true` to re-enable
1389 compression. 1389 compression.
1390 1390
1391 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1391 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1392 which controls how it resolves `package:` URIs. 1392 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | tools/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698