Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 1.15.0 | 1 ## 1.15.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 * Added `Uri.queryParametersAll` to handle multiple query parameters with | 4 * Added `Uri.queryParametersAll` to handle multiple query parameters with |
| 5 the same name. | 5 the same name. |
| 6 | 6 |
| 7 ## 1.14.1 - 2016-02-04 | |
| 8 | |
| 9 Patch release, resolves one issue: | |
| 10 | |
| 11 * Debugger: Fixes a VM crash when a debugger attempts to set a break point | |
| 12 during isolate initialization. | |
| 13 (SDK issue [25618](https://github.com/dart-lang/sdk/issues/25618)) | |
| 14 | |
|
Bill Hesse
2016/02/04 14:22:26
extra blank line.
| |
| 15 | |
| 7 ## 1.14.0 - 2016-01-28 | 16 ## 1.14.0 - 2016-01-28 |
| 8 | 17 |
| 9 ### Core library changes | 18 ### Core library changes |
| 10 * `dart:async` | 19 * `dart:async` |
| 11 * Added `Future.any` static method. | 20 * Added `Future.any` static method. |
| 12 * Added `Stream.fromFutures` constructor. | 21 * Added `Stream.fromFutures` constructor. |
| 13 | 22 |
| 14 * `dart:convert` | 23 * `dart:convert` |
| 15 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. | 24 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. |
| 16 | 25 |
| (...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 760 they will keep the Dart process alive until they time out. This fixes the | 769 they will keep the Dart process alive until they time out. This fixes the |
| 761 handling of persistent connections. Previously, the client would shut down | 770 handling of persistent connections. Previously, the client would shut down |
| 762 immediately after a request. | 771 immediately after a request. |
| 763 | 772 |
| 764 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 773 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 765 default. The new `autoCompress` property can be set to `true` to re-enable | 774 default. The new `autoCompress` property can be set to `true` to re-enable |
| 766 compression. | 775 compression. |
| 767 | 776 |
| 768 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 777 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 769 which controls how it resolves `package:` URIs. | 778 which controls how it resolves `package:` URIs. |
| OLD | NEW |