@llblab/pi-telegram 0.26.5 → 0.26.6
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/BACKLOG.md +13 -2
- package/CHANGELOG.md +4 -0
- package/package.json +1 -1
package/BACKLOG.md
CHANGED
|
@@ -2,7 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
_This backlog tracks only open release-relevant work: hotfixes, bounded maintenance, live runtime verification, evidence-gated Telegram client follow-ups, and upstream Pi API blockers. Completed outcomes and validation evidence belong in `CHANGELOG.md`, not in this queue._
|
|
4
4
|
|
|
5
|
-
## P0 —
|
|
5
|
+
## P0 — Windows Poll-Wait Boundary Hotfix
|
|
6
|
+
|
|
7
|
+
Context: a Windows process-lock regression reached its expected `parent:getUpdates` marker at the polling deadline, but the shared wait helper failed immediately after its final read without applying the predicate to that last value. This produces a false timeout despite successful behavior.
|
|
8
|
+
|
|
9
|
+
Open work:
|
|
10
|
+
|
|
11
|
+
- [x] Reapply the predicate after the final file read before reporting a timeout.
|
|
12
|
+
- [ ] Validate the process-lock regression across hosted platforms and publish `0.26.6`.
|
|
13
|
+
|
|
14
|
+
Done when: deadline-edge marker arrival succeeds, genuine missing markers still fail with evidence, and CI passes on Linux, macOS, and Windows.
|
|
15
|
+
|
|
16
|
+
## P1 — Scoped Model Thinking Label Release
|
|
6
17
|
|
|
7
18
|
Context: scoped model buttons still separate their optional thinking level with a middle dot. Parentheses match the quieter subordinate-metadata convention now used by Activity update omission labels.
|
|
8
19
|
|
|
@@ -10,7 +21,7 @@ Open work:
|
|
|
10
21
|
|
|
11
22
|
- [x] Render scoped model buttons as `provider/model (level)` when a thinking level is attached.
|
|
12
23
|
- [x] Update focused regression, changelog, and package metadata.
|
|
13
|
-
- [
|
|
24
|
+
- [x] Publish and verify GitHub/npm release evidence for `0.26.5`.
|
|
14
25
|
|
|
15
26
|
Done when: optional thinking metadata uses parentheses consistently, validation passes, and the hotfix is published.
|
|
16
27
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.26.6: Windows Poll-Wait Boundary Fix
|
|
4
|
+
|
|
5
|
+
- `Windows CI`: Reapplied the wait predicate to the final marker-file read before reporting a timeout. Impact: process-lock regressions no longer fail when Windows exposes the expected marker exactly at the polling deadline, while genuinely missing evidence still produces the same diagnostic failure.
|
|
6
|
+
|
|
3
7
|
## 0.26.5: Quieter Scoped Model Labels
|
|
4
8
|
|
|
5
9
|
- `Model Microcopy`: Replaced the middle-dot separator in scoped model buttons with parentheses, rendering optional thinking metadata as `provider/model (level)`. Impact: model identity stays primary while its attached thinking level reads as subordinate metadata consistently with Activity omission labels.
|