| OLD | NEW |
| 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 Loading... |
| 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. |
| OLD | NEW |