| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-04-27 | 1.3 kB | |
| v0.1.5 source code.tar.gz | 2026-04-27 | 1.5 MB | |
| v0.1.5 source code.zip | 2026-04-27 | 1.6 MB | |
| Totals: 3 Items | 3.2 MB | 0 | |
Fixed
- First-boot crash on SQLite: Data DB now defaults to
synchronize=truefor SQLite so the embedded database "just works" on first boot. ResolvesSQLITE_ERROR: no such table: sessionsthat appeared on fresh installs withoutDATABASE_SYNCHRONIZE=true. - PostgreSQL boot crash on
mainconnection:AuditLog.metadatanow usessimple-jsoninstead of the dynamicjsonColumnType(). Themainconnection is always SQLite, so it must not switch tojsonbwhenDATABASE_TYPE=postgres. FixesDataTypeNotSupportedError: Data type "jsonb" in "AuditLog.metadata" is not supported by "sqlite" database. - Operator env vars ignored:
data/.env.generatedno longer overridesprocess.envor project.env. Loading order is nowprocess env > .env > data/.env.generated, so values from Docker / shell / systemd take precedence over Dashboard-saved config.
Changed
- Auto-run migrations on boot: PostgreSQL data DB now runs pending migrations automatically; SQLite
also runs migrations when the user opts out of
synchronize. - Production migration scripts: Added
migration:run:prod,migration:revert:prod, andmigration:show:prodthat operate fromdist/so they can be executed inside the production container (which stripsts-node).