Skip to content

Commit aea6dde

Browse files
snyk-botszh
authored andcommitted
fix: requirements.txt to reduce vulnerabilities
The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-REQUESTS-6928867 - https://snyk.io/vuln/SNYK-PYTHON-SETUPTOOLS-7448482 - https://snyk.io/vuln/SNYK-PYTHON-URLLIB3-7267250 - https://snyk.io/vuln/SNYK-PYTHON-ZIPP-7430899
1 parent 2fff6ae commit aea6dde

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [0.1.2] - 2024-08-01
10+
11+
### Security
12+
- Update python dependencies
13+
914
## [0.1.1] - 2024-03-14
1015

1116
### Added

requirements.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ PyInstaller>=4.0
99
PyYAML>=5.3.1
1010
aiohttp>=3.9.3
1111
asynctest>=0.13.0
12-
setuptools>=57.0.0
12+
setuptools>=70.0.0
1313
twine>=3.2.0
1414
build>=0.7.0
1515
# https://nvd.nist.gov/vuln/detail/CVE-2020-26137
16-
urllib3>=1.25.9
16+
urllib3>=2.2.2
1717

18-
aiounittest~=1.4.1
18+
aiounittest~=1.4.1
19+
requests>=2.32.2 # not directly required, pinned by Snyk to avoid a vulnerability
20+
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability

tests/https/test_unit_http_ssl.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444
# "https://extended-validation.badssl.com",
4545
"https://rsa2048.badssl.com",
4646
"https://rsa4096.badssl.com",
47-
"https://rsa8192.badssl.com",
47+
# This is temporarily broken, see https://github.com/chromium/badssl.com/issues/501
48+
# "https://rsa8192.badssl.com",
4849
"https://sha256.badssl.com",
4950
# These are temporarily broken, see https://github.com/chromium/badssl.com/issues/501
5051
# "https://sha384.badssl.com",

0 commit comments

Comments
 (0)