]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-144551: Update CI to use latest OpenSSL versions (GH-144794)
authorZachary Ware <zach@python.org>
Fri, 13 Feb 2026 19:06:07 +0000 (13:06 -0600)
committerGitHub <noreply@github.com>
Fri, 13 Feb 2026 19:06:07 +0000 (13:06 -0600)
Also update _ssl_data_36.h to include an added symbol from 3.6.1.

.github/workflows/build.yml
Modules/_ssl_data_36.h
Tools/ssl/multissltests.py

index 046e678f8c1b4b3285da6efb7d30a4f0a164fefd..f9a6fb61272e441fd8a1ed6cf6ae5fe339e35194 100644 (file)
@@ -261,7 +261,7 @@ jobs:
         # Keep 1.1.1w in our list despite it being upstream EOL and otherwise
         # unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
         # supported by important vendors such as AWS-LC.
-        openssl_ver: [1.1.1w, 3.0.18, 3.3.5, 3.4.3, 3.5.4, 3.6.0]
+        openssl_ver: [1.1.1w, 3.0.19, 3.3.6, 3.4.4, 3.5.5, 3.6.1]
         # See Tools/ssl/make_ssl_data.py for notes on adding a new version
     env:
       OPENSSL_VER: ${{ matrix.openssl_ver }}
index 02b8b66e80fce2f259165345a67b7daf96f754f6..5a2e0d067e2dc71c41fec12a211d38bfdc702bb8 100644 (file)
@@ -1,6 +1,6 @@
 /* File generated by Tools/ssl/make_ssl_data.py */
-/* Generated on 2026-01-17T13:03:49.335767+00:00 */
-/* Generated from Git commit openssl-3.6.0-0-g7b371d80d9 */
+/* Generated on 2026-02-13T18:19:19.227109+00:00 */
+/* Generated from Git commit openssl-3.6.1-0-gc9a9e5b10 */
 
 /* generated from args.lib2errnum */
 static struct py_ssl_library_code library_codes[] = {
@@ -1668,6 +1668,11 @@ static struct py_ssl_error_code error_codes[] = {
   #else
     {"CERTIFICATE_VERIFY_ERROR", 46, 100},
   #endif
+  #ifdef CMS_R_CIPHER_AEAD_IN_ENVELOPED_DATA
+    {"CIPHER_AEAD_IN_ENVELOPED_DATA", ERR_LIB_CMS, CMS_R_CIPHER_AEAD_IN_ENVELOPED_DATA},
+  #else
+    {"CIPHER_AEAD_IN_ENVELOPED_DATA", 46, 200},
+  #endif
   #ifdef CMS_R_CIPHER_AEAD_SET_TAG_ERROR
     {"CIPHER_AEAD_SET_TAG_ERROR", ERR_LIB_CMS, CMS_R_CIPHER_AEAD_SET_TAG_ERROR},
   #else
index 828fb8b44f9b0801ab9cb9e9bda85e0906c9cb79..a08e0518f457f531b594b2974ad2802fd59bc26a 100755 (executable)
@@ -49,11 +49,11 @@ OPENSSL_OLD_VERSIONS = [
 ]
 
 OPENSSL_RECENT_VERSIONS = [
-    "3.0.18",
-    "3.3.5",
-    "3.4.3",
-    "3.5.4",
-    "3.6.0",
+    "3.0.19",
+    "3.3.6",
+    "3.4.4",
+    "3.5.5",
+    "3.6.1",
     # See make_ssl_data.py for notes on adding a new version.
 ]