Skip to content

Commit 6899f38

Browse files
committed
chore(release): v1.9.54
Committed by Ashesh Goplani
1 parent b4ca1d8 commit 6899f38

2 files changed

Lines changed: 13 additions & 21 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.9.54] - 2026-06-10
11+
12+
### Added
13+
14+
- **Configurable agent tool-visibility denylist** ([#1346](https://github.com/asheshgoplani/agent-deck/pull/1346)). A new `[ui].hidden_tools` config option lets you hide selected agent tools from the picker (TUI + web), with a picker UI for managing the list. The `shell` tool is always available regardless of the denylist.
15+
1016
### Fixed
1117

12-
- `verify-session-persistence.sh` now degrades truthfully on macOS/non-systemd
13-
hosts: scenarios 3/4 `[SKIP]` when claude argv is unobservable on non-stub
14-
hosts — but `[FAIL]` in stub mode (`AGENT_DECK_VERIFY_USE_STUB=1`, i.e. CI),
15-
where the stub must record args and a `[SKIP]` would be a false-green on the
16-
mandatory gate. Scenario 5 resolves its tmux name via `session show --json`,
17-
and a malformed-JSON payload from a successful `session show --json` is
18-
surfaced (loud error) rather than masked as an empty name; likewise any
19-
non-not-found error from `session show --json` (exit 1 = DB/load/permission)
20-
now surfaces instead of degrading to a false-green `[SKIP]` — including down
21-
the argv-capture path, where scenarios 3/4 now `[FAIL]` on a real resolver
22-
error regardless of stub mode (vs flattening it to empty→`[SKIP]`). Cleanup removes
23-
ONLY the exact session titles this invocation created (tracked as each is
24-
created) — never a `verify-persist-${PID}` prefix match on `agent-deck list`
25-
output, which collided with foreign runs and fired even on a failed preflight
26-
(data-loss risks). `RUN_ID` is now per-invocation unique (PID + epoch seconds
27-
+ `${RANDOM}`) rather than a bare reusable PID, so two runs can never generate
28-
identical titles and cleanup can only match its own sessions even across a
29-
reused PID. The harness cleans up its own tempdir, requires `jq` explicitly,
30-
and the fake Claude stub no longer relies on GNU-only `sleep infinity`. Gated
31-
by new macOS + Linux unit tests.
18+
- **Quick fork no longer hangs on heavy repos** ([#1354](https://github.com/asheshgoplani/agent-deck/pull/1354)). Copying gitignored files during a fork is now opt-in via `[fork].with_ignored` (default off), fixing quick-fork hanging indefinitely on repos with large gitignored trees (regression since v1.9.49, [#1299](https://github.com/asheshgoplani/agent-deck/pull/1299)).
19+
- **Claude name-sync no longer clobbers user renames or fork titles** ([#1355](https://github.com/asheshgoplani/agent-deck/pull/1355)). Syncing a session's name from Claude no longer overwrites a title the user set manually or a fork's title. Renames now set `TitleLocked` consistently across the TUI, web, and CLI.
20+
21+
### Changed
22+
23+
- **Hardened the cross-platform persistence-verification harness** ([#1309](https://github.com/asheshgoplani/agent-deck/pull/1309)). `verify-session-persistence.sh` now degrades truthfully on macOS/non-systemd hosts: scenarios 3/4 `[SKIP]` when claude argv is unobservable on non-stub hosts — but `[FAIL]` in stub mode (`AGENT_DECK_VERIFY_USE_STUB=1`, i.e. CI), where the stub must record args and a `[SKIP]` would be a false-green on the mandatory gate. Scenario 5 resolves its tmux name via `session show --json`, and a malformed-JSON payload from a successful `session show --json` is surfaced (loud error) rather than masked as an empty name; likewise any non-not-found error from `session show --json` (exit 1 = DB/load/permission) now surfaces instead of degrading to a false-green `[SKIP]` — including down the argv-capture path, where scenarios 3/4 now `[FAIL]` on a real resolver error regardless of stub mode (vs flattening it to empty→`[SKIP]`). Cleanup removes ONLY the exact session titles this invocation created (tracked as each is created) — never a `verify-persist-${PID}` prefix match on `agent-deck list` output, which collided with foreign runs and fired even on a failed preflight (data-loss risks). `RUN_ID` is now per-invocation unique (PID + epoch seconds + `${RANDOM}`) rather than a bare reusable PID, so two runs can never generate identical titles and cleanup can only match its own sessions even across a reused PID. The harness cleans up its own tempdir, requires `jq` explicitly, and the fake Claude stub no longer relies on GNU-only `sleep infinity`. Gated by new macOS + Linux unit tests.
3224

3325
## [1.9.53] - 2026-06-09
3426

cmd/agent-deck/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"github.com/asheshgoplani/agent-deck/internal/web"
3838
)
3939

40-
var Version = "1.9.53" // overridden at build time via -ldflags "-X main.Version=..."
40+
var Version = "1.9.54" // overridden at build time via -ldflags "-X main.Version=..."
4141

4242
// Table column widths for list command output
4343
const (

0 commit comments

Comments
 (0)