BillTracker/client/lib/version.js

11 lines
593 B
JavaScript
Raw Normal View History

export const APP_VERSION = '0.23.2';
2026-05-03 19:51:57 -05:00
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
version: '0.23.2',
date: '2026-05-10',
2026-05-03 19:51:57 -05:00
highlights: [
{ icon: '🔒', title: 'Critical: Notification Privacy Leak Fix', desc: 'In per-user notification mode, bills were sent to all opted-in recipients regardless of ownership. Now each recipient only receives their own bills.' },
{ icon: '🛡️', title: 'Orphaned Bill Guard', desc: 'Defensive check added: bills with no user_id are now skipped with a warning instead of being broadcast to all recipients.' },
2026-05-03 19:51:57 -05:00
],
};