From 25ec40f345a49a2e1a5badf460f772fb06cddea2 Mon Sep 17 00:00:00 2001 From: Keysat Date: Sat, 9 May 2026 19:36:47 -0500 Subject: [PATCH] Bump version to 0.2.5 Tighter license-poll cadence + opportunistic online refresh. --- startos/versions/index.ts | 5 +++-- startos/versions/v0.2.5.ts | 12 ++++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 startos/versions/v0.2.5.ts diff --git a/startos/versions/index.ts b/startos/versions/index.ts index 795c4e5..f5217be 100644 --- a/startos/versions/index.ts +++ b/startos/versions/index.ts @@ -23,8 +23,9 @@ 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' +import { v_0_2_5 } from './v0.2.5' export const versionGraph = VersionGraph.of({ - 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], + current: v_0_2_5, + other: [v_0_2_4, 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.5.ts b/startos/versions/v0.2.5.ts new file mode 100644 index 0000000..121727e --- /dev/null +++ b/startos/versions/v0.2.5.ts @@ -0,0 +1,12 @@ +import { VersionInfo } from '@start9labs/start-sdk' + +export const v_0_2_5 = VersionInfo.of({ + version: '0.2.5:0', + releaseNotes: { + en_US: 'Tighter license-poll cadence: file-poll 30s → 5s (action-set keys register near-instant), online validation 6h → 30min (revocations land in 30 min worst-case), and an opportunistic online refresh on /api/license-status when the cached state is older than 10 min (revocations land within seconds of any browser activity).', + }, + migrations: { + up: async ({ effects }) => {}, + down: async ({ effects }) => {}, + }, +})