ur-agent 1.50.6 → 1.52.0
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,43 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.52.0
|
|
4
|
+
|
|
5
|
+
- Implemented Ollama Cloud authentication. The Ollama client sent no
|
|
6
|
+
`Authorization` header at all, so the hosted API was unreachable: local
|
|
7
|
+
sessions only worked because the signed-in daemon proxies `:cloud` models on
|
|
8
|
+
the user's behalf, and CI — which has no daemon — could not use Ollama at
|
|
9
|
+
all. `OLLAMA_API_KEY` is now sent as a bearer token, trimmed so a pasted
|
|
10
|
+
trailing newline cannot corrupt the header.
|
|
11
|
+
- A configured key with no configured host now resolves to `https://ollama.com`
|
|
12
|
+
rather than localhost, since a bare key is useless against a local daemon. An
|
|
13
|
+
explicit `OLLAMA_HOST` still wins, so self-hosted gateways are unaffected.
|
|
14
|
+
- Added `OLLAMA_API_KEY` to the Agentic CI provider-credential allowlist, so it
|
|
15
|
+
reaches the isolated agent while platform write tokens still do not. Together
|
|
16
|
+
these make `@ur` runnable in GitHub Actions against Ollama Cloud.
|
|
17
|
+
- Fixed the release gate hanging instead of failing. `bun test` loads all ~173
|
|
18
|
+
files into one process and peaks past 3 GB; when a runner OOM-kills it the
|
|
19
|
+
parent waits forever on dead children, which looks like a hang rather than a
|
|
20
|
+
failure. The gate now runs `--parallel=4`, which implies `--isolate` and
|
|
21
|
+
reclaims memory per worker. The suite itself was never broken.
|
|
22
|
+
|
|
23
|
+
## 1.51.0
|
|
24
|
+
|
|
25
|
+
- Added named permission profiles. `settings.permissions.profiles` holds named
|
|
26
|
+
rule sets (allow/deny/ask plus a description) and
|
|
27
|
+
`settings.permissions.activeProfile` selects one; its rules are appended to
|
|
28
|
+
the base lists from the same settings source. A misnamed profile contributes
|
|
29
|
+
nothing rather than failing open, and deny still beats allow downstream, so
|
|
30
|
+
a profile can only narrow or extend.
|
|
31
|
+
- Added `/import-session <path>` for session portability. It validates a
|
|
32
|
+
transcript exported from another machine line by line — all-or-nothing, so a
|
|
33
|
+
corrupt file can never half-import — caps size at the resume reader's limit,
|
|
34
|
+
and lands it under a fresh session id so imports never collide with local
|
|
35
|
+
history. The result prints the `ur -r <id>` command to resume it.
|
|
36
|
+
- Background agent completion and failure now fire the user's Notification
|
|
37
|
+
hooks with types `agent_completed` and `agent_failed`, so external tooling
|
|
38
|
+
(desktop notifiers, pagers, dashboards) can react to background work
|
|
39
|
+
finishing without polling. The in-app toast behavior is unchanged.
|
|
40
|
+
|
|
3
41
|
## 1.50.6
|
|
4
42
|
|
|
5
43
|
- Implemented `--effort` on Ollama. The support predicate compared
|