Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mariadb-image for openSUSE:Factory checked in at 2025-06-12 15:53:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mariadb-image (Old) and /work/SRC/openSUSE:Factory/.mariadb-image.new.19631 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mariadb-image" Thu Jun 12 15:53:05 2025 rev:54 rq:1284944 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/mariadb-image/mariadb-image.changes 2025-05-30 17:23:53.663697449 +0200 +++ /work/SRC/openSUSE:Factory/.mariadb-image.new.19631/mariadb-image.changes 2025-06-12 15:55:00.817547991 +0200 @@ -1,0 +2,5 @@ +Wed Jun 11 20:47:19 UTC 2025 - SUSE Update Bot <bci-inter...@suse.de> + +- update to match mariadb 11.8 release + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.CjGVd2/_old 2025-06-12 15:55:01.441573815 +0200 +++ /var/tmp/diff_new_pack.CjGVd2/_new 2025-06-12 15:55:01.445573980 +0200 @@ -17,7 +17,7 @@ #!ExclusiveArch: aarch64 ppc64le s390x x86_64 #!BuildTag: opensuse/mariadb:%%mariadb_version%%-%RELEASE% #!BuildTag: opensuse/mariadb:%%mariadb_version%% -#!BuildTag: opensuse/mariadb:11.7 +#!BuildTag: opensuse/mariadb:11.8 #!BuildTag: opensuse/mariadb:latest FROM opensuse/bci/bci-micro:latest AS target @@ -29,7 +29,7 @@ # sanity check that the version from the tag is equal to the version of mariadb that we expect RUN set -euo pipefail; \ [ "$(rpm --root /target -q --qf '%{version}' mariadb | \ - cut -d '.' -f -2)" = "11.7" ] + cut -d '.' -f -2)" = "11.8" ] RUN set -euo pipefail; zypper -n --installroot /target clean -a; \ rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2} FROM opensuse/bci/bci-micro:latest ++++++ README.md ++++++ --- /var/tmp/diff_new_pack.CjGVd2/_old 2025-06-12 15:55:01.489575801 +0200 +++ /var/tmp/diff_new_pack.CjGVd2/_new 2025-06-12 15:55:01.493575967 +0200 @@ -12,13 +12,13 @@ The only environment variable required to start the container is the MariaDB root password. ```ShellSession -$ podman run -it --rm -p 3306:3306 -e MARIADB_ROOT_PASSWORD=my-password registry.opensuse.org/opensuse/mariadb:11.7 +$ podman run -it --rm -p 3306:3306 -e MARIADB_ROOT_PASSWORD=my-password registry.opensuse.org/opensuse/mariadb:11.8 ``` or: ```ShellSession -$ podman run -it --rm -p 3306:3306 -e MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 registry.opensuse.org/opensuse/mariadb:11.7 +$ podman run -it --rm -p 3306:3306 -e MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 registry.opensuse.org/opensuse/mariadb:11.8 ``` ### Volumes @@ -33,7 +33,7 @@ To mount a host directory as a volume for your data run the following command: ```ShellSession -$ podman run -it --rm -v /my/own/datadir:/var/lib/mysql:Z -p 3306:3306 -e MARIADB_ROOT_PASSWORD=my-password registry.opensuse.org/opensuse/mariadb:11.7 +$ podman run -it --rm -v /my/own/datadir:/var/lib/mysql:Z -p 3306:3306 -e MARIADB_ROOT_PASSWORD=my-password registry.opensuse.org/opensuse/mariadb:11.8 ``` The `-v /my/own/datadir:/var/lib/mysql:Z` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/mysql` inside the container, where MariaDB will by default write its data files.