Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 1.21.0 | 1 ## 1.21.0 |
| 2 ### Core library changes | 2 ### Core library changes |
|
kevmoo
2016/10/20 23:57:54
Weird!
I think this is a rebase bork.
Lang chang
| |
| 3 | 3 |
| 4 * `dart:core`: `Set.difference` now takes a `Set<Object>` as argument. | 4 * `dart:core`: `Set.difference` now takes a `Set<Object>` as argument. |
| 5 | 5 |
| 6 * `dart:developer` | |
| 7 * The service protocol http server can now be controlled from Dart code. | |
| 8 | |
|
siva
2016/10/21 16:15:06
I am wondering about whether we need to highlight
| |
| 6 ### Language | 9 ### Language |
| 7 | 10 |
| 8 * Allow `=` as well as `:` as separator for named parameter default values. | 11 * Allow `=` as well as `:` as separator for named parameter default values. |
| 9 | 12 |
| 10 ## 1.20.1 - 2016-10-13 | 13 ## 1.20.1 - 2016-10-13 |
| 11 | 14 |
| 12 Patch release, resolves one issue: | 15 Patch release, resolves one issue: |
| 13 | 16 |
| 14 * Dartium: Fixes a bug that caused crashes. No issue filed | 17 * Dartium: Fixes a bug that caused crashes. No issue filed |
| 15 | 18 |
| (...skipping 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1344 they will keep the Dart process alive until they time out. This fixes the | 1347 they will keep the Dart process alive until they time out. This fixes the |
| 1345 handling of persistent connections. Previously, the client would shut down | 1348 handling of persistent connections. Previously, the client would shut down |
| 1346 immediately after a request. | 1349 immediately after a request. |
| 1347 | 1350 |
| 1348 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1351 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1349 default. The new `autoCompress` property can be set to `true` to re-enable | 1352 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1350 compression. | 1353 compression. |
| 1351 | 1354 |
| 1352 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1355 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1353 which controls how it resolves `package:` URIs. | 1356 which controls how it resolves `package:` URIs. |
| OLD | NEW |