Skip to content

Commit 121f5b0

Browse files
committed
fix(runtime-host): advance compatibility epoch for the continuity schema bump
Generated-by: maka
1 parent ef36ab7 commit 121f5b0

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

  • packages/runtime-host/src/protocol

packages/runtime-host/src/protocol/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@ export const RUNTIME_HOST_REGISTRATION_SCHEMA_VERSION = 1 as const;
9191
export const RUNTIME_HOST_PROTOCOL_VERSION = 0 as const;
9292
// Increment when the same protocol version no longer guarantees safe Client-Host
9393
// interoperability. Mismatches are rejected before domain commands are admitted.
94-
export const RUNTIME_HOST_COMPATIBILITY_EPOCH = 48 as const;
94+
export const RUNTIME_HOST_COMPATIBILITY_EPOCH = 49 as const;
95+
// 49: Session continuity snapshots advance to schema 5 with the durable
96+
// steering message echo. Older peers reject the unknown schemaVersion at
97+
// admission, so mixed peers must fail the handshake before either side
98+
// renders a steering message.
9599
// 48: Session branch creation accepts an explicit Side Conversation intent.
96100
// Older peers reject the strict input shape or cannot apply its snapshot semantics.
97101
// 47: Project registration can carry an explicit location preference. Epoch-46

0 commit comments

Comments
 (0)