-
Notifications
You must be signed in to change notification settings - Fork 189
fix(web): late callback dedup across invocation boundaries #410
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
Closed
Closed
Changes from 22 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
0b74f10
fix(web): late callback dedup — preserve finalizedStreamRef across in…
mindfn 28ad49d
fix(web): add cross-invocation content fence to prevent silent histor…
mindfn 770a8a3
chore: drop unrelated pnpm-lock.yaml churn (gpt52 P3)
mindfn 17cb488
fix(web): use !== undefined instead of truthy for content guard (gpt5…
mindfn 3929d8b
fix(ci): satisfy biome formatting for content guards [砚砚/GPT-5.4🐾]
mindfn 2c66ae8
fix(web): invalidate stale finalized refs across multiple invocation …
mindfn 8f4204a
fix(ci): format IME guard test after main sync [砚砚/GPT-5.4🐾]
mindfn 5c67618
fix(web): keep unmatched callback bubbles invocationless [砚砚/GPT-5.4🐾]
mindfn ad2f6b1
fix(web): restore callback-first late-stream suppression [砚砚/GPT-5.4🐾]
mindfn f4c01ad
fix(web): avoid inferred lock on fenced callback fallback [砚砚/GPT-5.4🐾]
mindfn 13fb8ef
fix(web): preserve suppression for invocationless callback merges [砚砚…
mindfn f0b17dc
fix(web): skip bg fallback for explicit callback invocations [砚砚/GPT-…
mindfn 859f552
fix(web): keep suppression after non-matchable callback bubbles [砚砚/G…
mindfn 3c945b3
fix(web): drop store phase-3 callback bridge [砚砚/GPT-5.4🐾]
mindfn 063ea0c
Merge branch 'main' into fix/late-callback-dedup
mindfn 90c5868
Merge branch 'main' into fix/late-callback-dedup
mindfn 1f66cdb
fix(web): keep finalized fallback late-stream lock [砚砚/GPT-5.4🐾]
mindfn 166eeeb
Merge branch 'main' into fix/late-callback-dedup
mindfn ee95383
fix(web): restore late-bound finalized fallback suppression [砚砚/GPT-5…
mindfn d0c5d1a
fix(web): avoid stale explicit callback suppression [砚砚/GPT-5.4🐾]
mindfn 1a81c8f
Merge branch 'main' into fix/late-callback-dedup
mindfn 7bf1bb5
fix(web): gate finalized fallback by reply target [砚砚/GPT-5.4🐾]
mindfn ed28553
fix(web): tolerate unknown finalized reply target [砚砚/GPT-5.4🐾]
mindfn f9bcc66
fix(web): treat missing reply target as unknown evidence [砚砚/GPT-5.4🐾]
mindfn 6914bb7
fix(web): fence finalized fallback suppression [砚砚/GPT-5.4🐾]
mindfn a033cd2
Merge branch 'main' into fix/late-callback-dedup
mindfn 500393b
Merge branch 'main' into fix/late-callback-dedup
mindfn f8c6c79
fix(api): format observability coverage test [砚砚/GPT-5.4🐾]
mindfn 58af3b4
Merge branch 'main' into fix/late-callback-dedup
mindfn 7abae7f
Merge branch 'main' into fix/late-callback-dedup
mindfn 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
874 changes: 874 additions & 0 deletions
874
packages/web/src/hooks/__tests__/useAgentMessages-late-callback-dedup.test.ts
Large diffs are not rendered by default.
Oops, something went wrong.
727 changes: 726 additions & 1 deletion
727
packages/web/src/hooks/__tests__/useSocket-background.test.ts
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| export function isReplyTargetCompatible(existingReplyTo?: string, incomingReplyTo?: string): boolean { | ||
| return (existingReplyTo ?? null) === (incomingReplyTo ?? null); | ||
| } | ||
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.
Uh oh!
There was an error while loading. Please reload this page.