From 84ef6f94fb67314be8fe62e5a2d677427d427ecc Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Wed, 4 Feb 2026 05:39:32 -0500 Subject: [PATCH] link to --ssl deprecation issue in warning for completeness --- changelog.md | 5 +++++ mycli/main.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index add78904..79d1c82c 100644 --- a/changelog.md +++ b/changelog.md @@ -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) ============== diff --git a/mycli/main.py b/mycli/main.py index 44535d05..0093c4a2 100755 --- a/mycli/main.py +++ b/mycli/main.py @@ -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", )