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
8 changes: 8 additions & 0 deletions .jules/warden.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,11 @@ Observed the preceding agent optimized the ignore file watcher hot path by compl

Alignment / Deferred:
Version bumped to `0.1.18` as a patch release. Updated CHANGELOG.md.

## 2026-04-27 — Assessment & Lifecycle

Observation / Pruned:
Observed the preceding agent optimized console logging by escaping string inputs before passing them into `rich.console.print`, successfully preventing `MarkupError` exceptions when user-provided data contains tag-like bracket characters. Verified structural soundness and successful test execution without crashes.

Alignment / Deferred:
Version bumped to `0.1.20` as a patch release reflecting the crash fix. No dead code required pruning.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.1.20] - 2026-04-27

### Changed
* **[Reliability]:** Fixed a bug where `rich` would crash with a `MarkupError` if user-provided strings (like exceptions or filenames) contained unescaped markup tags like `[bracket]`.

## [0.1.19] - 2026-04-26

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "echo-watcher"
version = "0.1.19"
version = "0.1.20"
description = "📡 Lightweight file watcher. Trigger commands on changes. <5MB RAM, single binary."
authors = [
{ name = "shenald-dev", email = "bot@shenald.dev" }
Expand Down
Loading