Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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).

## [7.0.1] - 2026-06-16

### Changed
- Changed some dependencies:

| Dependency | From | To |
|------------------|----------|----------|
| click | ~=8.3.1 | ~=8.4.1 |
| pyopenssl | ~=26.0.0 | ~=26.3.0 |
| pytz | ~=2026.1 | ~=2026.2 |
| requests | ~=2.32 | ~=2.34.2 |
| msgpack (dev) | ~=1.1.2 | ~=1.2.0 |
| pipdeptree (dev) | ~=2.30.0 | ~=3.1.0 |
| pytest (dev) | ~=9.0.0 | ~=9.1.0 |
| pytest-cov (dev) | ~=6.0.0 | ~=7.1.0 |
| responses (dev) | ~=0.26.0 | ~=0.26.1 |


## [7.0.0] - 2026-02-11

### Removed
Expand Down
4 changes: 2 additions & 2 deletions 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__ = "7.0.0"
__url__ = "https://www.devo.com"
__version__ = "7.0.1"
__author__ = "Devo"
__author_email__ = "support@devo.com"
__license__ = "MIT"
Expand Down
10 changes: 5 additions & 5 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
mock~=5.2.0
msgpack~=1.1.2
msgpack~=1.2.0
pebble~=5.2.0
pipdeptree~=2.30.0
pytest~=9.0.0
pytest-cov~=6.0.0
pipdeptree~=3.1.0
pytest~=9.1.0
pytest-cov~=7.1.0
pytest-timeout~=2.4.0
responses~=0.26.0
responses~=0.26.1
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
click~=8.3.1
click~=8.4.1
pem~=23.1.0
pyopenssl~=26.0.0
pyopenssl~=26.3.0
pyyaml~=6.0.3
pytz~=2026.1
requests~=2.32
pytz~=2026.2
requests~=2.34.2
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@
"Topic :: Software Development :: Libraries :: Python Modules",
]
INSTALL_REQUIRES = [
"click~=8.3.1",
"click~=8.4.1",
"pem~=23.1.0",
"pyopenssl~=26.0.0",
"pyopenssl~=26.3.0",
"pytz~=2026.1",
"pyyaml~=6.0.3",
"requests~=2.32",
"requests~=2.34.2",
]
EXTRAS_REQUIRE = {
"dev": [
"mock~=5.2.0",
"msgpack~=1.1.2",
"msgpack~=1.2.0",
"pebble~=5.2.0",
"pipdeptree~=2.30.0",
"pytest~=9.0.0",
"pytest-cov~=6.0.0",
"pipdeptree~=3.1.0",
"pytest~=9.1.0",
"pytest-cov~=7.1.0",
"pytest-timeout~=2.4.0",
"responses~=0.26.0",
"responses~=0.26.1",
]
}
CLI = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ openssl req \
-newkey rsa:4096 \
-keyout ca/private/ca_key.pem \
-out ca/ca_cert.pem \
-subj "/C=US/ST=Acme State/L=Acme City/O=Acme Inc./CN=0.0.0.0"
-subj "/C=US/ST=Acme State/L=Acme City/O=Acme Inc./CN=Devo Test CA"

# Create server private key and certificate request
mkdir -p server/private
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_sender_send_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ def test_fake_get_peer_cert_chain(setup):
chain_certs.append(crypto.load_certificate(crypto.FILETYPE_PEM, str(_ca)))

for a, b in zip(fake_chain_cert, chain_certs):
assert a.get_subject() == b.get_subject()
assert a.to_cryptography() == b.to_cryptography()


def test_open_file(setup):
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_sender_send_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def test_deprecated_warning(setup):
verify_mode=CERT_NONE,
)
con = Sender(engine_config)
with pytest.warns(DeprecationWarning) as record:
with pytest.warns(DeprecationWarning, match="lookup upload functionality") as record:
lookup = Lookup(name=setup.lookup_name, historic_tag=None, con=con)

with open(setup.lookup_file) as f:
Expand Down
Loading