Skip to content

Commit 47bfc0a

Browse files
committed
MySQL 9.1 support
This commit marks MySQL 9.1 as a supported DB flavor. MySQL 9.1 is a short- term-support Innovation server version, released on 15 October 2024. This is just a small bookkeeping commit. No functionality changes were necessary for MySQL 9.1 support in Skeema, as all integration tests already pass as-is. Note: although MySQL Heatwave and MySQL Enterprise Edition 9.x include support for JavaScript stored programs, these are not supported by any edition of Skeema at this time. We can evaluate inclusion in Skeema Premium once there is sufficient customer interest; please reach out to let us know. Support for JS in Skeema Community is unlikely due to the inability to use MySQL EE in public integration test suites on GitHub Actions. Our general policy is that all Skeema Community functionality should be testable in the same publicly-viewable CI environment.
1 parent f000616 commit 47bfc0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/tengo/flavor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type Version [3]uint16
1616
// at the time of this release. These intentionally exclude patch release
1717
// numbers; corresponding logic handles this appropriately.
1818
var (
19-
LatestMySQLVersion = Version{9, 0}
19+
LatestMySQLVersion = Version{9, 1}
2020
LatestMariaDBVersion = Version{11, 5}
2121
)
2222

0 commit comments

Comments
 (0)