Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: CHANGELOG.md

Issue 1764553003: Cleanup/moving around config inputs sections for 1.15 changelog (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.15.0 1 ## 1.15.0
2 2
3 ### Language features
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`.
6
7 The analyzer requires an additional option in an `options` file:
8 ```yaml
9 analyzer:
10 language:
11 enableConditionalDirectives: true
12 ```
13 Then run the analyzer with `--options=<path-to-options-file>`.
14
15 ### Core library changes 3 ### Core library changes
16 4
17 * `dart:async` 5 * `dart:async`
18 * Made `StreamView` class a `const` class. 6 * Made `StreamView` class a `const` class.
19 7
20 * `dart:core` 8 * `dart:core`
21 * Added `Uri.queryParametersAll` to handle multiple query parameters with 9 * Added `Uri.queryParametersAll` to handle multiple query parameters with
22 the same name. 10 the same name.
23 11
24 * `dart:io` 12 * `dart:io`
25 * Added `SecurityContext.usePrivateKeyBytes`, 13 * Added `SecurityContext.usePrivateKeyBytes`,
26 `SecurityContext.useCertificateChainBytes`, 14 `SecurityContext.useCertificateChainBytes`,
27 `SecurityContext.setTrustedCertificatesBytes`, and 15 `SecurityContext.setTrustedCertificatesBytes`, and
28 `SecurityContext.setClientAuthoritiesBytes`. 16 `SecurityContext.setClientAuthoritiesBytes`.
29 * **Breaking** The named `directory` argument of 17 * **Breaking** The named `directory` argument of
30 `SecurityContext.setTrustedCertificates` has been removed. 18 `SecurityContext.setTrustedCertificates` has been removed.
31 * Added support to `SecurityContext` for PKCS12 certificate and key 19 * Added support to `SecurityContext` for PKCS12 certificate and key
32 containers. 20 containers.
33 * All calls in `SecurityContext` that accept certificate data now accept an 21 * All calls in `SecurityContext` that accept certificate data now accept an
34 optional named parameter `password`, similar to 22 optional named parameter `password`, similar to
35 `SecurityContext.usePrivateKeyBytes`, for use as the password for PKCS12 23 `SecurityContext.usePrivateKeyBytes`, for use as the password for PKCS12
36 data. 24 data.
37 25
38 ### Service protocol changes 26 ### Service protocol changes
39 27
40 * Fixed a documentation bug where the field `extensionRPCs` in `Isolate` 28 * Fixed a documentation bug where the field `extensionRPCs` in `Isolate`
41 was not marked optional. 29 was not marked optional.
42 30
31 ### Experimental language features
32 * Added support for [configuration-specific imports](https://github.com/munifi cent/dep-interface-libraries/blob/master/Proposal.md).
33 On the VM and `dart2js`, they can be enabled with `--conditional-directives` .
34
35 The analyzer requires additional configuration:
36 ```yaml
37 analyzer:
38 language:
39 enableConditionalDirectives: true
40 ```
41
42 Read about [configuring the analyzer] for more details.
43
44 [configuring the analyzer]: https://github.com/dart-lang/sdk/tree/master/pkg/ana lyzer#configuring-the-analyzer
45
43 ## 1.14.2 - 2016-02-09 46 ## 1.14.2 - 2016-02-09
44 47
45 * Fixes a bug where pub would download packages from pub.dartlang.org even when 48 * Fixes a bug where pub would download packages from pub.dartlang.org even when
46 a different hosted URL was specified. 49 a different hosted URL was specified.
47 50
48 ## 1.14.1 - 2016-02-04 51 ## 1.14.1 - 2016-02-04
49 52
50 Patch release, resolves one issue: 53 Patch release, resolves one issue:
51 54
52 * Debugger: Fixes a VM crash when a debugger attempts to set a break point 55 * Debugger: Fixes a VM crash when a debugger attempts to set a break point
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 they will keep the Dart process alive until they time out. This fixes the 812 they will keep the Dart process alive until they time out. This fixes the
810 handling of persistent connections. Previously, the client would shut down 813 handling of persistent connections. Previously, the client would shut down
811 immediately after a request. 814 immediately after a request.
812 815
813 * **Breaking change:** `HttpServer` no longer compresses all traffic by 816 * **Breaking change:** `HttpServer` no longer compresses all traffic by
814 default. The new `autoCompress` property can be set to `true` to re-enable 817 default. The new `autoCompress` property can be set to `true` to re-enable
815 compression. 818 compression.
816 819
817 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 820 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
818 which controls how it resolves `package:` URIs. 821 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698