Skip to content

Commit

Permalink
Bump to v3.3.2
Browse files Browse the repository at this point in the history
https://openssl-library.org/news/secadv/20240903.txt

> Issue summary: Applications performing certificate name checks (e.g., TLS
> clients checking server certificates) may attempt to read an invalid memory
> address resulting in abnormal termination of the application process.

[...]

> OpenSSL 3.3 users should upgrade to OpenSSL 3.3.2
  • Loading branch information
nil4 committed Sep 4, 2024
1 parent e9d26ce commit e30e47b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: macos-14

env: # use tag version, if available, falling back to 3.3.1 (stable)
OPENSSL_VERSION: "${{ startsWith(github.ref, 'refs/tags/3.') && github.ref_name || '3.3.1' }}"
OPENSSL_VERSION: "${{ startsWith(github.ref, 'refs/tags/3.') && github.ref_name || '3.3.2' }}"
PUBLISH_RELEASE: "${{ startsWith(github.ref, 'refs/tags/3.') && '1' || '0' }}"

steps:
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

OPENSSL_VERSION_STABLE="3.3.1" # https://www.openssl.org/source/index.html
OPENSSL_VERSION_STABLE="3.3.2" # https://github.com/openssl/openssl/blob/openssl-3.3/CHANGES.md#changes-between-331-and-332-3-sep-2024
IOS_VERSION_MIN="13.4"
MACOS_VERSION_MIN="11.0"
CODESIGN_ID="-"
Expand Down

0 comments on commit e30e47b

Please sign in to comment.