]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-149254: Bump OpenSSL versions for iOS and Android. (#149272)
authorRussell Keith-Magee <russell@keith-magee.com>
Sat, 2 May 2026 08:51:06 +0000 (16:51 +0800)
committerGitHub <noreply@github.com>
Sat, 2 May 2026 08:51:06 +0000 (16:51 +0800)
Bump OpenSSL to 3.0.20 for iOS and Android.

Android/android.py
Apple/__main__.py
Misc/NEWS.d/next/Security/2026-05-02-16-22-20.gh-issue-149254.9ozXB9.rst [new file with mode: 0644]

index c421576d99a96804fdbb274c277d64b2e05a5111..ec4d28bbaad84d4db730678a5d627c4703bbb401 100755 (executable)
@@ -213,8 +213,14 @@ def make_build_python(context):
 def unpack_deps(host, prefix_dir, cache_dir):
     os.chdir(prefix_dir)
     deps_url = "https://github.com/beeware/cpython-android-source-deps/releases/download"
-    for name_ver in ["bzip2-1.0.8-3", "libffi-3.4.4-3", "openssl-3.0.19-1",
-                     "sqlite-3.50.4-0", "xz-5.4.6-1", "zstd-1.5.7-2"]:
+    for name_ver in [
+        "bzip2-1.0.8-3",
+        "libffi-3.4.4-3",
+        "openssl-3.0.20-0",
+        "sqlite-3.50.4-0",
+        "xz-5.4.6-1",
+        "zstd-1.5.7-2"
+    ]:
         filename = f"{name_ver}-{host}.tar.gz"
         out_path = download(f"{deps_url}/{name_ver}/{filename}", cache_dir)
         shutil.unpack_archive(out_path)
index af20fce67daee18f7d9dfd796557d6409000d7f5..555cf2b26b67eef628fac0a69bdcf1830319f48e 100644 (file)
@@ -319,7 +319,7 @@ def unpack_deps(
     for name_ver in [
         "BZip2-1.0.8-2",
         "libFFI-3.4.7-2",
-        "OpenSSL-3.0.19-1",
+        "OpenSSL-3.0.20-1",
         "XZ-5.6.4-2",
         "mpdecimal-4.0.0-2",
         "zstd-1.5.7-1",
diff --git a/Misc/NEWS.d/next/Security/2026-05-02-16-22-20.gh-issue-149254.9ozXB9.rst b/Misc/NEWS.d/next/Security/2026-05-02-16-22-20.gh-issue-149254.9ozXB9.rst
new file mode 100644 (file)
index 0000000..f89f847
--- /dev/null
@@ -0,0 +1 @@
+Update Android and iOS installer to use OpenSSL 3.0.20.