Skip to content

Commit eecbf7d

Browse files
authored
Merge pull request #290 from DevoInc/AL-1167_cryptography_vulnerability
fix: Upgraded dependency cryptography~=43.0.1
2 parents 636aa1d + faba9d7 commit eecbf7d

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [5.4.1] - 2024-09-13
8+
9+
### Security
10+
- `cryptography` dependency upgraded from `cryptography~=42.0.5` to `cryptography~=43.0.1`
11+
712
## [5.4.0] - 2024-07-09
813

914
### Changed

devo/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__description__ = "Devo Python Library."
22
__url__ = "http://www.devo.com"
3-
__version__ = "5.4.0"
3+
__version__ = "5.4.1"
44
__author__ = "Devo"
55
__author_email__ = "support@devo.com"
66
__license__ = "MIT"

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ click==8.1.7
22
PyYAML==6.0.1
33
requests~=2.32
44
pem~=21.2.0
5-
pyopenssl~=24.1.0
5+
pyopenssl~=24.2.1
66
pytz~=2024.1
77
certifi~=2024.7.4
8-
cryptography~=42.0.8
8+
cryptography~=43.0.1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929
"click==8.1.7",
3030
"PyYAML==6.0.1",
3131
"pem~=21.2.0",
32-
"pyopenssl~=24.1.0",
32+
"pyopenssl~=24.2.1",
3333
"pytz~=2024.1",
3434
"certifi~=2024.7.4",
35-
"cryptography~=42.0.8",
35+
"cryptography~=43.0.1",
3636
]
3737
EXTRAS_REQUIRE = {
3838
"dev": [

0 commit comments

Comments
 (0)