feat(realtime)!: add semantic event stream - #2257
Open
hmans wants to merge 4 commits into
Open
Conversation
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Why
The protocol-2 realtime channel exposes frontend projection mutations as its public API. Bots and integrations need authorized Chatto activity—messages, edits, reactions, membership changes, calls, and similar events—without learning the bundled frontend's cache model. The bundled frontend must still bootstrap from one ordered stream instead of making many resource requests.
What changed
SNAPSHOTandLIVE_ONLYinitial-state choices. ReportSNAPSHOT,LIVE_ONLY, orRESUMEas the selected recovery mode.oneof, so clients can skip additive event variants and still advance safely.Compatibility and rollout
Classification: breaking public realtime API change.
chatto.coreprotobufs are unchanged.Test plan
mise codegen-proto— passed; generated Go, TypeScript, and API-reference output reproduces cleanly.mise lint— passed, including Go vet, TypeScript, ESLint, Svelte diagnostics, actionlint, shellcheck, production frontend build, bundle limits, and CSP checks.mise test-cli— passed, including the complete realtime HTTP-server package and the durable-bio replay regression.mise test-frontend— passed: 1,362 server tests, 2,001 client tests, 231 Storybook tests, and 5 performance tests.#general, posted a message, reloaded, and confirmed the snapshot restored the message and room membership.mise license-checkandgit diff --check— passed.