fa6c9da0e6
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.
16 lines
656 B
TypeScript
16 lines
656 B
TypeScript
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 () => {} },
|
|
})
|