Skip to content

Commit faef3a5

Browse files
geofftDidah
authored andcommitted
Bump OpenSSL 3.5.5 -> 3.5.6 (astral-sh#1084)
Six CVEs, the highest severity is "Moderate": https://github.com/openssl/openssl/releases/tag/openssl-3.5.6
1 parent 0319375 commit faef3a5

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

pythonbuild/disttests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def test_ssl(self):
211211
if os.name == "nt" and sys.version_info[0:2] < (3, 11):
212212
wanted_version = (1, 1, 1, 23, 15)
213213
else:
214-
wanted_version = (3, 5, 0, 5, 0)
214+
wanted_version = (3, 5, 0, 6, 0)
215215

216216
self.assertEqual(ssl.OPENSSL_VERSION_INFO, wanted_version)
217217

@@ -301,7 +301,7 @@ def assertPythonWorks(path: Path, argv0: Optional[str] = None):
301301
)
302302
self.assertEqual(output.strip(), "42")
303303

304-
with tempfile.TemporaryDirectory(prefix="verify-distribution-") as t:
304+
with tempfile.TemporaryDirectory(prefix="disttests-") as t:
305305
tmpdir = Path(t)
306306
symlink = tmpdir / "python"
307307
symlink.symlink_to(sys.executable)

pythonbuild/downloads.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@
254254
"licenses": ["X11"],
255255
"license_file": "LICENSE.ncurses.txt",
256256
},
257-
# Remember to update OPENSSL_VERSION_INFO in verify_distribution.py whenever upgrading.
257+
# Remember to update OPENSSL_VERSION_INFO in pythonbuild/disttests/ whenever upgrading.
258258
"openssl-1.1": {
259259
"url": "https://www.openssl.org/source/openssl-1.1.1w.tar.gz",
260260
"size": 9893384,
@@ -264,12 +264,12 @@
264264
"licenses": ["OpenSSL"],
265265
"license_file": "LICENSE.openssl-1.1.txt",
266266
},
267-
# Remember to update OPENSSL_VERSION_INFO in verify_distribution.py whenever upgrading.
267+
# Remember to update OPENSSL_VERSION_INFO in pythonbuild/disttests/ whenever upgrading.
268268
"openssl-3.5": {
269-
"url": "https://github.com/openssl/openssl/releases/download/openssl-3.5.5/openssl-3.5.5.tar.gz",
270-
"size": 53104821,
271-
"sha256": "b28c91532a8b65a1f983b4c28b7488174e4a01008e29ce8e69bd789f28bc2a89",
272-
"version": "3.5.5",
269+
"url": "https://github.com/openssl/openssl/releases/download/openssl-3.5.6/openssl-3.5.6.tar.gz",
270+
"size": 53121812,
271+
"sha256": "deae7c80cba99c4b4f940ecadb3c3338b13cb77418409238e57d7f31f2a3b736",
272+
"version": "3.5.6",
273273
"library_names": ["crypto", "ssl"],
274274
"licenses": ["Apache-2.0"],
275275
"license_file": "LICENSE.openssl-3.txt",
@@ -309,7 +309,7 @@
309309
"sha256": "a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb",
310310
"version": "82.0.1",
311311
},
312-
# Remember to update verify_distribution.py when version changed.
312+
# Remember to update pythonbuild/disttests/ when version changed.
313313
"sqlite": {
314314
"url": "https://www.sqlite.org/2025/sqlite-autoconf-3500400.tar.gz",
315315
"size": 3173050,

0 commit comments

Comments
 (0)