Skip to content

5.1.0-alpha.4

Pre-release
Pre-release

Choose a tag to compare

@gantoine gantoine released this 24 Jul 02:00
dcc04aa

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