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
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ All notable changes to **AgentDiff** (`agent-trajectory-diff`) are documented he
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).

## [Unreleased]
## [0.5.0] - 2026-09-02

AgentDiff v0.5.0 — the **Circuit Breaker** release: statistical baselines, an
honest gate, and a self-serve approve bot. Highlights: N-run baseline
envelopes with variance bands (flaky agents stop flipping the gate), decoupled
failure modes (loops always block; path drift and cost are human judgments),
`/agentdiff approve` re-baselines from the PR thread as **agentdiff-ci[bot]**
via the hosted identity service, `agentdiff init` writes a production-ready
gate in seconds, and every report's provenance now describes the gate that
actually judged it.

### Added
- **Hosted identity service** (`worker/`): a stateless Cloudflare Worker
Expand Down Expand Up @@ -330,4 +339,5 @@ regression engine for multi-turn, tool-using AI agents.
- Requires Python 3.10+.
- Licensed under MIT.

[0.2.0]: https://github.com/kerrshift/agentdiff/releases/tag/v0.2.0
[0.2.0]: https://github.com/kerrshift/agentdiff/releases/tag/v0.2.0
[0.5.0]: https://github.com/kerrshift/agentdiff/releases/tag/v0.5.0
2 changes: 1 addition & 1 deletion src/agentdiff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
assert_no_regressions(report)
"""

__version__ = "0.4.0"
__version__ = "0.5.0"

from agentdiff.adapters import (
BaseAdapter,
Expand Down
Loading