3bd50f8429
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.
13 lines
506 B
TypeScript
13 lines
506 B
TypeScript
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 }) => {},
|
|
},
|
|
})
|