| 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 | 19 |
| 20 ## 1.14.2 - 2016-02-09 |
| 21 |
| 22 * Fixes a bug where pub would download packages from pub.dartlang.org even when |
| 23 a different hosted URL was specified. |
| 24 |
| 20 ## 1.14.1 - 2016-02-04 | 25 ## 1.14.1 - 2016-02-04 |
| 21 | 26 |
| 22 Patch release, resolves one issue: | 27 Patch release, resolves one issue: |
| 23 | 28 |
| 24 * Debugger: Fixes a VM crash when a debugger attempts to set a break point | 29 * Debugger: Fixes a VM crash when a debugger attempts to set a break point |
| 25 during isolate initialization. | 30 during isolate initialization. |
| 26 (SDK issue [25618](https://github.com/dart-lang/sdk/issues/25618)) | 31 (SDK issue [25618](https://github.com/dart-lang/sdk/issues/25618)) |
| 27 | 32 |
| 28 ## 1.14.0 - 2016-01-28 | 33 ## 1.14.0 - 2016-01-28 |
| 29 | 34 |
| (...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 they will keep the Dart process alive until they time out. This fixes the | 786 they will keep the Dart process alive until they time out. This fixes the |
| 782 handling of persistent connections. Previously, the client would shut down | 787 handling of persistent connections. Previously, the client would shut down |
| 783 immediately after a request. | 788 immediately after a request. |
| 784 | 789 |
| 785 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 790 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 786 default. The new `autoCompress` property can be set to `true` to re-enable | 791 default. The new `autoCompress` property can be set to `true` to re-enable |
| 787 compression. | 792 compression. |
| 788 | 793 |
| 789 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 794 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 790 which controls how it resolves `package:` URIs. | 795 which controls how it resolves `package:` URIs. |
| OLD | NEW |