Skip to content

Commit 6425213

Browse files
committed
2024Q4 part 1 release
1 parent c1fd2c4 commit 6425213

17 files changed

+48
-90
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.9" \
39+
version="10.11.10" \
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.9" \
53+
org.opencontainers.image.version="10.11.10" \
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.9
57+
ARG MARIADB_VERSION=10.11.10
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.9-MariaDB"
226+
echo -n "10.11.10-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.9" \
78+
org.opencontainers.image.version="10.11.10" \
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.9+maria~ubu2204
82+
ARG MARIADB_VERSION=1:10.11.10+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.9/repo/ubuntu/ jammy main main/debug"
89+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.11.10/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.9-MariaDB"
226+
echo -n "10.11.10-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.26" \
78+
org.opencontainers.image.version="10.5.27" \
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.26+maria~ubu2004
84+
ARG MARIADB_VERSION=1:10.5.27+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.26/repo/ubuntu/ focal main main/debug"
91+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.5.27/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.26-MariaDB"
218+
echo -n "10.5.27-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.19" \
39+
version="10.6.20" \
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.19" \
53+
org.opencontainers.image.version="10.6.20" \
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.19
58+
ARG MARIADB_VERSION=10.6.20
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.19-MariaDB"
218+
echo -n "10.6.20-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.19" \
78+
org.opencontainers.image.version="10.6.20" \
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.19+maria~ubu2004
84+
ARG MARIADB_VERSION=1:10.6.20+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.19/repo/ubuntu/ focal main main/debug"
91+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-10.6.20/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.19-MariaDB"
218+
echo -n "10.6.20-MariaDB"
219219
}
220220

221221
# initializes the database directory

11.2/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="11.2.5" \
78+
org.opencontainers.image.version="11.2.6" \
7979
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
8080

8181
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
82-
ARG MARIADB_VERSION=1:11.2.5+maria~ubu2204
82+
ARG MARIADB_VERSION=1:11.2.6+maria~ubu2204
8383
ENV MARIADB_VERSION $MARIADB_VERSION
8484
# release-status:Stable
8585
# release-support-type:Short 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-11.2.5/repo/ubuntu/ jammy main main/debug"
89+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-11.2.6/repo/ubuntu/ jammy main main/debug"
9090

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

11.2/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 "11.2.5-MariaDB"
226+
echo -n "11.2.6-MariaDB"
227227
}
228228

229229
# initializes the database directory

11.4-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="11.4.3" \
39+
version="11.4.4" \
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="11.4.3" \
53+
org.opencontainers.image.version="11.4.4" \
5454
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
5555

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

11.4-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 "11.4.3-MariaDB"
228+
echo -n "11.4.4-MariaDB"
229229
}
230230

231231
# initializes the database directory

11.4/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="11.4.3" \
78+
org.opencontainers.image.version="11.4.4" \
7979
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
8080

8181
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
82-
ARG MARIADB_VERSION=1:11.4.3+maria~ubu2404
82+
ARG MARIADB_VERSION=1:11.4.4+maria~ubu2404
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-11.4.3/repo/ubuntu/ noble main main/debug"
89+
ARG REPOSITORY="http://archive.mariadb.org/mariadb-11.4.4/repo/ubuntu/ noble main main/debug"
9090

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

11.4/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 "11.4.3-MariaDB"
228+
echo -n "11.4.4-MariaDB"
229229
}
230230

231231
# initializes the database directory

versions.json

Lines changed: 16 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"11.4": {
33
"milestone": "11.4",
4-
"version": "11.4.3",
5-
"fullVersion": "1:11.4.3+maria~ubu2404",
4+
"version": "11.4.4",
5+
"fullVersion": "1:11.4.4+maria~ubu2404",
66
"releaseStatus": "Stable",
77
"supportType": "Long Term Support",
88
"base": "ubuntu:noble",
@@ -15,8 +15,8 @@
1515
},
1616
"11.4-ubi": {
1717
"milestone": "11.4",
18-
"version": "11.4.3",
19-
"fullVersion": "11.4.3",
18+
"version": "11.4.4",
19+
"fullVersion": "11.4.4",
2020
"releaseStatus": "Stable",
2121
"supportType": "Long Term Support",
2222
"base": "ubi9",
@@ -29,8 +29,8 @@
2929
},
3030
"11.2": {
3131
"milestone": "11.2",
32-
"version": "11.2.5",
33-
"fullVersion": "1:11.2.5+maria~ubu2204",
32+
"version": "11.2.6",
33+
"fullVersion": "1:11.2.6+maria~ubu2204",
3434
"releaseStatus": "Stable",
3535
"supportType": "Short Term Support",
3636
"base": "ubuntu:jammy",
@@ -43,8 +43,8 @@
4343
},
4444
"10.11": {
4545
"milestone": "10.11",
46-
"version": "10.11.9",
47-
"fullVersion": "1:10.11.9+maria~ubu2204",
46+
"version": "10.11.10",
47+
"fullVersion": "1:10.11.10+maria~ubu2204",
4848
"releaseStatus": "Stable",
4949
"supportType": "Long Term Support",
5050
"base": "ubuntu:jammy",
@@ -57,8 +57,8 @@
5757
},
5858
"10.11-ubi": {
5959
"milestone": "10.11",
60-
"version": "10.11.9",
61-
"fullVersion": "10.11.9",
60+
"version": "10.11.10",
61+
"fullVersion": "10.11.10",
6262
"releaseStatus": "Stable",
6363
"supportType": "Long Term Support",
6464
"base": "ubi9",
@@ -71,8 +71,8 @@
7171
},
7272
"10.6": {
7373
"milestone": "10.6",
74-
"version": "10.6.19",
75-
"fullVersion": "1:10.6.19+maria~ubu2004",
74+
"version": "10.6.20",
75+
"fullVersion": "1:10.6.20+maria~ubu2004",
7676
"releaseStatus": "Stable",
7777
"supportType": "Long Term Support",
7878
"base": "ubuntu:focal",
@@ -85,8 +85,8 @@
8585
},
8686
"10.6-ubi": {
8787
"milestone": "10.6",
88-
"version": "10.6.19",
89-
"fullVersion": "10.6.19",
88+
"version": "10.6.20",
89+
"fullVersion": "10.6.20",
9090
"releaseStatus": "Stable",
9191
"supportType": "Long Term Support",
9292
"base": "ubi9",
@@ -99,8 +99,8 @@
9999
},
100100
"10.5": {
101101
"milestone": "10.5",
102-
"version": "10.5.26",
103-
"fullVersion": "1:10.5.26+maria~ubu2004",
102+
"version": "10.5.27",
103+
"fullVersion": "1:10.5.27+maria~ubu2004",
104104
"releaseStatus": "Stable",
105105
"supportType": "Long Term Support",
106106
"base": "ubuntu:focal",
@@ -110,47 +110,5 @@
110110
"ppc64le",
111111
"s390x"
112112
]
113-
},
114-
"11.4-ubi/": {
115-
"milestone": "11.4-ubi/",
116-
"version": "11.4.3",
117-
"fullVersion": "1:11.4.3+maria~ubu2404",
118-
"releaseStatus": "Stable",
119-
"supportType": "Long Term Support",
120-
"base": "ubuntu:noble",
121-
"arches": [
122-
"amd64",
123-
"arm64v8",
124-
"ppc64le",
125-
"s390x"
126-
]
127-
},
128-
"11.6": {
129-
"milestone": "11.6",
130-
"version": "11.6.1",
131-
"fullVersion": "1:11.6.1+maria~ubu2404",
132-
"releaseStatus": "Unknown",
133-
"supportType": "Unknown",
134-
"base": "ubuntu:noble",
135-
"arches": [
136-
"amd64",
137-
"arm64v8",
138-
"ppc64le",
139-
"s390x"
140-
]
141-
},
142-
"11.6-ubi": {
143-
"milestone": "11.6",
144-
"version": "11.6.1",
145-
"fullVersion": "11.6.1",
146-
"releaseStatus": "RC",
147-
"supportType": "Short Term Support",
148-
"base": "ubi9",
149-
"arches": [
150-
"amd64",
151-
"arm64v8",
152-
"ppc64le",
153-
"s390x"
154-
]
155113
}
156114
}

0 commit comments

Comments
 (0)