mariadb: Update versions - #98
Merged
Merged
Conversation
Remove 12.2 (discontinued upstream), promote 12.3 to stable (new LTS, takes over the 12, latest and lts tags), add 13.0 RC. Fix RC tag format examples in README. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the MariaDB image build pipeline to track upstream changes by removing the discontinued 12.2 series, promoting 12.3 to stable (and moving latest/lts to it), and adding a new 13.0 RC series. This keeps the repo’s MariaDB images aligned with upstream tags and the project’s documented tag strategy.
Changes:
- Promote MariaDB 12.3 from
-rcto stable and movelatest/12/ltstags to 12.3. - Add MariaDB 13.0 RC build/pull support and corresponding Dockerfile.
- Update README and pull-check script to reflect the new supported/unsupported series.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| README.md | Updates documented supported versions and RC tag examples (needs a small fix in the “Available MariaDB images” list). |
| mysql/Dockerfile-12.3 | Switches base image from mariadb:12.3-rc to stable mariadb:12.3 and updates labels. |
| mysql/Dockerfile-13.0 | Introduces a 13.0 RC Dockerfile based on mariadb:13.0-rc with RC labeling. |
| check-pulls.sh | Updates upstream pulls to include mariadb:12.3 and mariadb:13.0-rc. |
| build-mariadb.sh | Rewires build/tag/push flow: 12.3 becomes latest/12/lts, and 13.0 RC is added. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Sync MariaDB images with upstream:
12.3.2) — new LTS series; takes over the12,latestandltstags (theltstag moves from 11.8, following upstream)13.0.1-rc)Also fixes the RC tag format examples in README (
12.2-1-rc→13.0.1-rc— the actual tags use a dot, matching the build script).Note: Git shows
Dockerfile-12.2 → Dockerfile-13.0as a rename due to content similarity; semantically it is a removal and an addition of unrelated series.🤖 Generated with Claude Code