Synced from monorepo
Synced from monorepo Changes: - Release a shell session's resources in one drop - Make the tools blocking-wait cap client-configurable and self-describing - Recognize API "exceeds budget" errors as context overflow - Retry /btw on model overload - Carry running background tasks and subagents across compaction - Require round-trip time for SDK liveness checks - Background-subagent completion reminders with a selectable delivery surface - Make a PTY shell reap itself until it reaches the registry - Recover the OS error code from a TLS-phase connection reset - Consume the attached-client signal and report why idle is withheld - Treat `.grok/sandbox.toml` edits as protected so auto mode prompts before writing - Surface history/search in the Ctrl+. cheatsheet and keep it working in history view - Delete sessions from the dashboard and welcome list - Release a session's activity record when the session ends - Stop charging auth-retry budget for fail-closed 401s; reset it across suspends - Scope skills watches on project vendor roots - Make [stop] cancel in-flight compaction - Make the leader soak measure the leader, not its harness Source-Revision: 8d69c91f02bcacf01e98d5aebbf2f92547c45738
This commit is contained in:
parent
dd04f397b1
commit
a422116582
165 changed files with 15161 additions and 1969 deletions
|
|
@ -1,5 +1,9 @@
|
|||
# 0.2.115 — 2026-07-29
|
||||
|
||||
## Features
|
||||
|
||||
- **Delete sessions from the dashboard and welcome list.** On the dashboard, press `Ctrl+X` twice (or hover a settled row and click `[✗]` twice); in the welcome and `/resume` lists, press `d` then `y`.
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
- **Fixed chat history corruption** that could duplicate tool results or cause later 400 errors after repeated identical tool calls.
|
||||
|
|
|
|||
37
crates/codegen/xai-grok-shell/changelogs/0.2.117.json
Normal file
37
crates/codegen/xai-grok-shell/changelogs/0.2.117.json
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
[
|
||||
{
|
||||
"category": "fixes",
|
||||
"description": "**Stop command** now terminates all background subagents from prior turns.",
|
||||
"breaking_change": false
|
||||
},
|
||||
{
|
||||
"category": "features",
|
||||
"description": "**GROK_EXTRA_CA_BUNDLE** env var allows adding custom TLS root certificates.",
|
||||
"breaking_change": false
|
||||
},
|
||||
{
|
||||
"category": "fixes",
|
||||
"description": "**kill_task** tool now correctly reports when a task does not exist over ACP connections.",
|
||||
"breaking_change": false
|
||||
},
|
||||
{
|
||||
"category": "fixes",
|
||||
"description": "**get_task_output** no longer waits the full timeout for already-finished tasks over ACP.",
|
||||
"breaking_change": false
|
||||
},
|
||||
{
|
||||
"category": "performance",
|
||||
"description": "**Terminal resize** is much faster on long conversations in fullscreen mode.",
|
||||
"breaking_change": false
|
||||
},
|
||||
{
|
||||
"category": "fixes",
|
||||
"description": "**/usage** command and billing UI are hidden for enterprise auth setups.",
|
||||
"breaking_change": false
|
||||
},
|
||||
{
|
||||
"category": "fixes",
|
||||
"description": "**Plan approval** no longer starts Build when pressing Enter without notes in revise mode.",
|
||||
"breaking_change": false
|
||||
}
|
||||
]
|
||||
18
crates/codegen/xai-grok-shell/changelogs/0.2.117.md
Normal file
18
crates/codegen/xai-grok-shell/changelogs/0.2.117.md
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# 0.2.117 — 2026-07-30
|
||||
|
||||
## Features
|
||||
|
||||
- **GROK_EXTRA_CA_BUNDLE** env var allows adding custom TLS root certificates.
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
- **Stop command** now terminates all background subagents from prior turns.
|
||||
- **kill_task** tool now correctly reports when a task does not exist over ACP connections.
|
||||
- **get_task_output** no longer waits the full timeout for already-finished tasks over ACP.
|
||||
- **/usage** command and billing UI are hidden for enterprise auth setups.
|
||||
- **Plan approval** no longer starts Build when pressing Enter without notes in revise mode.
|
||||
|
||||
## Performance
|
||||
|
||||
- **Terminal resize** is much faster on long conversations in fullscreen mode.
|
||||
|
||||
Loading…
Reference in a new issue