Drop redundant "[note]" tag from fundraising-grid note line (v0.1.0:85)

The grid note line was "YYYY-MM-DD [type] Contact: summary"; for the default
"note" type the tag is noise. Omit it for "note"; keep it for informative
types (call, meeting, …). Shared by the Matrix intake bot and grid-UI logging.
Built + installed to the box (installed-version 0.1.0:85, clean 84->85
migration). No schema change.
This commit is contained in:
Keysat
2026-06-17 17:30:40 -05:00
parent aefb2aa119
commit fa6c9da0e6
4 changed files with 23 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
import { VersionInfo } from '@start9labs/start-sdk'
// Cosmetic: drop the redundant "[note]" tag from the fundraising-grid note line. The line is
// now "YYYY-MM-DD Contact: summary"; informative comm types (call, meeting, …) keep their
// "[type]" tag. Shared by the Matrix intake bot and any grid-UI logging. No schema change.
export const v_0_1_0_85 = VersionInfo.of({
version: '0.1.0:85',
releaseNotes: {
en_US: [
'Cleaner grid note lines: the redundant "[note]" tag is dropped (other communication',
'types keep their tag). No data changes.',
].join(' '),
},
migrations: { up: async () => {}, down: async () => {} },
})