github rommapp/romm 5.1.0-alpha.4

pre-release10 hours ago

Warning

When binary logging is on and the connecting user lacks SUPER, trigger DDL is refused unless the global log_bin_trust_function_creators flag is 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 GLOBAL is lost on DB restart. Either add to your MariaDB my.cnf under [mysqld]:

log_bin_trust_function_creators = 1

Or 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 #3930

Full Changelog: 5.1.0-alpha.3...5.1.0-alpha.4

Don't miss a new romm release

NewReleases is sending notifications on new releases.