这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
1.39.0 (2025/10/30)
1.39.1 (2025/10/06)
==============

Bug Fixes
--------
* Don't require `--ssl` argument when other SSL arguments are given.


1.39.0 (2025/09/30)
==============

Features
Expand Down
2 changes: 1 addition & 1 deletion mycli/sqlexecute.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def connect(
client_flag |= pymysql.constants.CLIENT.MULTI_STATEMENTS

ssl_context = None
if ssl and ssl.get('enable') is True:
if ssl:
ssl_context = self._create_ssl_ctx(ssl)

conn = pymysql.connect(
Expand Down