aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2018-02-28 14:23:44 -0800
committerSteven Fackler <[email protected]>2018-02-28 14:23:44 -0800
commit7fcd1ba96deabc5f02a5f933ba74ca039e62d4e9 (patch)
tree44b8b0232c540338b8e69da6f2e657ae251dc7eb
parentMerge pull request #854 from sfackler/error-description (diff)
downloadrust-openssl-7fcd1ba96deabc5f02a5f933ba74ca039e62d4e9.tar.xz
rust-openssl-7fcd1ba96deabc5f02a5f933ba74ca039e62d4e9.zip
Update changelog
-rw-r--r--CHANGELOG.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0d3a5b38..a8dfcbbc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,24 @@
## [Unreleased]
+### Fixed
+
+* `ErrorStack`'s `Display` implementation no longer writes an empty string if it contains no errors.
+
### Added
* Added `SslRef::version2`.
+* Added `Cipher::des_ede3_cbc`.
+* Added `SslRef::export_keying_material`.
+* Added the ability to push an `Error` or `ErrorStack` back onto OpenSSL's error stack. Various
+ callback bindings use this to propagate errors properly.
+* Added `SslContextBuilder::set_cookie_generate_cb` and `SslContextBuilder::set_cookie_verify_cb`.
+* Added `SslContextBuilder::set_max_proto_version`, `SslContextBuilder::set_min_proto_version`,
+ `SslContextBuilder::max_proto_version`, and `SslContextBuilder::min_proto_version`.
+
+### Changed
+
+* Updated `SslConnector`'s default cipher list to match Python's.
### Deprecated