ur-agent 1.43.0 → 1.43.2
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 +21 -0
- package/dist/cli.js +278 -162
- package/documentation/index.html +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.43.2
|
|
4
|
+
|
|
5
|
+
- Fix artifact pages hanging blank: diff viewer assets (diff2html,
|
|
6
|
+
highlight.js theme) are now served locally from `/assets` via the new
|
|
7
|
+
`diff2html` dependency instead of render-blocking CDN tags, and the viewer
|
|
8
|
+
script moved to the end of the body — pages paint instantly even offline.
|
|
9
|
+
- `ur artifacts serve` in headless mode now keeps the process alive serving
|
|
10
|
+
until Ctrl+C (previously the process exited and killed the server), and the
|
|
11
|
+
port can be passed positionally (`ur artifacts serve 4181`).
|
|
12
|
+
|
|
13
|
+
## 1.43.1
|
|
14
|
+
|
|
15
|
+
- Artifacts page renders diffs VS Code-style: side-by-side/inline views with
|
|
16
|
+
syntax highlighting via diff2html (plain-text fallback when offline). New
|
|
17
|
+
live view `/diff` shows current working-tree changes without manual capture,
|
|
18
|
+
with a one-click "Capture as artifact" button (`POST /api/capture-diff`,
|
|
19
|
+
`GET /api/diff`).
|
|
20
|
+
- Tolerate empty-string parameter names in model tool calls: stripped before
|
|
21
|
+
validation instead of failing with `An unexpected parameter \`\` was
|
|
22
|
+
provided`.
|
|
23
|
+
|
|
3
24
|
## 1.43.0
|
|
4
25
|
|
|
5
26
|
- Add `ur artifacts serve [--port 4180]`: a local web page for artifacts.
|