Skip to content

Commit

Permalink
Merge pull request #290 from DevoInc/AL-1167_cryptography_vulnerability
Browse files Browse the repository at this point in the history
fix: Upgraded dependency cryptography~=43.0.1
  • Loading branch information
franjuan authored Sep 13, 2024
2 parents 636aa1d + faba9d7 commit eecbf7d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

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).

## [5.4.1] - 2024-09-13

### Security
- `cryptography` dependency upgraded from `cryptography~=42.0.5` to `cryptography~=43.0.1`

## [5.4.0] - 2024-07-09

### Changed
Expand Down
2 changes: 1 addition & 1 deletion devo/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__description__ = "Devo Python Library."
__url__ = "http://www.devo.com"
__version__ = "5.4.0"
__version__ = "5.4.1"
__author__ = "Devo"
__author_email__ = "[email protected]"
__license__ = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ click==8.1.7
PyYAML==6.0.1
requests~=2.32
pem~=21.2.0
pyopenssl~=24.1.0
pyopenssl~=24.2.1
pytz~=2024.1
certifi~=2024.7.4
cryptography~=42.0.8
cryptography~=43.0.1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
"click==8.1.7",
"PyYAML==6.0.1",
"pem~=21.2.0",
"pyopenssl~=24.1.0",
"pyopenssl~=24.2.1",
"pytz~=2024.1",
"certifi~=2024.7.4",
"cryptography~=42.0.8",
"cryptography~=43.0.1",
]
EXTRAS_REQUIRE = {
"dev": [
Expand Down

0 comments on commit eecbf7d

Please sign in to comment.