BillTracker/client/lib/version.js

14 lines
796 B
JavaScript

export const APP_VERSION = '0.19.4';
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
version: '0.19.4',
date: '2026-05-09',
highlights: [
{ icon: '🛡️', title: 'Legacy database migration fix', desc: 'Users upgrading from older versions can now log in.' },
{ icon: '🔒', title: 'Security hardening', desc: 'Path traversal protection, content redaction, error sanitization.' },
{ icon: '🪟', title: 'React Error Boundaries', desc: 'App no longer crashes to white screen on errors.' },
{ icon: '🧹', title: 'Session token cleanup', desc: 'Expired sessions auto-purged on startup, daily, and on login.' },
{ icon: '🔑', title: 'Admin password reset', desc: 'INIT_ADMIN_PASS now resets existing admin passwords on legacy DBs.' },
],
};