v0.9.2
feder-cr/AIHawkv0.9.2Sep 6, 2026by feder-cr
AI Summary
This release fixes a display bug where events emitted after a page subscribed to `/chat/events` but before the response body started were shown twice: once as a replay and once as live. The fix adjusts the history snapshot timing to the exact moment of subscription.
Key Highlights
- Events emitted between subscription and response start are no longer shown twice
- History snapshot timing adjusted to the moment of subscribing
- Events are now shown distinctly as replay or live, not both
- Test case added to verify the fix
Full Release Notes
**Fixed.** An event emitted after a page subscribed to /chat/events but before its response body started was shown twice: once as replay, once as live. The history snapshot is now taken at the moment of subscribing, so the boundary between replay and live is that instant and nothing lands on both sides of it. Contributed by @Iams4kura in #1229, with a test that fails on the previous code.