We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50dc11d + c83f845 commit e898eb5Copy full SHA for e898eb5
2 files changed
changelog.md
@@ -1,4 +1,12 @@
1
-1.39.0 (2025/10/30)
+1.39.1 (2025/10/06)
2
+==============
3
+
4
+Bug Fixes
5
+--------
6
+* Don't require `--ssl` argument when other SSL arguments are given.
7
8
9
+1.39.0 (2025/09/30)
10
==============
11
12
Features
mycli/sqlexecute.py
@@ -224,7 +224,7 @@ def connect(
224
client_flag |= pymysql.constants.CLIENT.MULTI_STATEMENTS
225
226
ssl_context = None
227
- if ssl and ssl.get('enable') is True:
+ if ssl:
228
ssl_context = self._create_ssl_ctx(ssl)
229
230
conn = pymysql.connect(
0 commit comments