BillTracker/client/lib/version.js

15 lines
1.1 KiB
JavaScript

export const APP_VERSION = '0.23.1';
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
version: '0.23.1',
date: '2026-05-10',
highlights: [
{ icon: '🔄', title: 'Migration Rollback', desc: 'Admin API endpoint to rollback supported migrations with transaction safety and audit logging' },
{ icon: '🚀', title: 'Migration Logging Enhancement', desc: 'Detailed migration logging with timing for each migration step, error logging with timing, and total migration time reporting' },
{ icon: '🔧', title: 'Circular Dependency Fix', desc: 'Lazy import pattern for auditService in database.js prevents circular dependency issues' },
{ icon: '🐛', title: 'Skip First-Login for Seeded Users', desc: 'ENV-seeded users (admin, regular) no longer see the first-login flow on container restarts' },
{ icon: '🔒', title: 'Session Rotation on Password Change', desc: 'All other sessions are invalidated when you change your password. Current session gets a new ID.' },
{ icon: '🚪', title: 'Logout All Devices', desc: 'New /api/auth/logout-all endpoint lets you sign out from every device at once.' },
],
};