Skip to content

Commit 0b3d5b5

Browse files
authored
Merge pull request #206 from DevoInc/205-bump-versions-of-packages
feat: Update several packages
2 parents 61b4b71 + a81e42d commit 0b3d5b5

File tree

5 files changed

+31
-24
lines changed

5 files changed

+31
-24
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 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`
12-
- `pem` dependency open from `pem==21.2.0` to `pem>=21.2.0`
11+
- `click` dependency upgraded from `click==8.1.3` to `click==8.1.7`
12+
- `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-test.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
stopit==1.1.2
2-
msgpack>=1.0.4
3-
responses>=0.22.0
4-
pipdeptree>=2.5.0
2+
msgpack~=1.0.4
3+
responses~=0.22.0
4+
pipdeptree~=2.5.0

requirements.txt

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

setup.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,15 @@
2626
"Topic :: Software Development :: Libraries :: Python Modules",
2727
]
2828
INSTALL_REQUIRES = [
29-
"requests>=2.31",
30-
"click==8.1.4",
31-
"PyYAML==6.0",
32-
"pem>=21.2.0",
33-
"pyopenssl>=23.0",
34-
"urllib3>=1.26.5",
35-
"pytz>=2019.3",
36-
"cryptography>=41.0.1",
29+
"requests~=2.31",
30+
"click==8.1.7",
31+
"PyYAML==6.0.1",
32+
"pem~=21.2.0",
33+
"pyopenssl~=23.0",
34+
"urllib3~=1.26.5",
35+
"pytz~=2019.3",
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)