Chromium Code Reviews| 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 * Something about experimental APIs?... | |
|
kevmoo
2016/03/03 19:02:52
Terry: do we have idea about the experimental APIs
Alan Knight
2016/03/03 19:20:40
Note that there are experimental APIs which have c
kevmoo
2016/03/03 19:41:34
Done.
| |
| 34 | |
| 26 ### Service protocol changes | 35 ### Service protocol changes |
| 27 | 36 |
| 28 * Fixed a documentation bug where the field `extensionRPCs` in `Isolate` | 37 * Fixed a documentation bug where the field `extensionRPCs` in `Isolate` |
| 29 was not marked optional. | 38 was not marked optional. |
| 30 | 39 |
| 31 ### Experimental language features | 40 ### Experimental language features |
| 32 * Added support for [configuration-specific imports](https://github.com/munifi cent/dep-interface-libraries/blob/master/Proposal.md). | 41 * 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` . | 42 On the VM and `dart2js`, they can be enabled with `--conditional-directives` . |
| 34 | 43 |
| 35 The analyzer requires additional configuration: | 44 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 | 821 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 | 822 handling of persistent connections. Previously, the client would shut down |
| 814 immediately after a request. | 823 immediately after a request. |
| 815 | 824 |
| 816 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 825 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 817 default. The new `autoCompress` property can be set to `true` to re-enable | 826 default. The new `autoCompress` property can be set to `true` to re-enable |
| 818 compression. | 827 compression. |
| 819 | 828 |
| 820 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 829 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 821 which controls how it resolves `package:` URIs. | 830 which controls how it resolves `package:` URIs. |
| OLD | NEW |