This commit is contained in:
7
startos/versions/index.ts
Normal file
7
startos/versions/index.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { VersionGraph } from '@start9labs/start-sdk'
|
||||
import { v_0_0_9_0_a1 } from './v0.0.9.0.a1'
|
||||
|
||||
export const versionGraph = VersionGraph.of({
|
||||
current: v_0_0_9_0_a1,
|
||||
other: [],
|
||||
})
|
||||
14
startos/versions/v0.0.9.0.a1.ts
Normal file
14
startos/versions/v0.0.9.0.a1.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk'
|
||||
|
||||
export const v_0_0_9_0_a1 = VersionInfo.of({
|
||||
version: '0.0.9:0-alpha.1',
|
||||
releaseNotes: {
|
||||
en_US: `- Add "Reset Spaced State" action so a corrupt /data/mainnet/ index can be wiped from the UI.
|
||||
- Web terminal no longer requires spaced to be healthy, so gotty stays reachable when spaced crash-loops.
|
||||
- Initial build bundles spaced + space-cli from horologger/spaces:v0.0.9s, managed spaced daemon (mainnet only), gotty browser terminal with admin basic auth, and the Bitcoin Core 31.x dependency.`,
|
||||
},
|
||||
migrations: {
|
||||
up: async ({ effects }) => {},
|
||||
down: IMPOSSIBLE,
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user