From 823b9e0375c589e7541fd13de77c816304d5db71 Mon Sep 17 00:00:00 2001 From: Keysat Date: Sat, 9 May 2026 11:57:58 -0500 Subject: [PATCH] Bump version to 0.2.4 Critical fix for v0.2.3 startup crash (missing modules in Docker image). Also refreshes vendored Keysat client to v0.2.0 ahead of in-app buy flow. --- startos/versions/index.ts | 5 +++-- startos/versions/v0.2.4.ts | 12 ++++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 startos/versions/v0.2.4.ts diff --git a/startos/versions/index.ts b/startos/versions/index.ts index 93dfd57..795c4e5 100644 --- a/startos/versions/index.ts +++ b/startos/versions/index.ts @@ -22,8 +22,9 @@ import { v_0_2_0 } from './v0.2.0' import { v_0_2_1 } from './v0.2.1' import { v_0_2_2 } from './v0.2.2' import { v_0_2_3 } from './v0.2.3' +import { v_0_2_4 } from './v0.2.4' export const versionGraph = VersionGraph.of({ - current: v_0_2_3, - other: [v_0_2_2, v_0_2_1, v_0_2_0, v_0_1_18, v_0_1_17, v_0_1_16, v_0_1_15, v_0_1_14, v_0_1_13, v_0_1_12, v_0_1_11, v_0_1_10, v_0_1_9, v_0_1_8, v_0_1_7, v_0_1_6, v_0_1_5, v_0_1_4, v_0_1_3, v_0_1_2, v_0_1_1, v_0_1_0], + current: v_0_2_4, + other: [v_0_2_3, v_0_2_2, v_0_2_1, v_0_2_0, v_0_1_18, v_0_1_17, v_0_1_16, v_0_1_15, v_0_1_14, v_0_1_13, v_0_1_12, v_0_1_11, v_0_1_10, v_0_1_9, v_0_1_8, v_0_1_7, v_0_1_6, v_0_1_5, v_0_1_4, v_0_1_3, v_0_1_2, v_0_1_1, v_0_1_0], }) diff --git a/startos/versions/v0.2.4.ts b/startos/versions/v0.2.4.ts new file mode 100644 index 0000000..85a8235 --- /dev/null +++ b/startos/versions/v0.2.4.ts @@ -0,0 +1,12 @@ +import { VersionInfo } from '@start9labs/start-sdk' + +export const v_0_2_4 = VersionInfo.of({ + version: '0.2.4:0', + releaseNotes: { + en_US: 'Critical fix: v0.2.3 was crashing at startup with ERR_MODULE_NOT_FOUND because the Dockerfile only copied server/index.js + server/license.js explicitly, missing the new modules added during the refactor (util, gemini-helpers, audio, ytdlp, cookies, config, license-middleware, history, library). Now copies all server/*.js. Also bumps the vendored @keysat/licensing-client to v0.2.0 (adds policySlug + listPublicPolicies for the upcoming in-app buy flow).', + }, + migrations: { + up: async ({ effects }) => {}, + down: async ({ effects }) => {}, + }, +})