Mention changes in the changelog

This commit is contained in:
Dominik Nakamura 2021-07-13 17:52:47 +09:00
parent 3efb0544c6
commit 02fb5db98f
No known key found for this signature in database
GPG Key ID: E4C6A749B2491910
1 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,14 @@
# 0.15.0 (unreleased)
- Allow selecting the method of loading root certificates if `rustls` is used as TLS implementation.
- Two new feature flags `rustls-tls-native-roots` and `rustls-tls-webpki-roots` have been added
that activate the respective method to load certificates.
- The `rustls-tls` flag was removed to raise awareness of this change. Otherwise, compilation
would have continue to work and potential errors (due to different or missing certificates)
only occurred at runtime.
- The new feature flags are additive. If both are enabled, both methods will be used to add
certificates to the TLS configuration.
# 0.14.0
- Use `rustls-native-certs` instead of `webpki-root` when `rustls-tls` feature is enabled.