Skip to content

Commit b350bf1

Browse files
authored
chore: Update dependencies and CHANGELOG (#284)
1 parent 235529f commit b350bf1

File tree

4 files changed

+29
-12
lines changed

4 files changed

+29
-12
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ 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+
## [5.3.0] - 2024-06-18
8+
9+
### Added
10+
11+
- Force flush in Sender buffer to send incomplete buffers after a timeout
12+
- `mock` dependency added to testing requirements
13+
14+
### Changed
15+
16+
- `requests` dependency upgraded from `requests~=2.31` to `requests~=2.32`
17+
- `certifi` dependency upgraded from `certifi~=2024.2.2` to `certifi~=2024.6.2`
18+
- `cryptography` dependency upgraded from `cryptography~=42.0.5` to `cryptography~=42.0.8`
19+
- `pipdeptree` dependency upgraded from `pipdeptree~=2.17.0` to `pipdeptree~=2.23.0`
20+
- `pytest` dependency upgraded from `pytest~=8.1.1` to `pytest~=8.2.2`
21+
722
## [5.2.0] - 2024-04-10
823

924
### Added

requirements-test.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
stopit==1.1.2
22
msgpack~=1.0.8
33
responses~=0.25.0
4-
pipdeptree~=2.17.0
5-
pytest~=8.1.1
4+
pipdeptree~=2.23.0
5+
pytest~=8.2.2
66
pytest-cov~=5.0.0
7-
mock==5.1.0
7+
mock==5.1.0

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
click==8.1.7
22
PyYAML==6.0.1
3-
requests~=2.31
3+
requests~=2.32
44
pem~=21.2.0
55
pyopenssl~=24.1.0
66
pytz~=2024.1
7-
certifi~=2024.2.2
8-
cryptography~=42.0.5
7+
certifi~=2024.6.2
8+
cryptography~=42.0.8

setup.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@
2525
"Topic :: Software Development :: Libraries :: Python Modules",
2626
]
2727
INSTALL_REQUIRES = [
28-
"requests~=2.31",
28+
"requests~=2.32",
2929
"click==8.1.7",
3030
"PyYAML==6.0.1",
3131
"pem~=21.2.0",
3232
"pyopenssl~=24.1.0",
3333
"pytz~=2024.1",
34-
"certifi~=2024.2.2",
35-
"cryptography~=42.0.5",
34+
"certifi~=2024.6.2",
35+
"cryptography~=42.0.8",
3636
]
3737
EXTRAS_REQUIRE = {
3838
"dev": [
3939
"stopit==1.1.2",
4040
"msgpack~=1.0.8",
4141
"responses~=0.25.0",
42-
"pipdeptree~=2.17.0",
43-
"pytest~=8.1.1",
42+
"pipdeptree~=2.23.0",
43+
"pytest~=8.2.2",
4444
"pytest-cov~=5.0.0",
4545
]
4646
}
@@ -66,7 +66,9 @@ def find_meta(meta):
6666
"""
6767
Extract __*meta*__ from META_FILE.
6868
"""
69-
meta_match = re.search(r"^__{meta}__ = ['\"]([^'\"]*)['\"]".format(meta=meta), META_FILE, re.M)
69+
meta_match = re.search(
70+
r"^__{meta}__ = ['\"]([^'\"]*)['\"]".format(meta=meta), META_FILE, re.M
71+
)
7072
if meta_match:
7173
return meta_match.group(1)
7274
raise RuntimeError("Unable to find __{meta}__ string.".format(meta=meta))

0 commit comments

Comments
 (0)