| OLD | NEW |
| 1 ## 1.21.0 | 1 ## 1.21.0 |
| 2 ### Core library changes | |
| 3 | |
| 4 * `dart:core`: `Set.difference` now takes a `Set<Object>` as argument. | |
| 5 | 2 |
| 6 ### Language | 3 ### Language |
| 7 | 4 |
| 8 * Allow `=` as well as `:` as separator for named parameter default values. | 5 * Allow `=` as well as `:` as separator for named parameter default values. |
| 9 | 6 |
| 7 ### Core library changes |
| 8 |
| 9 * `dart:core`: `Set.difference` now takes a `Set<Object>` as argument. |
| 10 |
| 11 * `dart:developer`: |
| 12 * The service protocol http server can now be controlled from Dart code. |
| 13 |
| 10 ## 1.20.1 - 2016-10-13 | 14 ## 1.20.1 - 2016-10-13 |
| 11 | 15 |
| 12 Patch release, resolves one issue: | 16 Patch release, resolves one issue: |
| 13 | 17 |
| 14 * Dartium: Fixes a bug that caused crashes. No issue filed | 18 * Dartium: Fixes a bug that caused crashes. No issue filed |
| 15 | 19 |
| 16 ## 1.20.0 - 2016-10-11 | 20 ## 1.20.0 - 2016-10-11 |
| 17 | 21 |
| 18 ### Dart VM | 22 ### Dart VM |
| 19 | 23 |
| (...skipping 1324 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 | 1348 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 | 1349 handling of persistent connections. Previously, the client would shut down |
| 1346 immediately after a request. | 1350 immediately after a request. |
| 1347 | 1351 |
| 1348 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1352 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1349 default. The new `autoCompress` property can be set to `true` to re-enable | 1353 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1350 compression. | 1354 compression. |
| 1351 | 1355 |
| 1352 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1356 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1353 which controls how it resolves `package:` URIs. | 1357 which controls how it resolves `package:` URIs. |
| OLD | NEW |