Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: CHANGELOG.md

Issue 1687533002: Adds support for PKCS12 containers to SecurityContext (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | runtime/bin/secure_socket.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 20
20 ## 1.14.1 - 2016-02-04 21 ## 1.14.1 - 2016-02-04
21 22
22 Patch release, resolves one issue: 23 Patch release, resolves one issue:
23 24
24 * Debugger: Fixes a VM crash when a debugger attempts to set a break point 25 * Debugger: Fixes a VM crash when a debugger attempts to set a break point
25 during isolate initialization. 26 during isolate initialization.
26 (SDK issue [25618](https://github.com/dart-lang/sdk/issues/25618)) 27 (SDK issue [25618](https://github.com/dart-lang/sdk/issues/25618))
27 28
28 ## 1.14.0 - 2016-01-28 29 ## 1.14.0 - 2016-01-28
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 they will keep the Dart process alive until they time out. This fixes the 782 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 783 handling of persistent connections. Previously, the client would shut down
783 immediately after a request. 784 immediately after a request.
784 785
785 * **Breaking change:** `HttpServer` no longer compresses all traffic by 786 * **Breaking change:** `HttpServer` no longer compresses all traffic by
786 default. The new `autoCompress` property can be set to `true` to re-enable 787 default. The new `autoCompress` property can be set to `true` to re-enable
787 compression. 788 compression.
788 789
789 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 790 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
790 which controls how it resolves `package:` URIs. 791 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/secure_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698