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

14 lines
1.1 KiB
TypeScript

import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_2_93 = VersionInfo.of({
version: '0.2.93:0',
releaseNotes: {
en_US:
"Fix pipelined-analyze streaming UI cosmetic — per-window sections were appearing with overlapping/gappy timestamps that resolved themselves only at final-stitch time. Root cause: my runPipelinedAnalysis emitted ALL sections per window, including those covering the overlap region with the next window. Since the next window also analyzes that overlap and produces its OWN sections covering the same time range, the UI showed both — looking like the model emitted duplicates or shifted timing. Sequential runChunkedAnalysis has always filtered streaming events to OWNED sections only (those starting before the next window's body begins) — fix copies that filter into runPipelinedAnalysis. Final stitcher still operates on the full unfiltered section set so global dedup behavior is unchanged. Streaming UI should now show contiguous non-overlapping section ranges as each window completes.",
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})