-
Notifications
You must be signed in to change notification settings - Fork 7
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
Update default MariaDB version to 10.6, resolves lando/mariadb#25. #26
base: main
Are you sure you want to change the base?
Conversation
👷 Deploy request for lando-mariadb pending review.Visit the deploys page to approve it
|
e39aac7
to
ea83676
Compare
@@ -7,9 +7,9 @@ const _ = require('lodash'); | |||
module.exports = { | |||
name: 'mariadb', | |||
config: { | |||
version: '10.3', | |||
supported: ['10.6', '10.5', '10.4', '10.3', '10.2', '10.1'], |
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.
Existing versions should not be removed from the supported array. If you remove this, for people who use these versions, Lando will result to ERROR ==> mariadb version 10.2 is not supported
.
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.
@kaszarobert Tormi put versions 10.3 and below into the legacy
array, so it'd just flash a warning that users are on old versions.
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.
@reynoldsalec: We would want to keep 10.3 in the supported array and remove from the legacy array, right?
@kaszarobert I think the reason I didn't merge this back when @tormi suggested it was we were being hesitant about updating the I'm guessing that the update from 10.3 -> 10.6 doesn't introduce incompatibilities, if one of you could confirm that, we should definitely bump the default version. I think this is the big reason Pirog is probably going to dump default versioning in Lando 4. |
Resolves #25.