-
-
Notifications
You must be signed in to change notification settings - Fork 13.5k
mariadb: Use accurate end-of-life dates #258262
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,8 +28,9 @@ class MariadbAT114 < Formula | |
|
|
||
| keg_only :versioned_formula | ||
|
|
||
| # See: https://mariadb.com/kb/en/changes-improvements-in-mariadb-11-4/ | ||
| # End-of-life on 2029-05-29: https://mariadb.org/about/#maintenance-policy | ||
| # From https://mariadb.org/about/#maintenance-policy: | ||
| # > For releases up to MariaDB 11.4, the binaries are released for 5 years | ||
| # > after the GA date (29 May 2024) | ||
|
Comment on lines
+31
to
+33
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not much differ, the original is still fine. |
||
| deprecate! date: "2029-05-29", because: :unsupported | ||
|
|
||
| depends_on "bison" => :build | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,8 +28,11 @@ class MariadbAT118 < Formula | |
|
|
||
| keg_only :versioned_formula | ||
|
|
||
| # End-of-life on 2028-06-04: https://mariadb.org/about/#maintenance-policy | ||
| deprecate! date: "2028-06-04", because: :unsupported | ||
| # From https://mariadb.org/about/#maintenance-policy: | ||
| # > Critical security fixes will be provided as source code releases only and | ||
| # > on a best effort basis for 2 additional years beyond Community maintenance | ||
| # > LTS level | ||
|
Comment on lines
+32
to
+34
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think this is the reason to keep 2 more years, upstream already specified the date of EOL.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the review! Upstream defined the date for EOL as 2030-06-04 for MariaDB 11.8, and that is the whole point why I submitted this PR. The date in Homebrew is currently wrong as the last binary release date was used, not the actual date for how long Homebrew, Linux distros and anyone else building from sources has.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "best effort" doesn't really sound the same as "supported". But the deprecation date should probably be whenever they stop doing normal releases, with the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In their vocabulary "supported" means when they publish binaries, which does not affect Homebrew. For Homebrew the relevant date is how long there will be updates in the source code, which is until 2030-06-04.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will they also still tag releases in the source until then? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes |
||
| deprecate! date: "2030-06-04", because: :unsupported | ||
|
|
||
| depends_on "bison" => :build | ||
| depends_on "cmake" => :build | ||
|
|
||
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.
Please also add a
disable!date for when the software is really EOL.