Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 1.19.0 | 1 ## 1.19.0 |
| 2 | 2 |
| 3 ### Core library changes | |
| 4 | |
| 5 * `dart:io` | |
| 6 * `Socket.connect` with source-address argument is now non-blocking. | |
|
Søren Gjesse
2016/08/04 13:40:29
This is "on Mac as well"
floitsch
2016/08/04 13:59:18
Changed to:
`Socket.connect` with source-address
| |
| 7 | |
| 3 ### Tool Changes | 8 ### Tool Changes |
| 4 | 9 |
| 5 * `dartfmt` - upgraded to v0.2.9 | 10 * `dartfmt` - upgraded to v0.2.9 |
| 6 * Support trailing commas in argument and parameter lists. | 11 * Support trailing commas in argument and parameter lists. |
| 7 * Gracefully handle read-only files. | 12 * Gracefully handle read-only files. |
| 8 * About a dozen other bug fixes. | 13 * About a dozen other bug fixes. |
| 9 | 14 |
| 10 * Pub | 15 * Pub |
| 11 * Added the ability for packages to declare a constraint on the [Flutter][] | 16 * Added the ability for packages to declare a constraint on the [Flutter][] |
| 12 SDK: | 17 SDK: |
| (...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1090 they will keep the Dart process alive until they time out. This fixes the | 1095 they will keep the Dart process alive until they time out. This fixes the |
| 1091 handling of persistent connections. Previously, the client would shut down | 1096 handling of persistent connections. Previously, the client would shut down |
| 1092 immediately after a request. | 1097 immediately after a request. |
| 1093 | 1098 |
| 1094 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1099 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 1095 default. The new `autoCompress` property can be set to `true` to re-enable | 1100 default. The new `autoCompress` property can be set to `true` to re-enable |
| 1096 compression. | 1101 compression. |
| 1097 | 1102 |
| 1098 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1103 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 1099 which controls how it resolves `package:` URIs. | 1104 which controls how it resolves `package:` URIs. |
| OLD | NEW |