diff --git a/11.5-ubi/Dockerfile b/11.5-ubi/Dockerfile index 9641cb69b1c46e4c3fdc849d20eea3cd393deced..6dbc85cd925d76290b305cc218b58d4d4575af26 100644 --- a/11.5-ubi/Dockerfile +++ b/11.5-ubi/Dockerfile @@ -56,7 +56,7 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \ # bashbrew-architectures: amd64 arm64v8 ppc64le s390x ARG MARIADB_VERSION=11.5.1 ENV MARIADB_VERSION=$MARIADB_VERSION -# release-status:RC +# release-status:Stable # release-support-type:Short Term Support # (https://downloads.mariadb.org/rest-api/mariadb/) diff --git a/11.5/Dockerfile b/11.5/Dockerfile index 36071779dc8c0ff7de1c296853419e0e16387d35..6a04d06d420f6c7a7133ea4b2e0ed62665cb7ace 100644 --- a/11.5/Dockerfile +++ b/11.5/Dockerfile @@ -81,7 +81,7 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \ # bashbrew-architectures: amd64 arm64v8 ppc64le s390x ARG MARIADB_VERSION=1:11.5.1+maria~ubu2404 ENV MARIADB_VERSION $MARIADB_VERSION -# release-status:RC +# release-status:Stable # release-support-type:Short Term Support # (https://downloads.mariadb.org/rest-api/mariadb/) diff --git a/11.6-ubi/Dockerfile b/11.6-ubi/Dockerfile index 46e67ba4b0079281a0e11e5aee592d4744b94f5f..a059b835a2ad3c1eb57301810da18b0198c59806 100644 --- a/11.6-ubi/Dockerfile +++ b/11.6-ubi/Dockerfile @@ -56,8 +56,8 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \ # bashbrew-architectures: amd64 arm64v8 ppc64le s390x ARG MARIADB_VERSION=11.6.0 ENV MARIADB_VERSION=$MARIADB_VERSION -# release-status:Unknown -# release-support-type:Unknown +# release-status:RC +# release-support-type:Short Term Support # (https://downloads.mariadb.org/rest-api/mariadb/) # missing pwgen(epel), jemalloc(epel) (as entrypoint/user extensions) diff --git a/11.6/Dockerfile b/11.6/Dockerfile index 06bf0e3856c2d14fb67562d2ad514b3a58bf1c11..e3f5b28bbb64821ace9baeeabc7f4dd62ea4fe68 100644 --- a/11.6/Dockerfile +++ b/11.6/Dockerfile @@ -81,8 +81,8 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \ # bashbrew-architectures: amd64 arm64v8 ppc64le s390x ARG MARIADB_VERSION=1:11.6.0+maria~ubu2404 ENV MARIADB_VERSION $MARIADB_VERSION -# release-status:Alpha -# release-support-type:Unknown +# release-status:RC +# release-support-type:Short Term Support # (https://downloads.mariadb.org/rest-api/mariadb/) # Allowing overriding of REPOSITORY, a URL that includes suite and component for testing and Enterprise Versions diff --git a/update.sh b/update.sh index 4055f78ffc06c020313f5db675b7eaac9d9e738b..746770097332dc5541c1d38e5855a448eea64418 100755 --- a/update.sh +++ b/update.sh @@ -246,6 +246,20 @@ for version in "${versions[@]}"; do | jq -r --arg version "${version%-*}" '.major_releases[] | select(.release_id == $version) | [ .release_status ] , [ .release_support_type ] | @tsv')" releaseStatus=${release[0]:-Unknown} supportType=${release[1]:-Unknown} + if [ "$releaseStatus" == Unknown ]; then + case "$version" in + 11.5*) + releaseStatus=Stable + ;; + 11.6*) + releaseStatus=RC + ;; + main*) + releaseStatus=Alpha + ;; + esac + supportType="Short Term Support" + fi update_version done diff --git a/versions.json b/versions.json index 0551e54348c59dc4e4a966ced0a3ed23c16d32e1..b469b444a8802153557b5e42b7654bbf29b96e62 100644 --- a/versions.json +++ b/versions.json @@ -115,7 +115,7 @@ "milestone": "11.5", "version": "11.5.1", "fullVersion": "1:11.5.1+maria~ubu2404", - "releaseStatus": "RC", + "releaseStatus": "Stable", "supportType": "Short Term Support", "base": "ubuntu:noble", "arches": [ @@ -129,6 +129,34 @@ "milestone": "11.5", "version": "11.5.1", "fullVersion": "11.5.1", + "releaseStatus": "Stable", + "supportType": "Short Term Support", + "base": "ubi9", + "arches": [ + "amd64", + "arm64v8", + "ppc64le", + "s390x" + ] + }, + "11.6": { + "milestone": "11.6", + "version": "11.6.0", + "fullVersion": "1:11.6.0+maria~ubu2404", + "releaseStatus": "RC", + "supportType": "Short Term Support", + "base": "ubuntu:noble", + "arches": [ + "amd64", + "arm64v8", + "ppc64le", + "s390x" + ] + }, + "11.6-ubi": { + "milestone": "11.6", + "version": "11.6.0", + "fullVersion": "11.6.0", "releaseStatus": "RC", "supportType": "Short Term Support", "base": "ubi9",