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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

This project uses [Semantic Versioning 2.0.0](http://semver.org/), the format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

### Security

- Raised the minimum `urllib3` version to `>=2.7.0` to address CVE-2026-44431 and CVE-2026-44432.
- Raised the minimum `idna` version to `>=3.15` to address CVE-2026-45409.

## 8.0.0 - 2026-05-05

### Changed
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ classifiers = [
python = "^3.12"
requests = "^2.28.2"
omitempty = "^0.1.1"
# Minimum versions for transitive dependencies for security
urllib3 = ">=2.7.0"
idna = ">=3.15"

[tool.poetry.group.test.dependencies]
responses = ">=0.23.1,<0.27.0"
Expand Down