Update Changelog with conditional imports.

R=kevmoo@google.com

Review URL: https://codereview.chromium.org/1749953002 .
This commit is contained in:
Florian Loitsch 2016-02-29 22:14:42 +01:00
parent d08d4d8dba
commit 1d2a46e6b4

View file

@ -1,8 +1,20 @@
## 1.15.0
### Language features
* Added support for [configuration-specific imports](https://github.com/munificent/dep-interface-libraries/blob/master/Proposal.md).
On the VM and dart2js, they can be enabled with `--conditional-directives`.
The analyzer requires an additional option in an `options` file:
```
analyzer:
language:
enableConditionalDirectives: true
```
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.
* Added `Uri.queryParametersAll` to handle multiple query parameters with
the same name.
* `dart:io`
* Added `SecurityContext.usePrivateKeyBytes`,