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

Side by Side Diff: CHANGELOG.md

Issue 1665433002: Adds SecurityContext.setTrustedCertificatesBytes (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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/dartutils.h » ('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`
8 * Added `SecurityContext.usePrivateKeyBytes`,
9 `SecurityContext.useCertificateChainBytes`,
10 `SecurityContext.setTrustedCertificatesBytes`, and
11 `SecurityContext.setClientAuthoritiesBytes`.
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
14 deprecated and will be removed in a later release.
15 * **Breaking** The named `directory` argument of
16 `SecurityContext.setTrustedCertificates` is no longer supported.
17 The method now only supports one argument for the PEM file name containing
18 the trusted certificates.
19
7 ## 1.14.1 - 2016-02-04 20 ## 1.14.1 - 2016-02-04
8 21
9 Patch release, resolves one issue: 22 Patch release, resolves one issue:
10 23
11 * Debugger: Fixes a VM crash when a debugger attempts to set a break point 24 * Debugger: Fixes a VM crash when a debugger attempts to set a break point
12 during isolate initialization. 25 during isolate initialization.
13 (SDK issue [25618](https://github.com/dart-lang/sdk/issues/25618)) 26 (SDK issue [25618](https://github.com/dart-lang/sdk/issues/25618))
14 27
15 ## 1.14.0 - 2016-01-28 28 ## 1.14.0 - 2016-01-28
16 29
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 they will keep the Dart process alive until they time out. This fixes the 781 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 782 handling of persistent connections. Previously, the client would shut down
770 immediately after a request. 783 immediately after a request.
771 784
772 * **Breaking change:** `HttpServer` no longer compresses all traffic by 785 * **Breaking change:** `HttpServer` no longer compresses all traffic by
773 default. The new `autoCompress` property can be set to `true` to re-enable 786 default. The new `autoCompress` property can be set to `true` to re-enable
774 compression. 787 compression.
775 788
776 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 789 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
777 which controls how it resolves `package:` URIs. 790 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/dartutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698