This release includes 1 breaking change for platform teams planning a safe upgrade.
✓ No known CVEs patched in this version
Topics
Summary
AI summaryBroad release touches Technical Changes, What's New, Bug Fixes, and board.
Full changelog
This release brings significant enhancements to the Kanban board (drag & drop, card management, shell access, sandbox fixes), a new ChatGPT provider, TUI layout customization, and numerous stability and usability fixes across the board, session management, and copy/paste experience.
What's New
- Adds a
chatgptprovider enabling sign-in with a ChatGPT Plus/Pro/Business account viadocker agent setup, without requiring anOPENAI_API_KEY - Adds
/customslash command to open a layout customization dialog for sidebar position and section visibility, with live preview and persistent settings - Adds a Section spacing selector to the
/customlayout dialog (Compact / Normal / Relaxed) - Adds warning and compacting states to the context-usage gauge, escalating color as usage approaches the compaction threshold and showing "compacting..." during compaction
- Adds
sshortcut on the board to open an interactive shell in the selected card's worktree - Adds digit keys 1–9 to move a board card directly to a numbered column, and adds mouse drag & drop to reposition cards
- Adds drag ghost preview showing where a dragged card will be inserted in the drop-target column
- Adds intermediate startup statuses (
starting→loading→attaching) on board cards to show boot progress - Adds project editing and reordering on the board: press
eor Enter on a project to rename it, with confirm-delete for destructive removals - Adds desktop notifications with hooks tip to the documentation, covering macOS and Linux examples for
on_user_inputandstopevents
Improvements
- Aligns TUI board card colors with the web board's status palette;
starting/loading/attachingrender in blue,runningin green, andpausedin a neutral color - Fades the dragged card immediately on the first mouse motion during a drag, providing instant visual feedback
- Clarifies the dirty-worktree removal prompt by listing the consequences of
yandNon separate lines before asking the question - Improves command categories in the help output
- Documents env vars needed for
notify-sendhooks in detached sessions (SSH, tmux, containers)
Bug Fixes
- Fixes board agent startup failures being silently discarded, leaving cards stuck in "starting" forever; failures are now surfaced on the card
- Fixes board control-plane sockets being placed inside the data dir, which prevented cards from starting in Docker sandboxes; sockets are now placed in the system temp dir
- Fixes board storing absolute paths that broke shared state in sandboxes; paths are now stored home-relative
- Fixes board not forwarding
--config-dir,--data-dir, and--cache-diroverrides to spawned agents - Fixes board path expansion, state load, and git repo check edge cases
- Fixes stale drag state and ignores wheel events mid-drag on the board
- Fixes a race condition where
RunSession/recallSessionclobbered the attached runtime's cancel, causingDeleteSessionto abort in-flight streams incorrectly - Fixes session DB being reset on transient open errors (e.g. Ctrl-C,
SQLITE_BUSY), which could silently wipe access to all past sessions - Fixes SQLite memory database opening before acquiring the advisory file lock, causing
SQLITE_BUSYraces under concurrent access - Fixes TUI selection copy being unreliable (random one-word copies, trailing padding, UI glyphs in clipboard) and improves copy button affordances
- Fixes redundant copy toast appearing alongside the inline "copied" flash when clicking a copy button
- Fixes emphasized text (e.g. "Esc to interrupt") being invisible on light themes due to incorrect color mapping
- Fixes global config file management: resolves a TUI panic on malformed config and several silent data-loss paths in the load/save cycle
- Fixes DNS resolution happening at construction time in
NewSSRFSafeTransport, which could slow agent startup or fail silently when DNS is unavailable - Fixes board reporting why a relaunch failed when attaching to an errored card, and drops per-card controller state without racing in-flight relaunches
- Fixes docs table of contents sidebar overlapping the footer on long pages by switching from
position:fixedtoposition:sticky
Technical Changes
- Renames
$BOARD_EDITORenvironment variable to$DOCKER_AGENT_BOARD_EDITOR; the old name is kept as a fallback for one release - Folds the ChatGPT sign-in flow into
docker agent setuprather than a separate command - Removes the agent catalog example from documentation
- Adds a lint rule flagging DNS resolution (
net.Lookup*/Resolver.Lookup*) in constructors
What's Changed
- docs: update CHANGELOG.md for v1.101.0 by @docker-read-write[bot] in https://github.com/docker/docker-agent/pull/3506
- chore: bump direct Go dependencies by @dgageot in https://github.com/docker/docker-agent/pull/3507
- fix(board): surface agent startup failures instead of silently doing nothing by @dgageot in https://github.com/docker/docker-agent/pull/3508
- feat(tui): add /custom command to customize layout by @Sayt-0 in https://github.com/docker/docker-agent/pull/3509
- fix(board): store paths home-relative so shared state works in sandboxes by @dgageot in https://github.com/docker/docker-agent/pull/3510
- chore(board): rename $BOARD_EDITOR to $DOCKER_AGENT_BOARD_EDITOR by @dgageot in https://github.com/docker/docker-agent/pull/3514
- feat(board): edit, reorder, and confirm-delete projects by @dgageot in https://github.com/docker/docker-agent/pull/3513
- fix(board): run agent control-plane sockets outside the data dir so cards start in docker sandboxes by @dgageot in https://github.com/docker/docker-agent/pull/3515
- feat(board): show intermediate startup statuses on cards by @dgageot in https://github.com/docker/docker-agent/pull/3516
- feat(board): add
sshortcut to open a shell in the card's worktree by @dgageot in https://github.com/docker/docker-agent/pull/3517 - fix(board): forward directory overrides to spawned agents by @dgageot in https://github.com/docker/docker-agent/pull/3518
- fix(board): clarify dirty-worktree removal prompt with explicit consequences by @dgageot in https://github.com/docker/docker-agent/pull/3520
- feat(board): align TUI card colors with web board status palette by @dgageot in https://github.com/docker/docker-agent/pull/3521
- feat(board): move cards to any column with digit keys and drag & drop by @dgageot in https://github.com/docker/docker-agent/pull/3522
- docs: sync documentation with recent main merges by @aheritier in https://github.com/docker/docker-agent/pull/3519
- Improve the command categories by @dgageot in https://github.com/docker/docker-agent/pull/3523
- feat(board): fade dragged card immediately and fix stale drag state by @dgageot in https://github.com/docker/docker-agent/pull/3524
- fix: don't clobber attached runtime's cancel in RunSession/recallSession by @dgageot in https://github.com/docker/docker-agent/pull/3525
- docs: add desktop notifications with hooks tip by @dgageot in https://github.com/docker/docker-agent/pull/3526
- feat(provider): add chatgpt provider with ChatGPT account sign-in by @Sayt-0 in https://github.com/docker/docker-agent/pull/3512
- fix(docs): switch .toc-aside from position:fixed to sticky in flex .main row by @dgageot in https://github.com/docker/docker-agent/pull/3527
- fix(userconfig): harden global config file management by @Sayt-0 in https://github.com/docker/docker-agent/pull/3529
- fix(tui): unreadable emphasized text on light themes by @Sayt-0 in https://github.com/docker/docker-agent/pull/3530
- docs: document env vars for notify-send hooks in detached sessions by @Sayt-0 in https://github.com/docker/docker-agent/pull/3531
- feat(board): preview the dragged card at its insertion point by @dgageot in https://github.com/docker/docker-agent/pull/3532
- feat(tui): add section spacing setting to /custom layout dialog by @Sayt-0 in https://github.com/docker/docker-agent/pull/3533
- fix(session): don't reset the session DB on transient open errors by @dgageot in https://github.com/docker/docker-agent/pull/3534
- fix(tui): make selection copy reliable and improve copy affordances by @Sayt-0 in https://github.com/docker/docker-agent/pull/3535
- fix(memory): open sqlite db under file lock to avoid SQLITE_BUSY races by @dgageot in https://github.com/docker/docker-agent/pull/3538
- feat(tui): add warning/compacting states to the context-usage gauge by @Sayt-0 in https://github.com/docker/docker-agent/pull/3537
- fix(tui): drop the redundant copy toast when the inline "copied" flash shows by @dgageot in https://github.com/docker/docker-agent/pull/3539
- fix(ssrf): avoid DNS resolution at construction time in NewSSRFSafeTransport by @dgageot in https://github.com/docker/docker-agent/pull/3540
Full Changelog: https://github.com/docker/docker-agent/compare/v1.101.0...v1.102.0
Breaking Changes
- Renames environment variable $BOARD_EDITOR to $DOCKER_AGENT_BOARD_EDITOR (fallback kept for one release)
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
Related context
Related tools
Earlier breaking changes
- v1.71.0 Freezes configuration schema v9 and starts v10 as latest version
Beta — feedback welcome: [email protected]