Skip to content

Commit 538955f

Browse files
committed
feat: Update several packages
1 parent 61b4b71 commit 538955f

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ 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-
## [Unreleased]
7+
## [5.1.5] - 2023-08-21
88

99
### Changed
1010

11-
- `click` dependency updated from `click==8.1.3` to `click==8.1.4`
11+
- `click` dependency upgraded from `click==8.1.3` to `click==8.1.7`
1212
- `pem` dependency open from `pem==21.2.0` to `pem>=21.2.0`
13+
- `pyyaml` dependency open from `pyyaml==6.0.1` to `pyyaml>=6.0.1`
1314
- Code reformatted with `yapf`, `black`, `isort` and `flake8` tools.
1415

16+
### Security
17+
18+
- `certifi` dependency open from `certifi==2021.10.8` to `certifi>=2023.7.22`
19+
- `cryptography` dependency upgraded from `cryptography==41.0.1` to `cryptography>=41.0.3`
20+
1521
## [5.1.4] - 2023-06-13
1622

1723
### Security

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.1.4"
3+
__version__ = "5.1.5"
44
__author__ = "Devo"
55
__author_email__ = "support@devo.com"
66
__license__ = "MIT"

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
click==8.1.4
2-
PyYAML==6.0
1+
click==8.1.7
2+
PyYAML==6.0.1
33
requests>=2.31
44
pem>=21.2.0
55
pyopenssl>=23.0
66
urllib3>=1.26.5
77
pytz>=2019.3
88
# Required because of vulnerability
9-
cryptography>=41.0.1
9+
certifi>=2023.7.22
10+
cryptography>=41.0.3

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,14 @@
2727
]
2828
INSTALL_REQUIRES = [
2929
"requests>=2.31",
30-
"click==8.1.4",
31-
"PyYAML==6.0",
30+
"click==8.1.7",
31+
"PyYAML==6.0.1",
3232
"pem>=21.2.0",
3333
"pyopenssl>=23.0",
3434
"urllib3>=1.26.5",
3535
"pytz>=2019.3",
36-
"cryptography>=41.0.1",
36+
"certifi>=2023.7.22",
37+
"cryptography>=41.0.3",
3738
]
3839
CLI = [
3940
"devo-sender=devo.sender.scripts.sender_cli:cli",

0 commit comments

Comments
 (0)