build(deps): bump aiohttp, cryptography, and asyncssh for security advisories - #3412
Merged
Conversation
…visories Bumps three dependencies flagged by pip-audit in the safety tox env: - aiohttp 3.14.1 -> 3.14.3 (PYSEC-2026-3545/3546/3547) - cryptography 48.0.1 -> 50.0.1 (PYSEC-2026-3552/3553/3554) - asyncssh 2.20.0 -> 2.23.1 (CVE-2026-54591) Supersedes #3405 (aiohttp) and #3406 (cryptography). The asyncssh advisory has no Dependabot PR yet and safety fails on master without it, so all three are bumped together; neither open PR passes CI alone. All three require Python >= 3.10, leaving the test matrix unaffected.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Bumps three dependencies flagged by
pip-auditin thesafetytox env:aiohttp3.14.1 -> 3.14.3 (PYSEC-2026-3545/3546/3547)cryptography48.0.1 -> 50.0.1 (PYSEC-2026-3552/3553/3554)asyncssh2.20.0 -> 2.23.1 (CVE-2026-54591)Supersedes #3405 (aiohttp) and #3406 (cryptography). The
asyncsshadvisory has no Dependabot PR yet and
safetyfails on master without it,so all three are bumped together; neither open PR passes CI on its own.
All three require Python >= 3.10, so the full test matrix is unaffected.
Type of change
How Has This Been Tested?
Full suite run before and after the bump, on Python 3.13 and 3.11:
pytest --asyncio-mode=auto tests- 562 passed on both, identical to thepre-bump baseline, with no new warnings
pip-audit -r requirements.txt- no known vulnerabilities (was 4)pip-audit -r requirements-dev.txt- no known vulnerabilitiesbandit -r app -ll --skip=B303- pass, 16 low / 0 medium / 0 highThe
asyncsshbump is exercised end-to-end bytests/contacts/test_ssh_tunneling.py, which starts the real tunnel server,authenticates a client, and forwards a local port.
Checklist:
exercises all three packages; no new tests needed)