From 3bd50f8429f216c40c0a52fd1af9643cb0e4833b Mon Sep 17 00:00:00 2001 From: Keysat Date: Fri, 8 May 2026 16:38:44 -0500 Subject: [PATCH] Bump version to 0.2.2 Live-reload of the Gemini API key, and fix a startup-crash bug in 0.2.0 / 0.2.1 where the vendored keysat client could not resolve its @noble/* deps inside the running container. --- startos/versions/index.ts | 5 +++-- startos/versions/v0.2.2.ts | 12 ++++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 startos/versions/v0.2.2.ts diff --git a/startos/versions/index.ts b/startos/versions/index.ts index cde4d9c..fe940c3 100644 --- a/startos/versions/index.ts +++ b/startos/versions/index.ts @@ -20,8 +20,9 @@ import { v_0_1_17 } from './v0.1.17' import { v_0_1_18 } from './v0.1.18' 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' export const versionGraph = VersionGraph.of({ - current: v_0_2_1, - other: [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_2, + other: [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.2.ts b/startos/versions/v0.2.2.ts new file mode 100644 index 0000000..242b42e --- /dev/null +++ b/startos/versions/v0.2.2.ts @@ -0,0 +1,12 @@ +import { VersionInfo } from '@start9labs/start-sdk' + +export const v_0_2_2 = VersionInfo.of({ + version: '0.2.2:0', + releaseNotes: { + en_US: 'Live-reload of the Gemini API key — the "Set Gemini API Key" action\'s changes are now picked up without a service restart. Also fixes a startup-crash bug in 0.2.0 and 0.2.1 (vendor module @noble/ed25519 was unreachable from inside the running container).', + }, + migrations: { + up: async ({ effects }) => {}, + down: async ({ effects }) => {}, + }, +})