LinkBreeze v1.1.1
Fixed
- Fresh-deploy crash (Next.js error 1654975601) — On a fresh
docker composedeploy, the SQLite database was created empty because migrations never ran. The first query threwno such table: settings, showing error code 1654975601 on every page. Migrations now run automatically on server startup. The setup wizard appears on first launch as documented. Fixes #34. - Healthcheck false-positive —
/api/healthreturned 200 without touching the database, so a broken instance still reported "healthy". Now probes the DB withSELECT 1and returns 503 on failure.
Changed
- Migration files explicitly bundled via
outputFileTracingIncludesinnext.config.ts. - Added
npm run db:migratescript for manual/dev use.
Upgrade
docker compose pull && docker compose up -dFull changelog: v1.1.0...v1.1.1