-
Notifications
You must be signed in to change notification settings - Fork 1
chore: release v0.1.3 #77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,35 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | |
|
|
||
| ## [Unreleased] | ||
|
|
||
| ## [0.1.3] - 2026-07-03 | ||
|
|
||
| ### Fixed | ||
|
|
||
| - **Daemon**: streamed assistant/thinking messages were pushed into scrollback | ||
| twice (stream start + finalize) β duplicating rows on every replay/attach, | ||
| splitting memory episodes into promptless halves, and drifting the byte | ||
| accounting negative so the 20MB scrollback cap never fired. Scrollback now | ||
| upserts by messageId with real UTF-8 byte accounting, and the transcript | ||
| `seq` counter resumes past the persisted tail instead of restarting at 0. (#74) | ||
| - **Web**: transcript virtualizer was never notified on count/session changes | ||
| (stale layout ghosting after session switches and size-cache poisoning β the | ||
| residual cause of the row-overlap bug #73 targeted); scrolled-past rows | ||
| leaked their DOM subtrees forever; `session.list` was ingested twice per | ||
| refresh and rebuilt every sidebar row; pending-approval and notification | ||
| watchers re-scanned the full transcript on every streaming delta; usage | ||
| analytics showed *global* totals to identities owning zero sessions and | ||
| broke past ~1000 sessions (SQLite variable limit); analytics chart mixed | ||
| local-time and UTC day buckets. (#75) | ||
| - **Telegram**: every streamed assistant/thinking block was delivered twice; | ||
| one unhandled handler error (e.g. `/ls` rendering an unescaped | ||
| `tool_running` status) permanently stopped long polling; flood-limited | ||
| (429) messages vanished silently β grammY auto-retry now honors | ||
| `retry_after`; interleaved broadcasts mid-stream dropped or duplicated | ||
| streamed text; >4000-char replies could arrive with chunks out of order; | ||
| tool completion/cancellation states never rendered; buffered content was | ||
| silently discarded on session switch/detach and stale broadcasts from a | ||
| detached session could write into the new session's chat. (#76) | ||
|
|
||
|
Comment on lines
+9
to
+37
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π Maintainability & Code Quality | π‘ Minor | β‘ Quick win Update the changelog compare links with the new release. This new π€ Prompt for AI Agents |
||
| ## [0.1.2] - 2026-06-28 | ||
|
|
||
| ### Fixed | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π Maintainability & Code Quality | π‘ Minor | β‘ Quick win
Use the actual release date.
2026-07-03is in the future relative to2026-07-02, so this heading will be stale unless the tag is intentionally deferred.π€ Prompt for AI Agents