Get it from the download page
3rd party updates:
- Issue #1784: update OpenSSL libraries used by libpq-15.dll to v3.1.0, taken from http://wiki.overbyte.eu/wiki/index.php/ICS_Download#Download_OpenSSL_Binaries_.28required_for_SSL-enabled_components.29
New stuff:
- Basic implementation of Sequal Suggest as a dialog, under Tools. For generating SQL queries through natural language. See https://sequal.dev/
Bugfixes and enhancements:
- Issue #1800: wrap column default expression in parentheses on MySQL v8.0.13+ when altering a table
- Issue #1800: attempt to distinguish text values from function expressions in a column's default value, for MySQL 8.0.13+ which seems to allow just all functions as default value.
- Issue #1800: add missing CURDATE function definition to functions-mysql.ini
- Do not cut trailing zeros in scientific values like 2.0e30 => 2.0e3. Closes #1793
- Auto detect need to create HTML clipboard header, remove CreateHTMLHeader parameter from StreamToClipboard()
- Refactor HTML clipboard code. See https://www.heidisql.com/forum.php?t=9893
- Make HTML export format compatible to Google Chrome. See https://www.heidisql.com/forum.php?t=9893
- Support ON UPDATE SET DEFAULT and the same for ON DELETE in PostgreSQL foreign keys. See https://www.heidisql.com/forum.php?t=40413
- Issue #1771: add additional sleep time between SSH process checks, so it does not matter when WaitForSingleObject does not really wait (on Wine)
- Issue #1771: prefer a larger SSH process check interval for larger timeouts (timeout:4s => check interval:400ms), and log process exit code each interval.
- Auto-set the first SSH executable from the dropdown when user activates SSH tunnel checkbox. See https://www.heidisql.com/forum.php?t=40399
- Support canceling SQL export before a table's data has been completed. Closes #1516
- Ensure max INSERT setting is an Int64, so a huge value does not wrap into a negative value. See https://www.heidisql.com/forum.php?t=40393