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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.7.1] - 2026-05-14

### Changed
- **PoP default badge mode**: `connect()` now attempts Proof-of-Possession (IAL-1) badge first, with transparent fallback to CA-issued (IAL-0) badges (#69)

### Fixed
- Pass `private_key_path` through to badge keeper RPC start call (#69)
- Fix `__version__` in `__init__.py` (was stale at "2.6.0")
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in ceb7d72 — bumped CORE_VERSION from "2.7.0" to "2.7.1" in capiscio_sdk/_rpc/process.py.


## [2.7.0] - 2026-05-13

### Added
Expand Down Expand Up @@ -355,4 +364,3 @@ order = create_dv_order(domain="example.com", challenge_type="http-01", jwk=jwk)
[0.3.1]: https://github.com/capiscio/capiscio-sdk-python/releases/tag/v0.3.1
[0.3.0]: https://github.com/capiscio/capiscio-sdk-python/releases/tag/v0.3.0
[0.1.0]: https://github.com/capiscio/capiscio-sdk-python/releases/tag/v0.1.0

3 changes: 1 addition & 2 deletions capiscio_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
>>> result = validate_agent_card(card_dict) # Uses Go core
"""

__version__ = "2.6.0"
__version__ = "2.7.1"

# Core exports
from .executor import CapiscioSecurityExecutor, secure, secure_agent
Expand Down Expand Up @@ -151,4 +151,3 @@
"DECISION_DENY",
"DECISION_OBSERVE",
]

2 changes: 1 addition & 1 deletion capiscio_sdk/_rpc/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def _cleanup_stale_sockets() -> None:
pass

# Binary download configuration
CORE_VERSION = "2.7.0"
CORE_VERSION = "2.7.1"
GITHUB_REPO = "capiscio/capiscio-core"
CACHE_DIR = DEFAULT_SOCKET_DIR / "bin"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "capiscio-sdk"
version = "2.7.0"
version = "2.7.1"
description = "Runtime security middleware for A2A agents"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading