Build Service / BuildPackage (push) Canceled after 0s
Wrapper-only revision: the images are unchanged from 0.2.1:0, so only the downstream digit moves. Release notes now describe this revision (rebuilt against start-sdk 2.0.9, requires StartOS 0.4.0-beta.10) instead of 0.2.1:0's image bumps. The version file moves to versions/current.ts, where the guide keeps the latest version — a dated file is only for a released version that carries a migration, and this bump carries none. No `other` entry is needed: the version graph synthesizes a range beneath current, and the packed manifest derives canMigrateFrom <=0.2.1:1. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
486 B
TypeScript
15 lines
486 B
TypeScript
import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const current = VersionInfo.of({
|
|
version: '0.2.1:1',
|
|
releaseNotes: {
|
|
en_US: `Packaging-only revision — no upstream changes. The images are unchanged from 0.2.1:0 (\`spaces:v0.2.1\`, \`subs:v0.1.2\`, \`certrelay:v0.2.5\`, \`nacho:v1.0.0\`).
|
|
|
|
Rebuilt against \`start-sdk\` 2.0.9, which requires StartOS 0.4.0-beta.10.`,
|
|
},
|
|
migrations: {
|
|
up: async ({ effects }) => {},
|
|
down: IMPOSSIBLE,
|
|
},
|
|
})
|