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. (SDK issue [25618](https://github.com/dart-lang/s dk/issues/25618)) | |
|
Bill Hesse
2016/02/04 14:22:25
long line
| |
| 13 | |
| 14 | |
| 7 ## 1.14.0 - 2016-01-28 | 15 ## 1.14.0 - 2016-01-28 |
| 8 | 16 |
| 9 ### Core library changes | 17 ### Core library changes |
| 10 * `dart:async` | 18 * `dart:async` |
| 11 * Added `Future.any` static method. | 19 * Added `Future.any` static method. |
| 12 * Added `Stream.fromFutures` constructor. | 20 * Added `Stream.fromFutures` constructor. |
| 13 | 21 |
| 14 * `dart:convert` | 22 * `dart:convert` |
| 15 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. | 23 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. |
| 16 | 24 |
| (...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 | 768 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 | 769 handling of persistent connections. Previously, the client would shut down |
| 762 immediately after a request. | 770 immediately after a request. |
| 763 | 771 |
| 764 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 772 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 765 default. The new `autoCompress` property can be set to `true` to re-enable | 773 default. The new `autoCompress` property can be set to `true` to re-enable |
| 766 compression. | 774 compression. |
| 767 | 775 |
| 768 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 776 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 769 which controls how it resolves `package:` URIs. | 777 which controls how it resolves `package:` URIs. |
| OLD | NEW |