RomM
Beautiful, powerful, self-hosted rom manager and player
Alternative to: antstream arcade
5.1.0-alpha.4
2026-07-24[!WARNING] When binary logging is on and the connecting user lacks
SUPER, trigger DDL is refused unless the globallog_bin_trust_function_creators flagis 1. Run this on your MariaDB as an admin/root user (not the romm app user):SET GLOBAL log_bin_trust_function_creators = 1;
SET GLOBALis lost on DB restart. Either add to your MariaDBmy.cnfunder[mysqld]:log_bin_trust_function_creators = 1Or grant the app user the privilege (MariaDB 10.5+):
`GRANT BINLOG ADMIN ON *.* TO 'romm'@'%';` -- or: GRANT SUPER ON *.* TO 'romm'@'%';
What’s Changed
- fix(backend): make roms_facets/collection migrations idempotent by @gantoine in https://github.com/rommapp/romm/pull/3930
Full Changelog: https://github.com/rommapp/romm/compare/5.1.0-alpha.3…5.1.0-alpha.4