updated ordering of changelog items

R=floitsch@google.com

Review URL: https://codereview.chromium.org/1745223002 .
This commit is contained in:
Kevin Moore 2016-02-29 13:19:06 -08:00
parent 2d94021a68
commit 6437886ef9

View file

@ -5,7 +5,7 @@
On the VM and dart2js, they can be enabled with `--conditional-directives`.
The analyzer requires an additional option in an `options` file:
```
```yaml
analyzer:
language:
enableConditionalDirectives: true
@ -13,14 +13,19 @@
Then run the analyzer with `--options=<path-to-options-file>`.
### Core library changes
* Added `Uri.queryParametersAll` to handle multiple query parameters with
the same name.
* `dart:async`
* Made `StreamView` class a `const` class.
* `dart:core`
* Added `Uri.queryParametersAll` to handle multiple query parameters with
the same name.
* `dart:io`
* Added `SecurityContext.usePrivateKeyBytes`,
`SecurityContext.useCertificateChainBytes`,
`SecurityContext.setTrustedCertificatesBytes`, and
`SecurityContext.setClientAuthoritiesBytes`.
`SecurityContext.useCertificateChainBytes`,
`SecurityContext.setTrustedCertificatesBytes`, and
`SecurityContext.setClientAuthoritiesBytes`.
* The non-`Bytes` methods of `SecurityContext` are being renamed -`Sync`, as
they will do synchronous IO. The non-`Bytes` and non-`Sync` methods are
deprecated and will be removed in a later release.
@ -28,13 +33,12 @@
`SecurityContext.setTrustedCertificates` is no longer supported.
The method now only supports one argument for the PEM file name containing
the trusted certificates.
* Added support to SecurityContext for PKCS12 certificate and key containers.
* Added support to `SecurityContext` for PKCS12 certificate and key
containers.
* All calls in `SecurityContext` that accept certificate data now accept an
optional named parameter `password`, similar to
`SecurityContext.usePrivateKeyBytes`, for use as the password for PKCS12
data.
* `dart:async`
* Made `StreamView` class a `const` class.
## 1.14.2 - 2016-02-09