| OLD | NEW |
| 1 ## 1.15.0 | 1 ## 1.15.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 * Added `Uri.queryParametersAll` to handle multiple query parameters with | 4 * Added `Uri.queryParametersAll` to handle multiple query parameters with |
| 5 the same name. | 5 the same name. |
| 6 | 6 |
| 7 * `dart:io` | 7 * `dart:io` |
| 8 * Added `SecurityContext.usePrivateKeyBytes`, | 8 * Added `SecurityContext.usePrivateKeyBytes`, |
| 9 `SecurityContext.useCertificateChainBytes`, | 9 `SecurityContext.useCertificateChainBytes`, |
| 10 `SecurityContext.setTrustedCertificatesBytes`, and | 10 `SecurityContext.setTrustedCertificatesBytes`, and |
| 11 `SecurityContext.setClientAuthoritiesBytes`. | 11 `SecurityContext.setClientAuthoritiesBytes`. |
| 12 * The non-`Bytes` methods of `SecurityContext` are being renamed -`Sync`, as | 12 * The non-`Bytes` methods of `SecurityContext` are being renamed -`Sync`, as |
| 13 they will do synchronous IO. The non-`Bytes` and non-`Sync` methods are | 13 they will do synchronous IO. The non-`Bytes` and non-`Sync` methods are |
| 14 deprecated and will be removed in a later release. | 14 deprecated and will be removed in a later release. |
| 15 * **Breaking** The named `directory` argument of | 15 * **Breaking** The named `directory` argument of |
| 16 `SecurityContext.setTrustedCertificates` is no longer supported. | 16 `SecurityContext.setTrustedCertificates` is no longer supported. |
| 17 The method now only supports one argument for the PEM file name containing | 17 The method now only supports one argument for the PEM file name containing |
| 18 the trusted certificates. | 18 the trusted certificates. |
| 19 * Added support to SecurityContext for PKCS12 certificate and key containers. | 19 * Added support to SecurityContext for PKCS12 certificate and key containers. |
| 20 * All calls in `SecurityContext` that accept certificate data now accept an |
| 21 optional named parameter `password`, similar to |
| 22 `SecurityContext.usePrivateKeyBytes`, for use as the password for PKCS12 |
| 23 data. |
| 20 * `dart:async` | 24 * `dart:async` |
| 21 * Made `StreamView` class a `const` class. | 25 * Made `StreamView` class a `const` class. |
| 22 | 26 |
| 23 ## 1.14.2 - 2016-02-09 | 27 ## 1.14.2 - 2016-02-09 |
| 24 | 28 |
| 25 * Fixes a bug where pub would download packages from pub.dartlang.org even when | 29 * Fixes a bug where pub would download packages from pub.dartlang.org even when |
| 26 a different hosted URL was specified. | 30 a different hosted URL was specified. |
| 27 | 31 |
| 28 ## 1.14.1 - 2016-02-04 | 32 ## 1.14.1 - 2016-02-04 |
| 29 | 33 |
| (...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 they will keep the Dart process alive until they time out. This fixes the | 793 they will keep the Dart process alive until they time out. This fixes the |
| 790 handling of persistent connections. Previously, the client would shut down | 794 handling of persistent connections. Previously, the client would shut down |
| 791 immediately after a request. | 795 immediately after a request. |
| 792 | 796 |
| 793 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 797 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 794 default. The new `autoCompress` property can be set to `true` to re-enable | 798 default. The new `autoCompress` property can be set to `true` to re-enable |
| 795 compression. | 799 compression. |
| 796 | 800 |
| 797 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 801 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 798 which controls how it resolves `package:` URIs. | 802 which controls how it resolves `package:` URIs. |
| OLD | NEW |