Skip to content

Commit 430ef0c

Browse files
committed
12.2.1 rc release
1 parent c4f0d38 commit 430ef0c

File tree

9 files changed

+48
-20
lines changed

9 files changed

+48
-20
lines changed

12.2-ubi/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ COPY MariaDB.repo /etc/yum.repos.d/
4242
# 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
4343
LABEL name="MariaDB Server" \
4444
vendor="MariaDB Community" \
45-
version="12.2.0" \
45+
version="12.2.1" \
4646
release="Refer to Annotations org.opencontainers.image.{revision,source}" \
4747
summary="MariaDB Database" \
4848
description="MariaDB Database for relational SQL"
@@ -56,14 +56,14 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
5656
org.opencontainers.image.licenses="GPL-2.0" \
5757
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
5858
org.opencontainers.image.vendor="MariaDB Community" \
59-
org.opencontainers.image.version="12.2.0" \
59+
org.opencontainers.image.version="12.2.1" \
6060
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
6161

6262
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
63-
ARG MARIADB_VERSION=12.2.0
63+
ARG MARIADB_VERSION=12.2.1
6464
ENV MARIADB_VERSION=$MARIADB_VERSION
65-
# release-status:Unknown
66-
# release-support-type:Unknown
65+
# release-status:RC
66+
# release-support-type:Rolling
6767
# (https://downloads.mariadb.org/rest-api/mariadb/)
6868

6969
# missing pwgen(epel), jemalloc(epel), gperftools-libs(epel) (as entrypoint/user extensions)

12.2-ubi/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ docker_create_db_directories() {
225225
}
226226

227227
_mariadb_version() {
228-
echo -n "12.2.0-MariaDB"
228+
echo -n "12.2.1-MariaDB"
229229
}
230230

231231
# initializes the database directory

12.2/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,18 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
7777
org.opencontainers.image.licenses="GPL-2.0" \
7878
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
7979
org.opencontainers.image.vendor="MariaDB Community" \
80-
org.opencontainers.image.version="12.2.0" \
80+
org.opencontainers.image.version="12.2.1" \
8181
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
8282

8383
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
84-
ARG MARIADB_VERSION=1:12.2.0+maria~ubu2404
84+
ARG MARIADB_VERSION=1:12.2.1+maria~ubu2404
8585
ENV MARIADB_VERSION $MARIADB_VERSION
86-
# release-status:Unknown
87-
# release-support-type:Unknown
86+
# release-status:RC
87+
# release-support-type:Rolling
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-12.2.0/repo/ubuntu/ noble main main/debug"
91+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-12.2.1/repo/ubuntu/ noble main main/debug"
9292

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

12.2/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ docker_create_db_directories() {
225225
}
226226

227227
_mariadb_version() {
228-
echo -n "12.2.0-MariaDB"
228+
echo -n "12.2.1-MariaDB"
229229
}
230230

231231
# initializes the database directory

main-ubi/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ COPY MariaDB.repo /etc/yum.repos.d/
4242
# 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
4343
LABEL name="MariaDB Server" \
4444
vendor="MariaDB Community" \
45-
version="12.2.0" \
45+
version="12.3.0" \
4646
release="Refer to Annotations org.opencontainers.image.{revision,source}" \
4747
summary="MariaDB Database" \
4848
description="MariaDB Database for relational SQL"
@@ -56,11 +56,11 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
5656
org.opencontainers.image.licenses="GPL-2.0" \
5757
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
5858
org.opencontainers.image.vendor="MariaDB Community" \
59-
org.opencontainers.image.version="12.2.0" \
59+
org.opencontainers.image.version="12.3.0" \
6060
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
6161

6262
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
63-
ARG MARIADB_VERSION=12.2.0
63+
ARG MARIADB_VERSION=12.3.0
6464
ENV MARIADB_VERSION=$MARIADB_VERSION
6565
# release-status:Alpha
6666
# release-support-type:Unknown

main-ubi/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ docker_create_db_directories() {
225225
}
226226

227227
_mariadb_version() {
228-
echo -n "12.2.0-MariaDB"
228+
echo -n "12.3.0-MariaDB"
229229
}
230230

231231
# initializes the database directory

main/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,18 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
7777
org.opencontainers.image.licenses="GPL-2.0" \
7878
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
7979
org.opencontainers.image.vendor="MariaDB Community" \
80-
org.opencontainers.image.version="12.2.0" \
80+
org.opencontainers.image.version="12.3.0" \
8181
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
8282

8383
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
84-
ARG MARIADB_VERSION=1:12.2.0+maria~ubu2404
84+
ARG MARIADB_VERSION=1:12.3.0+maria~ubu2404
8585
ENV MARIADB_VERSION $MARIADB_VERSION
8686
# release-status:Alpha
8787
# release-support-type:Unknown
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-12.2.0/repo/ubuntu/ noble main main/debug"
91+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-12.3.0/repo/ubuntu/ noble main main/debug"
9292

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

main/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ docker_create_db_directories() {
225225
}
226226

227227
_mariadb_version() {
228-
echo -n "12.2.0-MariaDB"
228+
echo -n "12.3.0-MariaDB"
229229
}
230230

231231
# initializes the database directory

versions.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
11
{
2+
"12.2": {
3+
"milestone": "12.2",
4+
"version": "12.2.1",
5+
"fullVersion": "1:12.2.1+maria~ubu2404",
6+
"releaseStatus": "RC",
7+
"supportType": "Rolling",
8+
"base": "ubuntu:noble",
9+
"arches": [
10+
"amd64",
11+
"arm64v8",
12+
"ppc64le",
13+
"s390x"
14+
]
15+
},
16+
"12.2-ubi": {
17+
"milestone": "12.2",
18+
"version": "12.2.1",
19+
"fullVersion": "12.2.1",
20+
"releaseStatus": "RC",
21+
"supportType": "Rolling",
22+
"base": "redhat/ubi10-minimal",
23+
"arches": [
24+
"amd64",
25+
"arm64v8",
26+
"ppc64le",
27+
"s390x"
28+
]
29+
},
230
"12.1": {
331
"milestone": "12.1",
432
"version": "12.1.2",

0 commit comments

Comments
 (0)