ur-agent 1.76.7 → 1.76.10
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,62 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.76.10
|
|
4
|
+
|
|
5
|
+
- `npm publish` builds before it validates. `prepack` ran `release:check`
|
|
6
|
+
against whatever `dist/` happened to be on disk, so publishing straight after
|
|
7
|
+
a version bump always failed on a bundle that predated it — which is exactly
|
|
8
|
+
how 1.76.9 failed to publish. It now runs `build && release:check`, so the
|
|
9
|
+
check validates the artifact that actually ships.
|
|
10
|
+
- A backgrounded subagent that exhausts its turn budget says so in its
|
|
11
|
+
completion notification instead of presenting a truncated result as a
|
|
12
|
+
finished one. The notification status has no value for "incomplete", so the
|
|
13
|
+
notice is carried in the message, matching how the handoff warning is
|
|
14
|
+
surfaced on the same path.
|
|
15
|
+
|
|
16
|
+
## 1.76.9
|
|
17
|
+
|
|
18
|
+
- Crew fan-out no longer abandons sibling workers when one throws. Both paths
|
|
19
|
+
passed raw worker promises to `Promise.race`/`Promise.all`, so the first
|
|
20
|
+
throw propagated while every other worker kept running unawaited, leaking
|
|
21
|
+
worktrees and child processes and turning a second failure into an unhandled
|
|
22
|
+
rejection. Failures are collected and rethrown once all workers finish.
|
|
23
|
+
- `bunfig.toml` and the JetBrains `build.gradle.kts` are bumped with every
|
|
24
|
+
other surface; both were left behind by an earlier hand-edited bump.
|
|
25
|
+
- `packageSmoke` no longer declares a 30s per-test budget that silently
|
|
26
|
+
overrode the release gate's own timeout, and the OpenAI Responses usage test
|
|
27
|
+
no longer asserts the double-counted `input_tokens` that the usage-accounting
|
|
28
|
+
invariants forbid.
|
|
29
|
+
|
|
30
|
+
## 1.76.8
|
|
31
|
+
|
|
32
|
+
- Streaming requests no longer time out while the provider is still working.
|
|
33
|
+
SSE comment keepalives (OpenRouter's `: OPENROUTER PROCESSING`) and provider
|
|
34
|
+
`ping` events were dropped by the SSE readers, so the inactivity watchdog saw
|
|
35
|
+
a frozen stream while bytes were arriving and aborted it as `Request timed
|
|
36
|
+
out`. They now surface as pings that rearm the watchdog.
|
|
37
|
+
- Streaming requests get their own header-wait ceiling
|
|
38
|
+
(`provider.streamTimeoutMs` / `UR_STREAM_REQUEST_TIMEOUT_MS`, default 15
|
|
39
|
+
minutes) instead of sharing the 120s non-streaming timeout, which cut off long
|
|
40
|
+
prompts during queueing and prefill. Idle thresholds raised to 300s.
|
|
41
|
+
- The Ollama stream deadline is rearmed per chunk, so it bounds silence rather
|
|
42
|
+
than total runtime; a local model answering a long prompt is no longer killed
|
|
43
|
+
mid-answer.
|
|
44
|
+
- Edit resolves `old_string` against blocks the model re-indented, `Read`
|
|
45
|
+
line-number gutters copied into the string, and non-breaking/zero-width
|
|
46
|
+
character differences. `new_string` is re-indented to the file's depth. A
|
|
47
|
+
failed match now names the line where the block diverges instead of echoing
|
|
48
|
+
the string back.
|
|
49
|
+
- AskUserQuestion no longer replaces an unrepairable payload with `null`, which
|
|
50
|
+
made every failure report a missing `questions` array regardless of the real
|
|
51
|
+
defect.
|
|
52
|
+
- Concurrent tool and subagent fan-out closes every generator it started when a
|
|
53
|
+
consumer aborts or a sibling throws; previously their `finally` blocks never
|
|
54
|
+
ran, leaving subprocesses and streams alive after the batch reported done.
|
|
55
|
+
- Both tool executors read one concurrency resolver, so
|
|
56
|
+
`UR_CODE_MAX_TOOL_USE_CONCURRENCY` and `UR_MAX_CONCURRENT_TOOLS` apply on
|
|
57
|
+
either path instead of whichever executor happened to be active.
|
|
58
|
+
- A subagent that exhausts its turn budget reports `partial` with the reason
|
|
59
|
+
rather than `completed` with a truncated result.
|
|
3
60
|
## 1.76.7
|
|
4
61
|
|
|
5
62
|
- Reverted to the 1.76.4 behavior and removed the intermediate version surface transitions.
|