Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded OpenSSL to 3.0.8 #4215

Merged
merged 2 commits into from
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ librdkafka v2.0.3 is a bugfix release:
* Fix seek partition timeout, was one thousand times lower than the passed
value (#4230).
* Batch consumer fixes: TODO: describe (#4208).
* Upgrade OpenSSL to v3.0.8 with various security fixes,
check the [release notes](https://www.openssl.org/news/cl30.txt) (#4215).


## Fixes
Expand Down
4 changes: 2 additions & 2 deletions mklove/modules/configure.libssl
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ function manual_checks {
function libcrypto_install_source {
local name=$1
local destdir=$2
local ver=3.0.7
local checksum="83049d042a260e696f62406ac5c08bf706fd84383f945cf21bd61e9ed95c396e"
local ver=3.0.8
local checksum="6c13d2bf38fdf31eac3ce2a347073673f5d63263398f1f69d0df4a41253e4b3e"
local url=https://www.openssl.org/source/openssl-${ver}.tar.gz

local conf_args="--prefix=/usr --openssldir=/usr/lib/ssl no-shared no-zlib"
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
{
"name": "openssl",
"version>=": "3.0.7"
"version>=": "3.0.8"
},
{
"name": "curl",
Expand Down