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' import { v_1_0_0_6 } from './v1.0.0.6' /** * Version graph for the `proof-of-work` package. * * v1.0.0:1 — initial release, seeded cutover from `workout-log`. * v1.0.0:2 — CSP fix. * v1.0.0:3 — post-cutover seed strip. * v1.0.0:4 — removes default admin@local credentials; operator must * run StartOS Action to bootstrap the first admin. * v1.0.0:5 — internal cleanup (caloriesBurned raw-SQL workaround). * v1.0.0:6 — paginate workout history (infinite scroll); removes * invisible 50-row caps on the clock-button popup and * the /main/workouts page. */ export const versionGraph = VersionGraph.of({ current: v_1_0_0_6, other: [v_1_0_0_1, v_1_0_0_2, v_1_0_0_3, v_1_0_0_4, v_1_0_0_5], })