@llblab/pi-telegram 0.26.7 → 0.26.8
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 Process-Startup Timing Hotfix
|
|
6
|
+
|
|
7
|
+
Context: the process-lock regression can start a full Pi child more slowly than the three-second marker deadline on hosted Windows. Unlike the previous boundary case, the empty final marker proves the parent had not completed extension startup yet; runtime lock behavior was never reached.
|
|
8
|
+
|
|
9
|
+
Open work:
|
|
10
|
+
|
|
11
|
+
- [x] Give the cold-start readiness marker and parent watchdog a Windows-safe bounded budget without weakening the no-child-poll assertion.
|
|
12
|
+
- [ ] Validate the focused process test and full suite across hosted platforms; publish and verify `0.26.8`.
|
|
13
|
+
|
|
14
|
+
Done when: slow Windows startup reaches the same lock assertion deterministically, genuine hangs remain bounded and diagnostic, and CI passes on Linux, macOS, and Windows.
|
|
15
|
+
|
|
16
|
+
## P1 — macOS Follower Reload Identity Release
|
|
6
17
|
|
|
7
18
|
Context: macOS lacks Linux `/proc` start ticks, so a follower previously received a generation-based profile identity on each extension reload. Initial registration could also race ahead of session refresh before the old target was restored, causing a duplicate Telegram thread.
|
|
8
19
|
|
|
@@ -12,7 +23,7 @@ Open work:
|
|
|
12
23
|
- [x] Carry a fresh previous runtime identity and exact target through initial follower registration, migrate the old binding after a visibility probe, and consume the handoff only after acknowledgement.
|
|
13
24
|
- [x] Replace the helper-only regression with a runtime-level registration test covering failed-attempt retention, envelope evidence, acknowledgement, and handoff consumption.
|
|
14
25
|
- [x] Update durable context, multi-instance documentation, changelog, and package metadata.
|
|
15
|
-
- [
|
|
26
|
+
- [x] Validate on Linux, macOS, and Windows; publish and verify `0.26.7`.
|
|
16
27
|
|
|
17
28
|
Done when: same-process follower reload preserves one thread and binding, the race is covered at the runtime boundary, all hosted platforms pass, and the hotfix is published.
|
|
18
29
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.26.8: Windows Process-Startup Timing
|
|
4
|
+
|
|
5
|
+
- `Windows CI`: Expanded only the full-Pi child readiness budget from three to ten seconds and aligned its parent watchdog at fifteen seconds. Impact: slow hosted-Windows cold starts reach the actual shared-lock assertion instead of failing before extension startup, while genuine hangs remain bounded and the test still rejects every child `getUpdates` call.
|
|
6
|
+
|
|
3
7
|
## 0.26.7: macOS Follower Reload Identity
|
|
4
8
|
|
|
5
9
|
- `macOS Identity`: Derived manual-follower process-birth identity from the parent process start time on Darwin while preserving Linux `/proc` start ticks and the generation fallback. Impact: extension reloads in one macOS Pi process retain a stable durable profile instead of looking like new followers.
|