ur-agent 1.22.4 → 1.22.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.22.6
4
+
5
+ ### Fixed
6
+ - Fixed Bash tool runtime execution failing every command with
7
+ `timeoutMs is not defined` by keeping the command hook timeout value in scope
8
+ before lifecycle hooks run.
9
+ - Fixed Edit/Update tool runtime execution failing with
10
+ `toolUseContext is not defined` by preserving the full tool context inside
11
+ file edit calls.
12
+
13
+ ### Verified
14
+ - Added lifecycle runtime regressions for both `BashTool.call` and
15
+ `FileEditTool.call`.
16
+ - Verified source and production bundle release checks for the `1.22.6` build.
17
+
3
18
  ## 1.22.3
4
19
 
5
20
  ### Added
@@ -30,6 +45,21 @@
30
45
  repo file classification, symbol/call/test/doc/config extraction, and index
31
46
  round-trips.
32
47
 
48
+ ## 1.22.5
49
+
50
+ ### Added
51
+ - **Real sandbox core architecture (`ur sandbox`).** New first-class command to inspect sandbox status, run dependency checks, initialize `.ur/safety-policy.json`, and evaluate shell-command approval levels.
52
+ - **Worktree-per-task (`ur task`).** New command surface to start, run, list, and hand off agent tasks in isolated git branches/worktrees: `task start <name> [--worktree]`, `task run <id>`, `task pr <id> [--create]`, `task list`, `task status <id>`.
53
+ - **PR-quality output formatter (`src/services/agents/prSummary.ts`).** Every task/PR result includes summary, changed files, tests to run, risks, rollback command, and remaining TODOs.
54
+ - **Failure memory (`src/services/agents/failureMemory.ts`).** Failed shell commands are recorded in project memory via `BashTool.tsx`, and similar previous failures are surfaced as hints in subsequent errors.
55
+
56
+ ### Changed
57
+ - Registered `sandbox` and `task` commands in `src/commands.ts` and `src/main.tsx`.
58
+ - Failure path in `src/tools/BashTool/BashTool.tsx` now records failures and prepends historical hints.
59
+
60
+ ### Verified
61
+ - `bun run typecheck`, `bun run lint`, `bun run test` (500 pass), `bun run bundle`, and `bun run smoke` all pass.
62
+
33
63
  ## 1.22.4
34
64
 
35
65
  ### Added