Skip to content

Commit df66283

Browse files
committed
Release openssl v0.10.60 and openssl-sys v0.9.96
1 parent 1a09dc8 commit df66283

File tree

4 files changed

+42
-5
lines changed

4 files changed

+42
-5
lines changed

Diff for: openssl-sys/CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
## [Unreleased]
44

5+
## [v0.9.96] - 2023-11-22
6+
7+
### Changed
8+
9+
* `EVP_chacha20` is now available on LibreSSL
10+
11+
### Added
12+
13+
* Added `EVP_des_ede3_ecb`, `EVP_des_ede3_cfb8`, `EVP_des_ede3_ofb`, `EVP_camellia_128_ofb`, `EVP_camellia_192_ofb`, `EVP_camellia_256_ofb`, `EVP_cast5_ofb`, `EVP_idea_ofb`
14+
* Added `X509_STORE_get1_all_certs`
15+
* Added `SSL_CTRL_GET_PEER_TMP_KEY`, `SSL_CTRL_GET_TMP_KEY`, `SSL_get_peer_tmp_key`, `SSL_get_tmp_key`
16+
517
## [v0.9.95] - 2023-11-03
618

719
### Changed
@@ -533,7 +545,8 @@ Fixed builds against OpenSSL built with `no-cast`.
533545
* Added `X509_verify` and `X509_REQ_verify`.
534546
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
535547

536-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.95..master
548+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96..master
549+
[v0.9.96]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.95...openssl-sys-v0.9.96
537550
[v0.9.95]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.94...openssl-sys-v0.9.95
538551
[v0.9.94]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.94
539552
[v0.9.93]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93

Diff for: openssl-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl-sys"
3-
version = "0.9.95"
3+
version = "0.9.96"
44
authors = [
55
"Alex Crichton <[email protected]>",
66
"Steven Fackler <[email protected]>",

Diff for: openssl/CHANGELOG.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
## [Unreleased]
44

5+
## [v0.10.60] - 2023-11-22
6+
7+
### Deprecated
8+
9+
* Deprecated `X509StoreRef::objects`. It is unsound. All callers should migrate to using `X509StoreRef::all_certificates` instead.
10+
11+
### Fixed
12+
13+
* Fixed a memory leak when calling `SslContextBuilder::set_ex_data` and `SslRef::set_ex_data` multiple times with the same index.
14+
15+
### Added
16+
17+
* Added `X509StoreRef::all_certificates`
18+
* Added `cipher::Cipher::{camellia128_cbc,camellia192_cbc,camellia256_cbc,cast5_cbc,idea_cbc}`
19+
* Added `symm::Cipher::{des_ede3_ecb,des_ede3_cfb8,des_ede3_ofb,camellia_128_ecb,camellia_128_ofb,camellia_128_cfb128,camellia_192_ecb,camellia_192_ofb,camellia_192_cfb128,camellia_256_ecb,camellia_256_ofb,camellia_256_cfb128,cast5_ecb,cast5_ofb,cast5_cfb64,idea_ecb,idea_ofb,idea_cfb64}`
20+
* Added `Crypter::update_unchecked`
21+
* Added `SslRef::{peer_tmp_key,tmp_key}`
22+
23+
### Changed
24+
25+
* `cipher::Cipher::chacha20` is now available on LibreSSL
26+
* `symm::Cipher::chacha20` is now available on LibreSSL
27+
528
## [v0.10.59] - 2023-11-03
629

730
### Added
@@ -825,7 +848,8 @@
825848

826849
Look at the [release tags] for information about older releases.
827850

828-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.59...master
851+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.60...master
852+
[v0.10.60]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.59...openssl-v0.10.60
829853
[v0.10.59]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.58...openssl-v0.10.59
830854
[v0.10.58]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.58
831855
[v0.10.57]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.56...openssl-v0.10.57

Diff for: openssl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl"
3-
version = "0.10.59"
3+
version = "0.10.60"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "Apache-2.0"
66
description = "OpenSSL bindings"
@@ -30,7 +30,7 @@ libc = "0.2"
3030
once_cell = "1.5.2"
3131

3232
openssl-macros = { version = "0.1.0", path = "../openssl-macros" }
33-
ffi = { package = "openssl-sys", version = "0.9.95", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.96", path = "../openssl-sys" }
3434

3535
[dev-dependencies]
3636
hex = "0.3"

0 commit comments

Comments
 (0)