diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5323c56d7a3..90efdda2b05e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: - {VERSION: "3.11", TOXENV: "py311", TOXARGS: "--enable-fips=1", OPENSSL: {TYPE: "openssl", CONFIG_FLAGS: "enable-fips", VERSION: "3.1.0"}} - {VERSION: "3.11", TOXENV: "py311", OPENSSL: {TYPE: "libressl", VERSION: "3.5.4"}} - {VERSION: "3.11", TOXENV: "py311", OPENSSL: {TYPE: "libressl", VERSION: "3.6.2"}} - - {VERSION: "3.11", TOXENV: "py311", OPENSSL: {TYPE: "libressl", VERSION: "3.7.1"}} + - {VERSION: "3.11", TOXENV: "py311", OPENSSL: {TYPE: "libressl", VERSION: "3.7.2"}} - {VERSION: "3.11", TOXENV: "py311-randomorder"} - {VERSION: "3.12-dev", TOXENV: "py312"} # Latest commit on the BoringSSL master branch, as of Mar 23, 2023. diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f12c5c106bc0..60dd3d5853be 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +.. _v40-0-2: + +40.0.2 - 2023-04-14 +~~~~~~~~~~~~~~~~~~~ + +* Fixed compilation when using LibreSSL 3.7.2. + .. _v40-0-1: 40.0.1 - 2023-03-24 diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock index dd8c6b0c6fb2..b9dcc103cd21 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -309,9 +309,9 @@ checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0" [[package]] name = "openssl" -version = "0.10.48" +version = "0.10.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2" +checksum = "7e30d8bc91859781f0a943411186324d580f2bbeb71b452fe91ae344806af3f1" dependencies = [ "bitflags", "cfg-if", @@ -335,11 +335,10 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.83" +version = "0.9.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "666416d899cf077260dac8698d60a60b435a46d57e82acb1be3d0dad87284e5b" +checksum = "0d3d193fb1488ad46ffe3aaabc912cc931d02ee8518fe2959aea8ef52718b0c0" dependencies = [ - "autocfg", "cc", "libc", "pkg-config", diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index 2b1b94001683..072f07bd4a23 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -14,8 +14,8 @@ asn1 = { version = "0.13.0", default-features = false } pem = "1.1" chrono = { version = "0.4.24", default-features = false, features = ["alloc", "clock"] } ouroboros = "0.15" -openssl = "0.10.48" -openssl-sys = "0.9.72" +openssl = "0.10.50" +openssl-sys = "0.9.85" foreign-types-shared = "0.1" [build-dependencies]