MySQL 9.7 LTS Support Lands Released May 8, 2026 · GitHub Release
v1.26.5 introduces a MySQL Component build for MySQL 8.4 LTS and 9.7 LTS, a unified logging abstraction, and a set of plugin stability fixes. The plugin path for MySQL 8.0, 8.4, and 9.0 is unchanged.
Why the Component architecture matters
MySQL has been deprecating the legacy plugin API in favor of the
Component architecture since 8.0. Components install via
INSTALL COMPONENT, integrate through typed service
interfaces, and are better isolated from server internals —
meaning fewer breakages across MySQL minor versions and a
supported path forward as the plugin API winds down. For
MyVector, this move isn’t optional in the long run: the component
model is where MySQL’s extension ecosystem is heading, and
building on it now means users on …