OLD | NEW |
1 ## 1.15.0 | 1 ## 1.15.0 |
2 | 2 |
3 ### Core library changes | 3 ### Core library changes |
4 | 4 |
5 * `dart:async` | 5 * `dart:async` |
6 * Made `StreamView` class a `const` class. | 6 * Made `StreamView` class a `const` class. |
7 | 7 |
8 * `dart:core` | 8 * `dart:core` |
9 * Added `Uri.queryParametersAll` to handle multiple query parameters with | 9 * Added `Uri.queryParametersAll` to handle multiple query parameters with |
10 the same name. | 10 the same name. |
11 | 11 |
12 * `dart:io` | 12 * `dart:io` |
13 * Added `SecurityContext.usePrivateKeyBytes`, | 13 * Added `SecurityContext.usePrivateKeyBytes`, |
14 `SecurityContext.useCertificateChainBytes`, | 14 `SecurityContext.useCertificateChainBytes`, |
15 `SecurityContext.setTrustedCertificatesBytes`, and | 15 `SecurityContext.setTrustedCertificatesBytes`, and |
16 `SecurityContext.setClientAuthoritiesBytes`. | 16 `SecurityContext.setClientAuthoritiesBytes`. |
17 * **Breaking** The named `directory` argument of | 17 * **Breaking** The named `directory` argument of |
18 `SecurityContext.setTrustedCertificates` has been removed. | 18 `SecurityContext.setTrustedCertificates` has been removed. |
19 * Added support to `SecurityContext` for PKCS12 certificate and key | 19 * Added support to `SecurityContext` for PKCS12 certificate and key |
20 containers. | 20 containers. |
21 * All calls in `SecurityContext` that accept certificate data now accept an | 21 * All calls in `SecurityContext` that accept certificate data now accept an |
22 optional named parameter `password`, similar to | 22 optional named parameter `password`, similar to |
23 `SecurityContext.usePrivateKeyBytes`, for use as the password for PKCS12 | 23 `SecurityContext.usePrivateKeyBytes`, for use as the password for PKCS12 |
24 data. | 24 data. |
25 | 25 |
| 26 ### Dartium |
| 27 |
| 28 * The Chrome-based tools that ship as part of the Dart SDK – Dartium and |
| 29 content shell – are now based on Chrome version 45 (instead of Chrome 39). |
| 30 * Dart browser libraries (`dart:html`, `dart:svg`, etc) have not been updated. |
| 31 * These are still based on Chrome 39. |
| 32 * These APIs will be updated in a future release. |
| 33 * Note that there are experimental APIs which have changed in the underlying |
| 34 browser, and will not work with the older libraries. |
| 35 For example, `Element.animate`. |
| 36 |
26 ### Service protocol changes | 37 ### Service protocol changes |
27 | 38 |
28 * Fixed a documentation bug where the field `extensionRPCs` in `Isolate` | 39 * Fixed a documentation bug where the field `extensionRPCs` in `Isolate` |
29 was not marked optional. | 40 was not marked optional. |
30 | 41 |
31 ### Experimental language features | 42 ### Experimental language features |
32 * Added support for [configuration-specific imports](https://github.com/munifi
cent/dep-interface-libraries/blob/master/Proposal.md). | 43 * 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`
. | 44 On the VM and `dart2js`, they can be enabled with `--conditional-directives`
. |
34 | 45 |
35 The analyzer requires additional configuration: | 46 The analyzer requires additional configuration: |
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 they will keep the Dart process alive until they time out. This fixes the | 823 they will keep the Dart process alive until they time out. This fixes the |
813 handling of persistent connections. Previously, the client would shut down | 824 handling of persistent connections. Previously, the client would shut down |
814 immediately after a request. | 825 immediately after a request. |
815 | 826 |
816 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 827 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
817 default. The new `autoCompress` property can be set to `true` to re-enable | 828 default. The new `autoCompress` property can be set to `true` to re-enable |
818 compression. | 829 compression. |
819 | 830 |
820 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 831 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
821 which controls how it resolves `package:` URIs. | 832 which controls how it resolves `package:` URIs. |
OLD | NEW |