Package v0.2.12→v0.2.124: manifest, actions, version graph

This commit is contained in:
Keysat
2026-06-13 13:36:30 -05:00
parent 318c6c4b81
commit 1243f4414c
126 changed files with 2052 additions and 441 deletions
+13
View File
@@ -0,0 +1,13 @@
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 }) => {},
},
})