-
-
Notifications
You must be signed in to change notification settings - Fork 0
Update uselagoon/mysql-8.4 Docker tag to v26.2.0 #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix YAML inline comment spacing to satisfy lint.
Line 160 has only one space before the inline comment; YAMLlint expects two.
🔧 Proposed fix
📝 Committable suggestion
🧰 Tools
🪛 YAMLlint (1.38.0)
[warning] 160-160: too few spaces before comment: expected 2
(comments)
🤖 Prompt for AI Agents
🧩 Analysis chain
🌐 Web query:
uselagoon/mysql-8.4:26.2.0 Docker image tag lagoon-images release💡 Result:
uselagoon/mysql-8.4:26.2.0is the MySQL 8.4 Lagoon image built and published as part of theuselagoon/lagoon-imagesrelease26.2.0(released Feb 23, 2026). In that release, the MySQL base was updated to upstreammysql:8.4.8(Oracle Linux variant), so this tag contains MySQL 8.4.8 plus Lagoon’s standard adaptations. [1], [3]Lagoon’s docs also note that Lagoon images are published with both
:latestand versioned tags matching the Lagoon images release (e.g.,:20.10.0), which is why:26.2.0exists. [2]Sources: [1] [2] [3]
🌐 Web query:
lagoon-images v26.2.0 release notes mysql-8.4 breaking changes💡 Result:
lagoon-images v26.2.0 (released 2026-02-23) — MySQL-related notes
In this release, Lagoon updated the upstream MySQL base images, including:
mysql8.4.8 (used byuselagoon/mysql-8.4) andmysql8.0.45 (used byuselagoon/mysql-8.0). [1]MySQL 8.4 breaking / behavior-changing items to watch for
When moving to MySQL 8.4.x (LTS), key breaking/impactful changes called out in Oracle’s 8.4.0 release notes include:
default_authentication_pluginis removed (useauthentication_policyinstead). Any configs still setting it will error on startup. [2]mysql_native_passwordplugin is disabled by default; if you still need it, you must explicitly enable it via--mysql-native-password=ON(ormysql_native_password=ONin config). [3]START SLAVE,SHOW SLAVE STATUS,CHANGE MASTER TO, etc. are removed in favor of... REPLICA .../... REPLICATION SOURCE ..., and several relatedCom_slave_*/Com_show_slave_*status variables are removed/renamed. [4]Sources:
[1] lagoon-images 26.2.0 release notes (GitHub) [1]
[2] MySQL 8.4.0 release notes – removal of
default_authentication_plugin[2][3] MySQL 8.4.0 release notes –
mysql_native_passworddisabled by default [3][4] MySQL 8.4.0 release notes – replication statement/status-variable removals/renames [4]
Review MySQL 8.4 breaking changes before deploying this image.
The image tag
uselagoon/mysql-8.4:26.2.0is valid and published as part of lagoon-images v26.2.0 (Feb 23, 2026), which upgrades to MySQL 8.4.8. However, MySQL 8.4 introduces breaking changes that require configuration updates:default_authentication_pluginis removed; existing configs using it will fail on startup.mysql_native_passwordplugin is disabled by default; enable explicitly if required.START SLAVE→START REPLICA,CHANGE MASTER TO→CHANGE REPLICATION SOURCE TO, and associated status variables renamed).Confirm your application and database configurations are compatible with MySQL 8.4.8 before merging.
🧰 Tools
🪛 YAMLlint (1.38.0)
[warning] 160-160: too few spaces before comment: expected 2
(comments)
🤖 Prompt for AI Agents