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` |
| 8 * Added `SecurityContext.usePrivateKeyBytes`, |
| 9 `SecurityContext.useCertificateChainBytes`, |
| 10 `SecurityContext.setTrustedCertificatesBytes`, and |
| 11 `SecurityContext.setClientAuthoritiesBytes`. |
| 12 * **Breaking** The non-`Bytes` methods have been renamed -`Sync`, as they may |
| 13 do synchronous IO. |
| 14 * **Breaking** The named `directory` argument has been removed from |
| 15 `SecurityContext.setTrustedCertificatesSync`. The method now takes only |
| 16 one argument for the PEM file name containing the new trusted |
| 17 certificates. |
| 18 |
7 ## 1.14.1 - 2016-02-04 | 19 ## 1.14.1 - 2016-02-04 |
8 | 20 |
9 Patch release, resolves one issue: | 21 Patch release, resolves one issue: |
10 | 22 |
11 * Debugger: Fixes a VM crash when a debugger attempts to set a break point | 23 * Debugger: Fixes a VM crash when a debugger attempts to set a break point |
12 during isolate initialization. | 24 during isolate initialization. |
13 (SDK issue [25618](https://github.com/dart-lang/sdk/issues/25618)) | 25 (SDK issue [25618](https://github.com/dart-lang/sdk/issues/25618)) |
14 | 26 |
15 ## 1.14.0 - 2016-01-28 | 27 ## 1.14.0 - 2016-01-28 |
16 | 28 |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
768 they will keep the Dart process alive until they time out. This fixes the | 780 they will keep the Dart process alive until they time out. This fixes the |
769 handling of persistent connections. Previously, the client would shut down | 781 handling of persistent connections. Previously, the client would shut down |
770 immediately after a request. | 782 immediately after a request. |
771 | 783 |
772 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 784 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
773 default. The new `autoCompress` property can be set to `true` to re-enable | 785 default. The new `autoCompress` property can be set to `true` to re-enable |
774 compression. | 786 compression. |
775 | 787 |
776 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 788 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
777 which controls how it resolves `package:` URIs. | 789 which controls how it resolves `package:` URIs. |
OLD | NEW |