| 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.0 | 7 ## 1.14.0 - 2016-01-28 |
| 8 | 8 |
| 9 ### Core library changes | 9 ### Core library changes |
| 10 * `dart:async` | 10 * `dart:async` |
| 11 * Added `Future.any` static method. | 11 * Added `Future.any` static method. |
| 12 * Added `Stream.fromFutures` constructor. | 12 * Added `Stream.fromFutures` constructor. |
| 13 | 13 |
| 14 * `dart:convert` | 14 * `dart:convert` |
| 15 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. | 15 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. |
| 16 | 16 |
| 17 * `dart:core` | 17 * `dart:core` |
| (...skipping 742 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 | 760 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 | 761 handling of persistent connections. Previously, the client would shut down |
| 762 immediately after a request. | 762 immediately after a request. |
| 763 | 763 |
| 764 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 764 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 765 default. The new `autoCompress` property can be set to `true` to re-enable | 765 default. The new `autoCompress` property can be set to `true` to re-enable |
| 766 compression. | 766 compression. |
| 767 | 767 |
| 768 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 768 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 769 which controls how it resolves `package:` URIs. | 769 which controls how it resolves `package:` URIs. |
| OLD | NEW |