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 @@ -5,6 +5,13 @@ All notable changes to `fabric-comanage-api` are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.2] - 2026-05-28

### Security

- Bumped `idna` to `>=3.15` (resolved to 3.17 in the lock file) to remediate
[CVE-2026-45409](https://github.com/advisories) (transitive via `requests`).

## [0.2.1] - 2026-05-13

### Security
Expand Down
2 changes: 1 addition & 1 deletion comanage_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from ._sshkeys import SshKeysMixin

# fabric-comanage-api version
__VERSION__ = "0.2.1"
__VERSION__ = "0.2.2"

# Library logging: NullHandler prevents "last resort" output for callers
# who don't configure logging. Callers who want logs should add their own
Expand Down
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_retry_adapter_mounted(self, api, mock_adapter):
assert isinstance(adapter, HTTPAdapter)

def test_version(self):
assert __VERSION__ == '0.2.1'
assert __VERSION__ == '0.2.2'


class TestOptionSets:
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading