Skip to content

Commit c566990

Browse files
committed
Stable 2025 Q1 updates
1 parent 87a043a commit c566990

15 files changed

+42
-42
lines changed

10.11-ubi/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ COPY MariaDB.repo /etc/yum.repos.d/
3636
# https://access.redhat.com/documentation/en-us/red_hat_software_certification/2024/html/red_hat_openshift_software_certification_policy_guide/assembly-requirements-for-container-images_openshift-sw-cert-policy-introduction#con-image-metadata-requirements_openshift-sw-cert-policy-container-images
3737
LABEL name="MariaDB Server" \
3838
vendor="MariaDB Community" \
39-
version="10.11.11" \
39+
version="10.11.12" \
4040
release="Refer to Annotations org.opencontainers.image.{revision,source}" \
4141
summary="MariaDB Database" \
4242
description="MariaDB Database for relational SQL"
@@ -50,11 +50,11 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
5050
org.opencontainers.image.licenses="GPL-2.0" \
5151
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
5252
org.opencontainers.image.vendor="MariaDB Community" \
53-
org.opencontainers.image.version="10.11.11" \
53+
org.opencontainers.image.version="10.11.12" \
5454
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
5555

5656
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
57-
ARG MARIADB_VERSION=10.11.11
57+
ARG MARIADB_VERSION=10.11.12
5858
ENV MARIADB_VERSION=$MARIADB_VERSION
5959
# release-status:Stable
6060
# release-support-type:Long Term Support

10.11-ubi/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ docker_create_db_directories() {
223223
}
224224

225225
_mariadb_version() {
226-
echo -n "10.11.11-MariaDB"
226+
echo -n "10.11.12-MariaDB"
227227
}
228228

229229
# initializes the database directory

10.11/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,18 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
7575
org.opencontainers.image.licenses="GPL-2.0" \
7676
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
7777
org.opencontainers.image.vendor="MariaDB Community" \
78-
org.opencontainers.image.version="10.11.11" \
78+
org.opencontainers.image.version="10.11.12" \
7979
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
8080

8181
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
82-
ARG MARIADB_VERSION=1:10.11.11+maria~ubu2204
82+
ARG MARIADB_VERSION=1:10.11.12+maria~ubu2204
8383
ENV MARIADB_VERSION $MARIADB_VERSION
8484
# release-status:Stable
8585
# release-support-type:Long Term Support
8686
# (https://downloads.mariadb.org/rest-api/mariadb/)
8787

8888
# Allowing overriding of REPOSITORY, a URL that includes suite and component for testing and Enterprise Versions
89-
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.11.11/repo/ubuntu/ jammy main main/debug"
89+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.11.12/repo/ubuntu/ jammy main main/debug"
9090

9191
RUN set -e;\
9292
echo "deb ${REPOSITORY}" > /etc/apt/sources.list.d/mariadb.list; \

10.11/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ docker_create_db_directories() {
223223
}
224224

225225
_mariadb_version() {
226-
echo -n "10.11.11-MariaDB"
226+
echo -n "10.11.12-MariaDB"
227227
}
228228

229229
# initializes the database directory

10.5/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,20 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
7575
org.opencontainers.image.licenses="GPL-2.0" \
7676
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
7777
org.opencontainers.image.vendor="MariaDB Community" \
78-
org.opencontainers.image.version="10.5.28" \
78+
org.opencontainers.image.version="10.5.29" \
7979
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
8080

8181
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
8282
ARG MARIADB_MAJOR=10.5
8383
ENV MARIADB_MAJOR $MARIADB_MAJOR
84-
ARG MARIADB_VERSION=1:10.5.28+maria~ubu2004
84+
ARG MARIADB_VERSION=1:10.5.29+maria~ubu2004
8585
ENV MARIADB_VERSION $MARIADB_VERSION
8686
# release-status:Stable
8787
# release-support-type:Long Term Support
8888
# (https://downloads.mariadb.org/rest-api/mariadb/)
8989

9090
# Allowing overriding of REPOSITORY, a URL that includes suite and component for testing and Enterprise Versions
91-
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.5.28/repo/ubuntu/ focal main main/debug"
91+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.5.29/repo/ubuntu/ focal main main/debug"
9292

9393
RUN set -e;\
9494
echo "deb ${REPOSITORY}" > /etc/apt/sources.list.d/mariadb.list; \

10.5/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ docker_create_db_directories() {
215215
}
216216

217217
_mariadb_version() {
218-
echo -n "10.5.28-MariaDB"
218+
echo -n "10.5.29-MariaDB"
219219
}
220220

221221
# initializes the database directory

10.6-ubi/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ COPY MariaDB.repo /etc/yum.repos.d/
3636
# https://access.redhat.com/documentation/en-us/red_hat_software_certification/2024/html/red_hat_openshift_software_certification_policy_guide/assembly-requirements-for-container-images_openshift-sw-cert-policy-introduction#con-image-metadata-requirements_openshift-sw-cert-policy-container-images
3737
LABEL name="MariaDB Server" \
3838
vendor="MariaDB Community" \
39-
version="10.6.21" \
39+
version="10.6.22" \
4040
release="Refer to Annotations org.opencontainers.image.{revision,source}" \
4141
summary="MariaDB Database" \
4242
description="MariaDB Database for relational SQL"
@@ -50,12 +50,12 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
5050
org.opencontainers.image.licenses="GPL-2.0" \
5151
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
5252
org.opencontainers.image.vendor="MariaDB Community" \
53-
org.opencontainers.image.version="10.6.21" \
53+
org.opencontainers.image.version="10.6.22" \
5454
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
5555

5656
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
5757
ARG MARIADB_MAJOR=10.6
58-
ARG MARIADB_VERSION=10.6.21
58+
ARG MARIADB_VERSION=10.6.22
5959
ENV MARIADB_VERSION=$MARIADB_VERSION
6060
# release-status:Stable
6161
# release-support-type:Long Term Support

10.6-ubi/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ docker_create_db_directories() {
215215
}
216216

217217
_mariadb_version() {
218-
echo -n "10.6.21-MariaDB"
218+
echo -n "10.6.22-MariaDB"
219219
}
220220

221221
# initializes the database directory

10.6/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,20 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
7575
org.opencontainers.image.licenses="GPL-2.0" \
7676
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
7777
org.opencontainers.image.vendor="MariaDB Community" \
78-
org.opencontainers.image.version="10.6.21" \
78+
org.opencontainers.image.version="10.6.22" \
7979
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
8080

8181
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
8282
ARG MARIADB_MAJOR=10.6
8383
ENV MARIADB_MAJOR $MARIADB_MAJOR
84-
ARG MARIADB_VERSION=1:10.6.21+maria~ubu2004
84+
ARG MARIADB_VERSION=1:10.6.22+maria~ubu2004
8585
ENV MARIADB_VERSION $MARIADB_VERSION
8686
# release-status:Stable
8787
# release-support-type:Long Term Support
8888
# (https://downloads.mariadb.org/rest-api/mariadb/)
8989

9090
# Allowing overriding of REPOSITORY, a URL that includes suite and component for testing and Enterprise Versions
91-
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.6.21/repo/ubuntu/ focal main main/debug"
91+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.6.22/repo/ubuntu/ focal main main/debug"
9292

9393
RUN set -e;\
9494
echo "deb ${REPOSITORY}" > /etc/apt/sources.list.d/mariadb.list; \

10.6/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ docker_create_db_directories() {
215215
}
216216

217217
_mariadb_version() {
218-
echo -n "10.6.21-MariaDB"
218+
echo -n "10.6.22-MariaDB"
219219
}
220220

221221
# initializes the database directory

0 commit comments

Comments
 (0)