ur-agent 1.22.5 → 1.22.7
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 +36 -0
- package/dist/cli.js +2215 -1303
- package/docs/AGENT_FEATURES.md +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.22.7
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- Fixed `ur task run <id>` so it starts the queued worktree task created by
|
|
7
|
+
`ur task start` instead of creating a second background task whose prompt is
|
|
8
|
+
the id.
|
|
9
|
+
- Added explicit sandbox approval levels for `read-only`, `edit project`,
|
|
10
|
+
`run safe commands`, `run network commands`, and `destructive commands`.
|
|
11
|
+
- Made task PR summaries PR-shaped and evidence-safe: they now include a
|
|
12
|
+
labeled summary, changed files, tests run, detected verification commands,
|
|
13
|
+
risks, rollback command, and remaining TODOs without claiming tests ran when
|
|
14
|
+
UR has no recorded evidence.
|
|
15
|
+
- Extended CI-loop failure memory so failed commands record attempted fixes and
|
|
16
|
+
eventual resolutions, allowing future similar failures to surface the fix
|
|
17
|
+
history.
|
|
18
|
+
|
|
19
|
+
### Verified
|
|
20
|
+
- Added focused coverage for approval-level mapping, `ur task start` to
|
|
21
|
+
`ur task run`, PR-quality output sections, and CI-loop failure memory.
|
|
22
|
+
- Verified source and production bundle release checks for the `1.22.7` build.
|
|
23
|
+
|
|
24
|
+
## 1.22.6
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
- Fixed Bash tool runtime execution failing every command with
|
|
28
|
+
`timeoutMs is not defined` by keeping the command hook timeout value in scope
|
|
29
|
+
before lifecycle hooks run.
|
|
30
|
+
- Fixed Edit/Update tool runtime execution failing with
|
|
31
|
+
`toolUseContext is not defined` by preserving the full tool context inside
|
|
32
|
+
file edit calls.
|
|
33
|
+
|
|
34
|
+
### Verified
|
|
35
|
+
- Added lifecycle runtime regressions for both `BashTool.call` and
|
|
36
|
+
`FileEditTool.call`.
|
|
37
|
+
- Verified source and production bundle release checks for the `1.22.6` build.
|
|
38
|
+
|
|
3
39
|
## 1.22.3
|
|
4
40
|
|
|
5
41
|
### Added
|