Skip to content

Commit c7ceb75

Browse files
authored
[3.14] gh-144551: Update CI to use latest OpenSSL versions (GH-144794) (#144799)
[3.14] gh-144551: Update CI to use latest OpenSSL versions Also update _ssl_data_35.h to include an added symbol from 3.5.5. (cherry picked from commit b933ef9)
1 parent f24009f commit c7ceb75

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ jobs:
303303
# Keep 1.1.1w in our list despite it being upstream EOL and otherwise
304304
# unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
305305
# supported by important vendors such as AWS-LC.
306-
openssl_ver: [1.1.1w, 3.0.18, 3.2.6, 3.3.5, 3.4.3, 3.5.4]
306+
openssl_ver: [1.1.1w, 3.0.19, 3.3.6, 3.4.4, 3.5.5, 3.6.1]
307307
# See Tools/ssl/make_ssl_data.py for notes on adding a new version
308308
env:
309309
OPENSSL_VER: ${{ matrix.openssl_ver }}

Modules/_ssl_data_35.h

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* File generated by Tools/ssl/make_ssl_data.py */
2-
/* Generated on 2025-10-04T17:49:19.148321+00:00 */
3-
/* Generated from Git commit openssl-3.5.4-0-gc1eeb9406 */
2+
/* Generated on 2026-02-13T19:18:20.130102+00:00 */
3+
/* Generated from Git commit openssl-3.5.5-0-g67b5686b4 */
44

55
/* generated from args.lib2errnum */
66
static struct py_ssl_library_code library_codes[] = {
@@ -1668,6 +1668,11 @@ static struct py_ssl_error_code error_codes[] = {
16681668
#else
16691669
{"CERTIFICATE_VERIFY_ERROR", 46, 100},
16701670
#endif
1671+
#ifdef CMS_R_CIPHER_AEAD_IN_ENVELOPED_DATA
1672+
{"CIPHER_AEAD_IN_ENVELOPED_DATA", ERR_LIB_CMS, CMS_R_CIPHER_AEAD_IN_ENVELOPED_DATA},
1673+
#else
1674+
{"CIPHER_AEAD_IN_ENVELOPED_DATA", 46, 200},
1675+
#endif
16711676
#ifdef CMS_R_CIPHER_AEAD_SET_TAG_ERROR
16721677
{"CIPHER_AEAD_SET_TAG_ERROR", ERR_LIB_CMS, CMS_R_CIPHER_AEAD_SET_TAG_ERROR},
16731678
#else

Tools/ssl/multissltests.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,15 @@
4545
OPENSSL_OLD_VERSIONS = [
4646
"1.1.1w",
4747
"3.1.8",
48+
"3.2.6",
4849
]
4950

5051
OPENSSL_RECENT_VERSIONS = [
51-
"3.0.18",
52-
"3.2.6",
53-
"3.3.5",
54-
"3.4.3",
55-
"3.5.4",
52+
"3.0.19",
53+
"3.3.6",
54+
"3.4.4",
55+
"3.5.5",
56+
"3.6.1",
5657
# See make_ssl_data.py for notes on adding a new version.
5758
]
5859

0 commit comments

Comments
 (0)