import { VersionGraph } from '@start9labs/start-sdk' import { v_1_0_0_1 } from './v1.0.0.1' import { v_1_0_0_2 } from './v1.0.0.2' import { v_1_0_0_3 } from './v1.0.0.3' import { v_1_0_0_4 } from './v1.0.0.4' import { v_1_0_0_5 } from './v1.0.0.5' /** * Version graph for the `proof-of-work` package. * * v1.0.0:1 — initial release, seeded cutover from the legacy * `workout-log` package. * v1.0.0:2 — CSP fix. * v1.0.0:3 — post-cutover seed strip. * v1.0.0:4 — removes the default admin@local credentials; operator * must run the StartOS Action to bootstrap the first admin. * v1.0.0:5 — internal cleanup (removes caloriesBurned raw-SQL * workaround). No user-facing change. * * StartOS picks `current` as the install target; `other` lists every * node that can upgrade into `current`. */ export const versionGraph = VersionGraph.of({ current: v_1_0_0_5, other: [v_1_0_0_1, v_1_0_0_2, v_1_0_0_3, v_1_0_0_4], })