-
-
Notifications
You must be signed in to change notification settings - Fork 73
Release v0.30.0-beta7 #274
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
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
0e615fe
fix(upgrade-beta): point the post-install 'back to stable' hint to th…
tis24dev 7b98b63
feat(whatsnew): open Screen 0 at the end of a human-driven upgrade
tis24dev 7e716e0
docs(streamtask): hint shift+drag to select a section in the run-outp…
tis24dev 6c8cb2a
docs(streamtask): cover macOS in the select-a-section hint (shift/opt…
tis24dev ce9b327
fix(install): render the post-install disabled-components summary as …
tis24dev 01675d7
fix(notify): emit one warning per channel failure, not two
tis24dev c43ea9c
feat(relay): handle SERVER_PARKED (410) by clearing the token and re-…
tis24dev dd1ccb8
fix(relay): provision via POST /api/relay/provision, not legacy get-c…
tis24dev b44bf4e
fix: honor relay provisioning backoff
tis24dev 80fa0f9
fix(daemon): resolve gosec G115 integer overflow in retry jitter
tis24dev fd6ce3b
test(notify): cover relay provisioning error and Retry-After paths
tis24dev 8ff0af8
fix(notify): keep raw notifier error detail out of Warning-level logs
tis24dev e5b6d5f
fix(upgrade): open the what's-new screen only after a fully successfu…
tis24dev 763cbe5
chore(test): satisfy staticcheck QF1001 in the what's-new AST guard
tis24dev 575d577
fix(relay): surface the unrecoverable lost-secret provisioning state
tis24dev c7339d4
fix(dashboard): stream the full backup log into the viewport, not jus…
tis24dev 126e5bd
test(dashboard): assert pre-stream backlog replays in order, not just…
tis24dev 1e678c1
test(dashboard): apply De Morgan to the order assertion (staticcheck …
tis24dev 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
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
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.
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.
🎯 Functional Correctness | 🟠 Major | 🏗️ Heavy lift
Prevent log loss during the mirror-to-live-capture handoff.
After Line 58 clears the mirror, the logger still writes to
io.DiscarduntilcaptureRunOutputis installed at Line 164. Any concurrent log in that interval is absent from both the replay and the viewport. Make this transition atomic/serialized so every line reaches exactly one sink.🤖 Prompt for AI Agents