Files
Ten31-Portal/deploy/startos/install/versions/v_0_2_43.ts
T
Jonathan Kirkwood ebafcf19d9 0.2.43: historical NAV backfill without touching current holdings
The batch history import now also records each quarter's NAV in the
fund's valuation history: the old file's HLD rows are matched by issuer
and security name against the book as it exists today, matched rows
write that quarter's valuations, unmatched rows are counted and
reported, and nothing outside the round is created or modified. A
manually signed quarter is never overwritten.

The single-file wizard automatically takes the same history-only path
when the file is older than the fund's newest round. Previously that
import would regress position cost basis to the old file's values and
resurrect since-exited positions, corrupting the fund's Invested total.
2026-08-11 12:32:57 -05:00

19 lines
713 B
TypeScript

import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_2_43 = VersionInfo.of({
version: '0.2.43:0',
releaseNotes: {
en_US:
'Historical NAV backfill: the batch history import now also records each ' +
"quarter's NAV in the fund's valuation history, matched against the current " +
'book without ever modifying holdings or cost basis. The single-file import ' +
'automatically treats a file older than the newest quarter the same safe way, ' +
'fixing a path where importing an old workbook could regress cost basis and ' +
'resurrect exited positions.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})