| OLD | NEW |
| 1 ## 1.15.0 | 1 ## 1.15.0 |
| 2 | 2 |
| 3 ### Language features | 3 ### Language features |
| 4 * Added support for [configuration-specific imports](https://github.com/munifice
nt/dep-interface-libraries/blob/master/Proposal.md). | 4 * Added support for [configuration-specific imports](https://github.com/munifice
nt/dep-interface-libraries/blob/master/Proposal.md). |
| 5 On the VM and dart2js, they can be enabled with `--conditional-directives`. | 5 On the VM and dart2js, they can be enabled with `--conditional-directives`. |
| 6 | 6 |
| 7 The analyzer requires an additional option in an `options` file: | 7 The analyzer requires an additional option in an `options` file: |
| 8 ``` | 8 ```yaml |
| 9 analyzer: | 9 analyzer: |
| 10 language: | 10 language: |
| 11 enableConditionalDirectives: true | 11 enableConditionalDirectives: true |
| 12 ``` | 12 ``` |
| 13 Then run the analyzer with `--options=<path-to-options-file>`. | 13 Then run the analyzer with `--options=<path-to-options-file>`. |
| 14 | 14 |
| 15 ### Core library changes | 15 ### Core library changes |
| 16 * Added `Uri.queryParametersAll` to handle multiple query parameters with | 16 |
| 17 the same name. | 17 * `dart:async` |
| 18 * Made `StreamView` class a `const` class. |
| 19 |
| 20 * `dart:core` |
| 21 * Added `Uri.queryParametersAll` to handle multiple query parameters with |
| 22 the same name. |
| 18 | 23 |
| 19 * `dart:io` | 24 * `dart:io` |
| 20 * Added `SecurityContext.usePrivateKeyBytes`, | 25 * Added `SecurityContext.usePrivateKeyBytes`, |
| 21 `SecurityContext.useCertificateChainBytes`, | 26 `SecurityContext.useCertificateChainBytes`, |
| 22 `SecurityContext.setTrustedCertificatesBytes`, and | 27 `SecurityContext.setTrustedCertificatesBytes`, and |
| 23 `SecurityContext.setClientAuthoritiesBytes`. | 28 `SecurityContext.setClientAuthoritiesBytes`. |
| 24 * The non-`Bytes` methods of `SecurityContext` are being renamed -`Sync`, as | 29 * The non-`Bytes` methods of `SecurityContext` are being renamed -`Sync`, as |
| 25 they will do synchronous IO. The non-`Bytes` and non-`Sync` methods are | 30 they will do synchronous IO. The non-`Bytes` and non-`Sync` methods are |
| 26 deprecated and will be removed in a later release. | 31 deprecated and will be removed in a later release. |
| 27 * **Breaking** The named `directory` argument of | 32 * **Breaking** The named `directory` argument of |
| 28 `SecurityContext.setTrustedCertificates` is no longer supported. | 33 `SecurityContext.setTrustedCertificates` is no longer supported. |
| 29 The method now only supports one argument for the PEM file name containing | 34 The method now only supports one argument for the PEM file name containing |
| 30 the trusted certificates. | 35 the trusted certificates. |
| 31 * Added support to SecurityContext for PKCS12 certificate and key containers. | 36 * Added support to `SecurityContext` for PKCS12 certificate and key |
| 37 containers. |
| 32 * All calls in `SecurityContext` that accept certificate data now accept an | 38 * All calls in `SecurityContext` that accept certificate data now accept an |
| 33 optional named parameter `password`, similar to | 39 optional named parameter `password`, similar to |
| 34 `SecurityContext.usePrivateKeyBytes`, for use as the password for PKCS12 | 40 `SecurityContext.usePrivateKeyBytes`, for use as the password for PKCS12 |
| 35 data. | 41 data. |
| 36 * `dart:async` | |
| 37 * Made `StreamView` class a `const` class. | |
| 38 | 42 |
| 39 ## 1.14.2 - 2016-02-09 | 43 ## 1.14.2 - 2016-02-09 |
| 40 | 44 |
| 41 * Fixes a bug where pub would download packages from pub.dartlang.org even when | 45 * Fixes a bug where pub would download packages from pub.dartlang.org even when |
| 42 a different hosted URL was specified. | 46 a different hosted URL was specified. |
| 43 | 47 |
| 44 ## 1.14.1 - 2016-02-04 | 48 ## 1.14.1 - 2016-02-04 |
| 45 | 49 |
| 46 Patch release, resolves one issue: | 50 Patch release, resolves one issue: |
| 47 | 51 |
| (...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 805 they will keep the Dart process alive until they time out. This fixes the | 809 they will keep the Dart process alive until they time out. This fixes the |
| 806 handling of persistent connections. Previously, the client would shut down | 810 handling of persistent connections. Previously, the client would shut down |
| 807 immediately after a request. | 811 immediately after a request. |
| 808 | 812 |
| 809 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 813 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 810 default. The new `autoCompress` property can be set to `true` to re-enable | 814 default. The new `autoCompress` property can be set to `true` to re-enable |
| 811 compression. | 815 compression. |
| 812 | 816 |
| 813 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 817 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 814 which controls how it resolves `package:` URIs. | 818 which controls how it resolves `package:` URIs. |
| OLD | NEW |