ur-agent 1.78.8 → 1.78.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,55 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.78.10
4
+
5
+ - Provider-reported context overflow now triggers one bounded automatic
6
+ compaction-and-retry in the shipped build instead of immediately showing
7
+ `Context limit reached`. Emergency summary input replaces image/document
8
+ payloads with markers so a large Computer screenshot cannot prevent the
9
+ recovery itself; the original transcript remains unchanged. Automatic
10
+ recovery still respects the user's disable setting and never recurses inside
11
+ compact/session-memory workers.
12
+ - The normal screen no longer paints live answer drafts or completed
13
+ "I'll inspect..." tool preludes. It shows stable tool progress and the final
14
+ answer instead; the complete provider text remains untouched in transcript
15
+ history, exports, verbose diagnostics, and future model context. The
16
+ `◭ Mashoofing…` activity row is now independent from streamed content and
17
+ remains mounted throughout active work, so hiding narration never hides
18
+ liveness. Its primary line now includes the live task-board activity after
19
+ the ellipsis, width-bounded to stay on one row.
20
+ - Ollama Cloud streams now tolerate five minutes of silence during large-model
21
+ prefill or tool planning instead of failing after two. The deadline still
22
+ measures inactivity rather than total runtime and remains configurable with
23
+ `UR_STREAM_IDLE_TIMEOUT_MS`; remote sessions and cloud non-streaming fallback
24
+ keep their two-minute bounds, and real dead streams still terminate.
25
+
26
+ - A new actionable work board appears immediately, even before a model emits
27
+ `TaskCreate`. The first explicit model task atomically replaces that automatic
28
+ seed, so parallel creation does not duplicate or lose work. Corrective replies
29
+ and interruptions now resume the existing seed or explicit unfinished board
30
+ instead of echoing every user message as a new task title. A successful simple
31
+ turn completes its seed; an aborted turn leaves it pending for honest recovery.
32
+ - User interruptions no longer archive pending or in-progress tasks into an
33
+ apparently empty list. The next prompt advances the generation while keeping
34
+ unfinished work visible and instructs the agent to reconcile, update relevant
35
+ work, skip superseded work, and continue statuses. Completed terminal lists
36
+ move to readable history only for genuinely new work; corrective follow-ups
37
+ reopen the relevant active board.
38
+ - Crew concurrency tests now declare their branches read-only, matching the
39
+ runtime policy that unknown shared-checkout work serializes. The artifact
40
+ HTTP integration test also distinguishes a managed sandbox's blanket socket
41
+ denial from a real occupied-port failure without changing production server
42
+ behavior.
43
+
44
+ - Release tags can no longer be created safely from an old commit while a
45
+ newer version exists only in the working tree. `bun run release:tag` checks
46
+ that the tree is clean, the package version and newest changelog entry are in
47
+ `HEAD`, that exact commit is already the remote branch tip, and the version's
48
+ tag is unused. `--push` then creates and pushes one annotated immutable tag;
49
+ GitHub Actions owns GitHub Release and npm publication from the verified
50
+ tarball. Failed stale tags are left as history and the next patch version is
51
+ used instead of moving a tag.
52
+
3
53
  ## 1.78.8
4
54
 
5
55
  - Long model self-deliberation emitted through the ordinary answer channel is
package/README.md CHANGED
@@ -785,6 +785,8 @@ bun run release:check
785
785
  bun run package:check
786
786
  npm pack --dry-run
787
787
  npm publish --dry-run
788
+ bun run release:tag # read-only committed/pushed preflight
789
+ bun run release:tag -- --push # immutable tag; CI publishes the artifact
788
790
  ```
789
791
 
790
792
  `dist/cli.js` is intentionally tracked because GitHub installs use the bundled
package/RELEASE.md CHANGED
@@ -86,14 +86,34 @@ Do not publish if the package version already exists on npm.
86
86
 
87
87
  ## Publish
88
88
 
89
- Only after every check passes and the working tree is clean:
89
+ GitHub Actions publishes the exact tarball that passes the release workflow.
90
+ Do not run `npm publish` separately and do not create a tag before the release
91
+ commit is on the remote branch.
92
+
93
+ Only after every check passes, commit the complete release and push it:
90
94
 
91
95
  ```bash
92
96
  git add .
93
97
  git commit -m "chore: polish UR-Nexus production release"
94
98
  git push origin master
95
- npm publish
96
99
  ```
97
100
 
101
+ Wait for the `Test Production` workflow on that commit to pass. Then use the
102
+ guarded tag command; its default mode is a read-only preflight:
103
+
104
+ ```bash
105
+ bun run release:tag
106
+ bun run release:tag -- --push
107
+ ```
108
+
109
+ The command refuses to tag a dirty tree, an uncommitted version, a commit that
110
+ is not yet the remote branch tip, a mismatched changelog, or a local/remote tag
111
+ that already exists. `--push` creates one annotated immutable tag pointing at
112
+ the verified commit. That tag starts `.github/workflows/release.yml`, which
113
+ rebuilds and verifies the package, publishes the GitHub Release, and publishes
114
+ the same verified tarball to npm.
115
+
116
+ If a tag was accidentally pushed from the wrong commit, keep it as failed
117
+ release history and bump to a fresh patch version. Do not move a published tag.
98
118
  If the remote default branch is not `master`, push the checked-out release
99
- branch instead.
119
+ branch instead; the tag command verifies that branch by name.