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
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,28 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Unreleased]

## [0.1.0] - 2026-06-18

### Added

- `__version__` in `app.py` for release tracking (`0.1.0.dev0` until the first `v0.1.0` git tag)
- `__version__` in `app.py` for release tracking (`0.1.0` — first tagged release)
- Startup guard refusing `--debug` with a non-loopback `--host` (including bracketed IPv6 loopback such as `[::1]`)
- [Deprecation policy](docs/deprecation-policy.md) for API and JSON field changes
- API field **stability** tables in `docs/api-reference.md` (stable / experimental / deprecated)
- Vitest coverage for router, page modules, and tool renderers (`static/js/`)
- `Content-Security-Policy` header on all Flask responses; theme-init IIFE externalized to `static/js/theme-init.js`
- `RoleLiteral` narrowing for `MessageDict.role` with unknown-role fallback
- Mtime-invalidated LRU `session_cache` shared across session, stats, search, projects, and export APIs
- CI benchmark regression gate with populated `benchmarks/baselines.json` (fails on >20% mean regression)

### Changed

- README notes that the server enforces the debug + host safety rule at startup
- `utils/jsonl_parser.__all__` trimmed to public API symbols only (`parse_session`, `quick_session_info`)

### Removed

- `export_count` on `GET /api/export/state` — use `last_export_session_count` (deprecated in PR #60; removed before first `v0.1.0` tag per [deprecation policy](docs/deprecation-policy.md) bundled SPA path; SPA updated in same `[Unreleased]` cut)
- `export_count` on `GET /api/export/state` — use `last_export_session_count` (deprecated in PR #60; removed before `v0.1.0` per [deprecation policy](docs/deprecation-policy.md) bundled SPA path; SPA updated in same release cut)

[Unreleased]: https://github.com/cppalliance/claude-code-chat-browser/compare/f70505982d435f8b1f754cb18c0c9f65609f11b4...HEAD
[Unreleased]: https://github.com/cppalliance/claude-code-chat-browser/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/cppalliance/claude-code-chat-browser/commits/v0.1.0
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Flask app that serves the web GUI for browsing sessions."""

__version__ = "0.1.0.dev0"
__version__ = "0.1.0"

import argparse
import sys
Expand Down
2 changes: 1 addition & 1 deletion docs/deprecation-policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ For fields **only read by the bundled SPA** (no external integrators on a tagged

| Field | Endpoint | Status | Replacement | Notes |
|-------|----------|--------|-------------|-------|
| `export_count` | `GET /api/export/state` | removed | `last_export_session_count` | Deprecated in PR #60 (`[Unreleased]`); removed in bundled SPA+API PR before first `v0.1.0` tag |
| `export_count` | `GET /api/export/state` | removed | `last_export_session_count` | Deprecated in PR #60 (`[Unreleased]`); removed in `[0.1.0]` |

## Versioning

Expand Down
Loading