The eNAV keeps producing statements after an exit (quarterly for funds, event-driven for SPVs), so an unfiltered graph would crash to zero. Now the exited card gets its collapsible History back — chart + table showing the capital journey up to exited_on only. Post-exit statements stay recorded (audit trail; Undo restores full history) but are never plotted. History section extracted into a shared HistorySection component; toggle counts "statements" not "quarters" (SPV statements are event-driven). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
14 lines
654 B
TypeScript
14 lines
654 B
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const v_0_2_35 = VersionInfo.of({
|
|
version: '0.2.35:0',
|
|
releaseNotes: {
|
|
en_US:
|
|
"Exited positions now show the member's capital history up to the exit date: the collapsible History chart/table returns on the exited card, clipped at the exit — statements the eNAV keeps producing after the exit are recorded but never plotted, so the line ends at the exit instead of crashing to zero. History toggle now counts 'statements' (SPVs have event-driven statements, funds quarterly).",
|
|
},
|
|
migrations: {
|
|
up: async ({ effects }) => {},
|
|
down: async ({ effects }) => {},
|
|
},
|
|
})
|