Files
recap-relay/startos/versions/v0.2.94.ts
T

14 lines
1.2 KiB
TypeScript

import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_2_94 = VersionInfo.of({
version: '0.2.94:0',
releaseNotes: {
en_US:
"Symmetric owned-section filter for pipelined-analyze streaming. v0.2.93 added an asymmetric filter (don't emit sections into the NEXT window's body) but missed the mirror case (don't emit sections from your OWN prior-overlap region). Result: window N's view of the prior overlap let it emit a section that window N-1 already owned, producing overlapping streaming timestamps like 'Cloud Computing Surveillance 32:00-37:56' and 'Problems with Centralized Cloud 34:00-42:00' that resolved only at the final stitch. v0.2.94 makes each window emit ONLY sections whose start time falls in its EXCLUSIVE body region [bodyStartSec, nextBodyStartSec). First window has no lower bound; last window has no upper bound. Final stitcher still sees the unfiltered section set so any topic both adjacent windows might miss in their body still surfaces at result-event time. Streaming UI should now show contiguous, non-overlapping section ranges across all windows.",
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})