Skip to content

Commit 4645e8d

Browse files
authored
Bump OpenSSL 3.5.5 -> 3.5.6 (#1084)
Six CVEs, the highest severity is "Moderate": https://github.com/openssl/openssl/releases/tag/openssl-3.5.6
1 parent f322496 commit 4645e8d

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
@@ -245,7 +245,7 @@
245245
"licenses": ["X11"],
246246
"license_file": "LICENSE.ncurses.txt",
247247
},
248-
# Remember to update OPENSSL_VERSION_INFO in verify_distribution.py whenever upgrading.
248+
# Remember to update OPENSSL_VERSION_INFO in pythonbuild/disttests/ whenever upgrading.
249249
"openssl-1.1": {
250250
"url": "https://www.openssl.org/source/openssl-1.1.1w.tar.gz",
251251
"size": 9893384,
@@ -255,12 +255,12 @@
255255
"licenses": ["OpenSSL"],
256256
"license_file": "LICENSE.openssl-1.1.txt",
257257
},
258-
# Remember to update OPENSSL_VERSION_INFO in verify_distribution.py whenever upgrading.
258+
# Remember to update OPENSSL_VERSION_INFO in pythonbuild/disttests/ whenever upgrading.
259259
"openssl-3.5": {
260-
"url": "https://github.com/openssl/openssl/releases/download/openssl-3.5.5/openssl-3.5.5.tar.gz",
261-
"size": 53104821,
262-
"sha256": "b28c91532a8b65a1f983b4c28b7488174e4a01008e29ce8e69bd789f28bc2a89",
263-
"version": "3.5.5",
260+
"url": "https://github.com/openssl/openssl/releases/download/openssl-3.5.6/openssl-3.5.6.tar.gz",
261+
"size": 53121812,
262+
"sha256": "deae7c80cba99c4b4f940ecadb3c3338b13cb77418409238e57d7f31f2a3b736",
263+
"version": "3.5.6",
264264
"library_names": ["crypto", "ssl"],
265265
"licenses": ["Apache-2.0"],
266266
"license_file": "LICENSE.openssl-3.txt",
@@ -300,7 +300,7 @@
300300
"sha256": "a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb",
301301
"version": "82.0.1",
302302
},
303-
# Remember to update verify_distribution.py when version changed.
303+
# Remember to update pythonbuild/disttests/ when version changed.
304304
"sqlite": {
305305
"url": "https://www.sqlite.org/2025/sqlite-autoconf-3500400.tar.gz",
306306
"size": 3173050,

0 commit comments

Comments
 (0)