Cut version 0.2.21 (current = v_0_2_21) with the adjudicated DO-item fixes. Also commits the previously-untracked v_0_2_* version files that versions/index.ts imports (ROADMAP item D2), so a fresh checkout builds without dangling imports. The missing v_0_2_2 is intentional (versions are an unordered set). Built and verified: ten31portal_x86_64.s9pk packs cleanly at 0.2.21:0, arch x86_64, SDK 0.4.0.
15 lines
652 B
TypeScript
15 lines
652 B
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const v_0_2_4 = VersionInfo.of({
|
|
version: '0.2.4:0',
|
|
releaseNotes: {
|
|
en_US:
|
|
'Import fund members from the eNAV ALLOC SI tab. The capital-account import now reads the investor roster, matches existing members by fund-administrator investor ID (idempotent re-imports), offers to create new members (without a login until you set a password), grants entity access, and loads each member\'s capital balance.',
|
|
},
|
|
migrations: {
|
|
// Adds users.external_investor_id; applied by Alembic on startup.
|
|
up: async ({ effects }) => {},
|
|
down: async ({ effects }) => {},
|
|
},
|
|
})
|