Mysql – Latest MySQL version for Windows 7

MySQLmysql-workbench

How can find out which are the latest GA verions of MySQL Server & Workbench supported under Windows 7?

On the 'MySQL Product Support EOL Announcements' page it states:

Per the MySQL Support Lifecycle policy regarding ending support for
OS versions that are obsolete or have reached end of life, we plan to
discontinue building all MySQL binaries for Microsoft Windows 7 as of
June 23, 2016

But I am unable to find information on which versions DO support Windows 7.

I tried using the installer:
MySQL Installer-Web seems to be the same for versions 5.6.45, 5.7.27 and 8.17.0 and each of these installers offers me the upgrade of my x64 system to 5.7.27 and my x86 system to 5.7.26. I would usually take that at face value, and assume the installer was suggesting the latest GA version for my system BUT it also offers me MySQL Workbench 8.0.17 x64, which I know to be incorrect because

Best Answer

From the code repository I see that "Windows 7" was removed from the supported OS list on Oct 3rd, 2018.

   static std::vector<std::string> supportedOsList{
-    "Ubuntu 18.04", "Ubuntu 16.04", "Debian 8",
+    "Ubuntu 18.04", "Ubuntu 18.10", "Debian 9",

     "Red Hat Enterprise Linux Server release 7", // Oracle 7.1 looks like this: "Red Hat Enterprise Linux Server release
                                                  // 7.1 (Maipo)"
-    "Fedora release 28", "Fedora release 27", "CentOS release 7",
+    "Fedora release 28", "Fedora release 29", "CentOS release 7",

-    "Windows 7", "Windows 8", "Windows 10", "Windows 2012 Server", "Windows Server 2012 R2", "Windows Server 2016",
+    "Windows 10", "Windows Server 2016",

-    "OS X 10.11", "macOS 10.12", "macOS 10.13"
+    "macOS 10.13", "macOS 10.14"
   };

The release after that (8.0.13) was the first one without official Win 7 support.