@artooi/ag-ui-web-component 0.25.0 → 0.25.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
@@ -7,6 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.25.2] — 2026-08-25
11
+
12
+ ### Fixed
13
+
14
+ - **A server-side tool round went silent between the tool card and the answer.**
15
+ The pending indicator is hidden when a tool call arrives, so the card can be
16
+ the live thing on screen. Client-side tools put it back before returning their
17
+ result; the server-side path never did — so once a streamed result settled the
18
+ card, the wait while the server called the model again had nothing to own it.
19
+ With a large attachment inlined into the tool result, and re-sent with every
20
+ subsequent request, that is the longest pause in a run.
21
+
22
+ The indicator now returns when a streamed result settles a card, and is
23
+ cleared by whatever comes next: reasoning, the first text delta, the round
24
+ ending, or the terminal settle guarantee. This is not the case 0.2.1 removed
25
+ it for — that one runs after the run has ended, where nothing would clear it.
26
+ The terminal guarantee that shipped in the same release is what makes showing
27
+ it here safe.
28
+
29
+ ## [0.25.1] — 2026-08-24
30
+
31
+ ### Fixed
32
+
33
+ - **Two runs that opened on the same sentence read alike in the checkpoint
34
+ panel.** A row leads with the run's first user message and hides the short id
35
+ once it has one, on the argument that the words are the identity. A real run
36
+ index then answered with five runs all opening on "what is on the board?", and
37
+ those rows were as indistinguishable as five timestamps used to be. A preview
38
+ identifies a run only while it is that run's own, so the id comes back for the
39
+ rows whose preview another row repeats and stays hidden for the rows whose words
40
+ are their own — one panel now shows some rows with an id and some without, each
41
+ carrying the best identity it has. Previews are compared as the row renders
42
+ them: whitespace collapsed, case kept, since two spellings a person can tell
43
+ apart are two labels. No new part and no new fallback — `checkpoint-id` is the
44
+ one the time-only row has always used.
45
+
10
46
  ## [0.25.0] — 2026-08-14
11
47
 
12
48
  ### Added
@@ -1537,7 +1573,9 @@ hosts that both arrange the page the way it expects.
1537
1573
  ### Notes
1538
1574
  - First release — exercising the automated npm OIDC publish pipeline end-to-end.
1539
1575
 
1540
- [Unreleased]: https://github.com/Artui/ag-ui-web-component/compare/v0.25.0...HEAD
1576
+ [Unreleased]: https://github.com/Artui/ag-ui-web-component/compare/v0.25.2...HEAD
1577
+ [0.25.2]: https://github.com/Artui/ag-ui-web-component/compare/v0.25.1...v0.25.2
1578
+ [0.25.1]: https://github.com/Artui/ag-ui-web-component/compare/v0.25.0...v0.25.1
1541
1579
  [0.25.0]: https://github.com/Artui/ag-ui-web-component/compare/v0.24.0...v0.25.0
1542
1580
  [0.24.0]: https://github.com/Artui/ag-ui-web-component/compare/v0.23.1...v0.24.0
1543
1581
  [0.23.1]: https://github.com/Artui/ag-ui-web-component/compare/v0.23.0...v0.23.1
package/README.md CHANGED
@@ -1250,9 +1250,10 @@ conversations: a time is not an identity, since two runs a minute apart both rea
1250
1250
  "just now", and a run id is not something a person recognises. Where the server
1251
1251
  sends no preview — an older index, or a run that opened on an image with no
1252
1252
  caption — the row falls back to the time plus the first eight characters of the
1253
- id (full id on hover, for correlating with server logs). Either way a run that
1254
- branched from another is marked, so a fork doesn't read as a duplicate of its
1255
- parent.
1253
+ id (full id on hover, for correlating with server logs), and so does a row whose
1254
+ preview another row repeats: words shared with a second row identify neither, and
1255
+ one board tends to be asked about more than once. Either way a run that branched
1256
+ from another is marked, so a fork doesn't read as a duplicate of its parent.
1256
1257
 
1257
1258
  Type the next turn in the composer, then pick a row:
1258
1259