OLD | NEW |
| 1 ## 1.18.0 |
| 2 |
| 3 ### Core library changes |
| 4 |
| 5 * `dart:io` |
| 6 * Adds file locking modes `FileLock.BLOCKING_SHARED` and |
| 7 `FileLock.BLOCKING_EXCLUSIVE`. |
| 8 |
1 ## 1.17.1 - 2016-06-10 | 9 ## 1.17.1 - 2016-06-10 |
2 | 10 |
3 Patch release, resolves two issues: | 11 Patch release, resolves two issues: |
4 | 12 |
5 * VM: Fixes a bug that caused crashes in async functions. | 13 * VM: Fixes a bug that caused crashes in async functions. |
6 (SDK issue [26668](https://github.com/dart-lang/sdk/issues/26668)) | 14 (SDK issue [26668](https://github.com/dart-lang/sdk/issues/26668)) |
7 | 15 |
8 * VM: Fixes a bug that caused garbage collection of reachable weak properties. | 16 * VM: Fixes a bug that caused garbage collection of reachable weak properties. |
9 (https://codereview.chromium.org/2041413005) | 17 (https://codereview.chromium.org/2041413005) |
10 | 18 |
(...skipping 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1026 they will keep the Dart process alive until they time out. This fixes the | 1034 they will keep the Dart process alive until they time out. This fixes the |
1027 handling of persistent connections. Previously, the client would shut down | 1035 handling of persistent connections. Previously, the client would shut down |
1028 immediately after a request. | 1036 immediately after a request. |
1029 | 1037 |
1030 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1038 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
1031 default. The new `autoCompress` property can be set to `true` to re-enable | 1039 default. The new `autoCompress` property can be set to `true` to re-enable |
1032 compression. | 1040 compression. |
1033 | 1041 |
1034 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1042 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
1035 which controls how it resolves `package:` URIs. | 1043 which controls how it resolves `package:` URIs. |
OLD | NEW |