Skip to content

Commit

Permalink
Merge pull request #206 from DevoInc/205-bump-versions-of-packages
Browse files Browse the repository at this point in the history
feat: Update several packages
  • Loading branch information
angel-devo committed Aug 21, 2023
2 parents 61b4b71 + a81e42d commit 0b3d5b5
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 24 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@ 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).

## [Unreleased]
## [5.1.5] - 2023-08-21

### Changed

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

### Security

- `certifi` dependency open from `certifi==2021.10.8` to `certifi~=2023.7.22`
- `cryptography` dependency upgraded from `cryptography==41.0.1` to `cryptography~=41.0.3`

## [5.1.4] - 2023-06-13

### Security
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.1.4"
__version__ = "5.1.5"
__author__ = "Devo"
__author_email__ = "support@devo.com"
__license__ = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
stopit==1.1.2
msgpack>=1.0.4
responses>=0.22.0
pipdeptree>=2.5.0
msgpack~=1.0.4
responses~=0.22.0
pipdeptree~=2.5.0
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
click==8.1.4
PyYAML==6.0
requests>=2.31
pem>=21.2.0
pyopenssl>=23.0
urllib3>=1.26.5
pytz>=2019.3
# Required because of vulnerability
cryptography>=41.0.1
click==8.1.7
PyYAML==6.0.1
requests~=2.31
pem~=21.2.0
pyopenssl~=23.0
urllib3~=1.26.5
pytz~=2019.3
certifi~=2023.7.22
cryptography~=41.0.3
17 changes: 9 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,15 @@
"Topic :: Software Development :: Libraries :: Python Modules",
]
INSTALL_REQUIRES = [
"requests>=2.31",
"click==8.1.4",
"PyYAML==6.0",
"pem>=21.2.0",
"pyopenssl>=23.0",
"urllib3>=1.26.5",
"pytz>=2019.3",
"cryptography>=41.0.1",
"requests~=2.31",
"click==8.1.7",
"PyYAML==6.0.1",
"pem~=21.2.0",
"pyopenssl~=23.0",
"urllib3~=1.26.5",
"pytz~=2019.3",
"certifi~=2023.7.22",
"cryptography~=41.0.3",
]
CLI = [
"devo-sender=devo.sender.scripts.sender_cli:cli",
Expand Down

0 comments on commit 0b3d5b5

Please sign in to comment.