-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skip "innovation" when any other release is newer
We're in a temporary state where we have 8.4 as the freshly minted LTS and innovation still points to 8.3 (which is now "EOL") until 9.x -- this implementation ensures we bring innovation back automatically when it gets 9.x. See also https://dev.mysql.com/blog-archive/introducing-mysql-innovation-and-long-term-support-lts-versions/ especially the final graphic.
- Loading branch information
Showing
3 changed files
with
58 additions
and
32 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,57 @@ | ||
{ | ||
"8.0": { | ||
"debian": { | ||
"architectures": [ | ||
"amd64" | ||
], | ||
"suite": "bookworm", | ||
"version": "8.0.37-1debian12" | ||
}, | ||
"mysql-shell": { | ||
"repo": "https://repo.mysql.com/yum/mysql-tools-community/el/8", | ||
"version": "8.0.37-1.el8" | ||
}, | ||
"8.4": { | ||
"oracle": { | ||
"architectures": [ | ||
"amd64", | ||
"arm64v8" | ||
], | ||
"repo": "https://repo.mysql.com/yum/mysql-8.0-community/docker/el/8", | ||
"variant": "8-slim", | ||
"version": "8.0.37-1.el8" | ||
"repo": "https://repo.mysql.com/yum/mysql-8.4-community/docker/el/8", | ||
"version": "8.4.0-1.el8", | ||
"variant": "8-slim" | ||
}, | ||
"version": "8.0.37" | ||
}, | ||
"8.4": { | ||
"mysql-shell": { | ||
"repo": "https://repo.mysql.com/yum/mysql-tools-8.4-community/el/8", | ||
"version": "8.4.0-1.el8" | ||
}, | ||
"version": "8.4.0" | ||
}, | ||
"innovation": { | ||
"oracle": { | ||
"architectures": [ | ||
"amd64", | ||
"arm64v8" | ||
], | ||
"repo": "https://repo.mysql.com/yum/mysql-8.4-community/docker/el/8", | ||
"variant": "8-slim", | ||
"version": "8.4.0-1.el8" | ||
"repo": "https://repo.mysql.com/yum/mysql-innovation-community/docker/el/8", | ||
"version": "8.3.0-1.el8", | ||
"variant": "8-slim" | ||
}, | ||
"version": "8.4.0" | ||
}, | ||
"innovation": { | ||
"mysql-shell": { | ||
"repo": "https://repo.mysql.com/yum/mysql-tools-innovation-community/el/8", | ||
"version": "8.4.0-1.el8" | ||
}, | ||
"version": "8.3.0" | ||
}, | ||
"8.0": { | ||
"version": "8.0.37", | ||
"debian": { | ||
"architectures": [ | ||
"amd64" | ||
], | ||
"suite": "bookworm", | ||
"version": "8.0.37-1debian12" | ||
}, | ||
"oracle": { | ||
"architectures": [ | ||
"amd64", | ||
"arm64v8" | ||
], | ||
"repo": "https://repo.mysql.com/yum/mysql-innovation-community/docker/el/8", | ||
"variant": "8-slim", | ||
"version": "8.3.0-1.el8" | ||
"repo": "https://repo.mysql.com/yum/mysql-8.0-community/docker/el/8", | ||
"version": "8.0.37-1.el8", | ||
"variant": "8-slim" | ||
}, | ||
"version": "8.3.0" | ||
"mysql-shell": { | ||
"repo": "https://repo.mysql.com/yum/mysql-tools-community/el/8", | ||
"version": "8.0.37-1.el8" | ||
} | ||
} | ||
} |
This file contains 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