Chromium Code Reviews| Index: CHANGELOG.md |
| diff --git a/CHANGELOG.md b/CHANGELOG.md |
| index e1ed14455afada92704cd512a155a9927cb11747..7c5a7f413b7664ab2187f13fae4a178ebe94e830 100644 |
| --- a/CHANGELOG.md |
| +++ b/CHANGELOG.md |
| @@ -7,6 +7,14 @@ |
| [article on native extensions](https://www.dartlang.org/articles/dart-vm/native-extensions) |
| to reflect the VM's improved behavior. |
| +* We have improved the way the VM searches for trusted root certificates for |
| + secure socket connections on Linux. First, the VM will look for trusted root |
| + certificates in standard locations on the file system |
| + (/etc/pki/tls/certs/ca-bundle.crt followed by /etc/ssl/certs), and only if |
| + these do not exist will it fall back on the builtin trusted root certificates. |
| + This behavior can be overridden on Linux with the new flags |
| + --root-certs-file and --root-certs-cache. |
|
siva
2016/09/16 01:27:12
Should some documentation about these options be a
zra
2016/09/16 16:08:01
Done.
|
| + |
| ### Core library changes |
| * `dart:core`: Remove deprecated `Resource` class. |
| Use the class in `package:resource` instead. |
| @@ -21,7 +29,7 @@ |
| * Added `WebSocket.addUtf8Text` to allow sending a pre-encoded text message |
| without a round-trip UTF-8 conversion. |
| -## Strong Mode |
| +### Strong Mode |
| * Breaking change - it is an error if a generic type parameter cannot be |
| inferred (SDK issue [26992](https://github.com/dart-lang/sdk/issues/26992)). |