import { VersionInfo } from '@start9labs/start-sdk' export const v_0_2_16 = VersionInfo.of({ version: '0.2.16:0', releaseNotes: { en_US: 'Critical fix: the server has been silently crashing every time the analysis step threw an error, since 0.2.9. Root cause was a JavaScript scoping bug — a constant declared inside the try block was referenced from the catch block, putting it in the Temporal Dead Zone, so the catch handler crashed itself the moment any error reached it. dumb-init then restarted Recap, which is why "Error in input stream" kept appearing — that was the SSE connection being killed by the dying process, not the actual error. Fixed by hoisting the constant to handler scope. After updating, analysis errors will be handled gracefully (logged with full context, surfaced to the UI), not by crashing the daemon.', }, migrations: { up: async ({ effects }) => {}, down: async ({ effects }) => {}, }, })