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.
This commit is contained in:
Keysat
2026-05-09 11:57:58 -05:00
parent 495b4aef36
commit 823b9e0375
2 changed files with 15 additions and 2 deletions
+3 -2
View File
@@ -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_1 } from './v0.2.1'
import { v_0_2_2 } from './v0.2.2' import { v_0_2_2 } from './v0.2.2'
import { v_0_2_3 } from './v0.2.3' import { v_0_2_3 } from './v0.2.3'
import { v_0_2_4 } from './v0.2.4'
export const versionGraph = VersionGraph.of({ export const versionGraph = VersionGraph.of({
current: v_0_2_3, current: v_0_2_4,
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], 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],
}) })
+12
View File
@@ -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 }) => {},
},
})