chore(release): prepare Obelisk v0.2.0

This commit is contained in:
tommy0103
2026-07-20 01:58:22 +08:00
parent d399ab154f
commit 8864a36955
6 changed files with 53 additions and 8 deletions
+3 -1
View File
@@ -293,7 +293,9 @@ async function fetchSessionSnapshot(sessionId, { force = false } = {}) {
async function loadLiveSnapshot() {
const sessionId = props.id;
if (!sessionId) return null;
const revision = ++loadRevision;
// Live reload ordering is owned by the coordinator. Capture the current
// full-load generation so a patch cannot invalidate cold-open layout work.
const revision = loadRevision;
const patchRequest = await fetchSessionDetailPatch(sessionId);
return { sessionId, revision, patchRequest };
}