Skip to content
Open
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
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Features
* Deprecate reading configuration values from `my.cnf` files.


Bug Fixes
--------
* Link to `--ssl`/`--no-ssl` GitHub issue in deprecation warning.


1.49.0 (2026/02/02)
==============

Expand Down
3 changes: 2 additions & 1 deletion mycli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,8 @@ def get_password_from_file(password_file: str | None) -> str | None:
if ssl_enable is not None:
click.secho(
"Warning: The --ssl/--no-ssl CLI options are deprecated and will be removed in a future release. "
"Please use the ssl_mode config or --ssl-mode CLI options instead.",
"Please use the ssl_mode config or --ssl-mode CLI options instead. "
"See issue https://github.com/dbcli/mycli/issues/1507",
err=True,
fg="yellow",
)
Expand Down