ur-agent 1.75.0 → 1.76.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 CHANGED
@@ -1,5 +1,56 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.76.2
4
+
5
+ - Release metadata and distributed component versions were synchronized with
6
+ `1.76.2` so packaging and release checks can complete without version drift.
7
+
8
+ ## 1.76.0
9
+
10
+ - Provider catalogues now refresh from each provider's official models API on
11
+ selection, connection, reconnection, explicit refresh, and cold runtime use.
12
+ Endpoint-scoped TTL caches, guarded Anthropic/Gemini pagination, OpenRouter
13
+ pricing/capability metadata, unavailable-model rejection, cancellation-safe
14
+ request coalescing, and explicit loading/empty/error/retry states prevent a
15
+ stale or unrelated model list from being presented as current.
16
+ - Tool definitions are prepared and validated before every supported provider
17
+ request. Local references and definitions remain intact, Gemini receives its
18
+ current JSON Schema form, malformed roots/nesting/arrays/enums/references and
19
+ duplicate names fail before network retries, and swarm-only fields are
20
+ removed from both properties and required lists.
21
+ - Every accepted non-trivial prompt starts a fresh dependency-ordered task-list
22
+ generation unless the user explicitly asks to extend the active one.
23
+ Completed and stale generations are archived as history, concurrent task
24
+ creation is atomic, and pending/running/completed/failed/skipped plus derived
25
+ blocked states are shown without deleting finished work after five seconds.
26
+ - Queue reservations now have an owner token and observable completion. A
27
+ prompt is processed as its own turn, dispatch failures are reported, expired
28
+ reservations cannot start late, and the UI releases a prompt that never
29
+ reached model execution instead of remaining falsely on working.
30
+ - Bash execution preserves stdout and stderr separately together with the real
31
+ exit code, signal, duration, command, and working directory. Timeouts request
32
+ termination, escalate only when needed, wait for terminal process evidence,
33
+ and distinguish timeout/cancellation/output-limit failures without retrying
34
+ a command or treating spawn as completion.
35
+ - AskUserQuestion payloads are normalized and validated before rendering,
36
+ accept common provider aliases and up to eight choices, reject malformed
37
+ payloads once with field-specific diagnostics, and run serially so duplicate
38
+ questions cannot race. Existing adaptive continuous-list navigation remains
39
+ intact for long and narrow views.
40
+ - Token accounting now aggregates unique provider-reported responses across
41
+ sequential, split, parallel, nested, failed, and retried operations. Tool
42
+ counts remain separate; unavailable token values are omitted rather than
43
+ fabricated as zero, while cached, reasoning, and provider-total fields are
44
+ preserved when reported.
45
+ - The compact status bar is wired to live task, agent, tool, provider/model,
46
+ runtime, context, update, and attention state. Saved field visibility wins
47
+ over stale custom output, width handling is Unicode-safe, and rapid or narrow
48
+ updates drop low-priority duplicates without hiding critical errors.
49
+ - Subagent completion is honest under partial failure: synchronous partial
50
+ results are marked as errors, asynchronous post-processing failures are
51
+ attached as warnings after successful work, active names cannot be silently
52
+ overwritten, and terminal tasks cannot transition from completed to failed.
53
+
3
54
  ## 1.75.0
4
55
 
5
56
  - The UI can no longer stay on "working" for a prompt that is running nowhere.