Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
3.5.2
-
None
-
MariaDb 11.4.4 / JDBC Driver 3.5.2
Description
After the upgrade to JDBC Driver version 3.5.2 we are no longer able to connect to our database. Everything works well with JDBC Driver 3.5.1. So this a regression. The main problem seems to be the TLS version hardcoded to TLSv1.2 while our configuration only allow TLSv1.3. Seems to be related to the following commit : https://github.com/mariadb-corporation/mariadb-connector-j/commit/ab1ff0ab The client configuration use the following parameters: sslMode=verify-full + enabledSslProtocolSuites=TLSv1.3. The server parameter is tls_version=TLSv1.3. Adding TLSv1.2 both on the client side and on the server side I am able to get connecter. But in Post Quantum era we do not want to get back to TLSv1.2 and would like to stay on TLSv1.3