-
Notifications
You must be signed in to change notification settings - Fork 2
Drop MySQL 4.1/5.0/5.1 support, add 8.4/9.x to supported versions #19
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
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 |
|---|---|---|
|
|
@@ -116,9 +116,9 @@ func preliminaryChecks() { | |
| os.Exit(1) | ||
| } | ||
|
|
||
| shortVersions := []string{"4.1", "5.0", "5.1", "5.5", "5.6", "5.7", "8.0"} | ||
| shortVersions := []string{"5.5", "5.6", "5.7", "8.0", "8.4", "9.0"} | ||
| if os.Getenv("GITHUB_ACTIONS") != "" { | ||
| shortVersions = []string{"5.6", "5.7", "8.0"} | ||
| shortVersions = []string{"5.7", "8.0", "8.4"} | ||
| } | ||
|
Comment on lines
+119
to
122
|
||
| customShortVersions := os.Getenv("TEST_SHORT_VERSIONS") | ||
| if customShortVersions != "" { | ||
|
|
||
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.
SupportedMySQLVersions/SupportedAllVersionsnow include 8.4 and 9.0–9.2, but the embedded tarball registry (downloads/tarball_list.json) currently has no entries for these short versions. If users (or downstream tools consumingExportReferenceData) interpret these lists as versions that can be downloaded viadownloads get-by-version, requests for 8.4/9.x will fail to resolve a tarball. Consider either adding seed tarball entries for the new short versions, or clarifying (in code/docs) that these “supported” lists are metadata and not tied to what the downloads registry can fetch.