gh-143960: Add support for OpenSSL 3.6, drop EOL 3.2 (#143961)

Co-authored-by: Gregory P. Smith <68491+gpshead@users.noreply.github.com>
This commit is contained in:
Hugo van Kemenade 2026-01-20 17:25:31 +02:00 committed by GitHub
parent 795d5c5b44
commit a126893fa8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 29 additions and 7 deletions

View file

@ -17,8 +17,8 @@
git tag --list 'openssl-*'
git switch --detach openssl-3.4.1
After generating the definitions, compare the result with newest pre-existing file.
You can use a command like:
After generating the definitions, compare the result with the newest
pre-existing file. You can use a command like:
git diff --no-index Modules/_ssl_data_340.h Modules/_ssl_data_341.h

View file

@ -45,14 +45,15 @@
OPENSSL_OLD_VERSIONS = [
"1.1.1w",
"3.1.8",
"3.2.6",
]
OPENSSL_RECENT_VERSIONS = [
"3.0.18",
"3.2.6",
"3.3.5",
"3.4.3",
"3.5.4",
"3.6.0",
# See make_ssl_data.py for notes on adding a new version.
]