Skip to content

Commit 4ff734f

Browse files
authored
Release openssl v0.10.48 and openssl-sys v0.9.83 (#1855)
1 parent 5efceaa commit 4ff734f

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

openssl-sys/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## [v0.9.83] - 2023-03-23
6+
7+
### Fixed
8+
9+
* Fixed version checks for LibreSSL.
10+
11+
### Added
12+
13+
* Added `i2d_X509_EXTENSION`.
14+
* Added `GENERAL_NAME_new`.
15+
516
## [v0.9.82] - 2023-03-19
617

718
### Added
@@ -399,7 +410,8 @@ Fixed builds against OpenSSL built with `no-cast`.
399410
* Added `X509_verify` and `X509_REQ_verify`.
400411
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
401412

402-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.82..master
413+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.83..master
414+
[v0.9.83]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.82...openssl-sys-v0.9.83
403415
[v0.9.82]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.81...openssl-sys-v0.9.82
404416
[v0.9.81]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.80...openssl-sys-v0.9.81
405417
[v0.9.80]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.79...openssl-sys-v0.9.80

openssl-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl-sys"
3-
version = "0.9.82"
3+
version = "0.9.83"
44
authors = [
55
"Alex Crichton <[email protected]>",
66
"Steven Fackler <[email protected]>",

openssl/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## [v0.10.48] - 2023-03-23
6+
7+
### Fixed
8+
9+
* Fixed injection vulnerabilities where OpenSSL's configuration mini-language could be used via `x509::extension::SubjectAlternativeName` and `x509::extension::ExtendedKeyUsage`. The mini-language can read arbitrary files amongst other things.
10+
* As part of fixing this `SubjectAlternativeName::dir_name` and `SubjectAlternativeName::other_name` are deprecated and their implementations always `panic!`. If you have a use case for these, please file an issue.
11+
* Fixed several NULL pointer dereferences in OpenSSL that could be triggered via `x509::X509Extension::new` and `x509::X509Extension::new_nid`. Note that these methods still accept OpenSSL's configuration mini-language, and therefore should not be used with untrusted data.
12+
* Fixed a data-race with `x509::X509Name` that are created with `x509::X509NameBuilder` and then used concurrently.
13+
* Fixed LibreSSL version checking. More functions should now be correctly available on LibreSSL.
14+
515
## [v0.10.47] - 2023-03-19
616

717
### Added
@@ -697,7 +707,8 @@
697707

698708
Look at the [release tags] for information about older releases.
699709

700-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.47...master
710+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.48...master
711+
[v0.10.48]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.47...openssl-v0.10.48
701712
[v0.10.47]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.46...openssl-v0.10.47
702713
[v0.10.46]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.45...openssl-v0.10.46
703714
[v0.10.45]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.44...openssl-v0.10.45

openssl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl"
3-
version = "0.10.47"
3+
version = "0.10.48"
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.82", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.83", path = "../openssl-sys" }
3434

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

0 commit comments

Comments
 (0)