diff --git a/changelog.md b/changelog.md index da8a8c1d..7ccb6eab 100644 --- a/changelog.md +++ b/changelog.md @@ -8,6 +8,7 @@ Features * Add SSL/TLS version to `status` output. * Accept `socket` as a DSN query parameter. * Accept new-style `ssl_mode` in DSN URI query parameters, to match CLI argument. +* Fully deprecate the built-in SSH functionality. Bug Fixes diff --git a/mycli/main.py b/mycli/main.py index c64c6a04..ba5eae3f 100755 --- a/mycli/main.py +++ b/mycli/main.py @@ -1883,8 +1883,8 @@ def get_password_from_file(password_file: str | None) -> str | None: # ssh_port and ssh_config_path have truthy defaults and are not included if any([ssh_user, ssh_host, ssh_password, ssh_key_filename, list_ssh_config, ssh_config_host]) and not ssh_warning_off: click.secho( - "Warning: The built-in SSH functionality is soft deprecated and may be removed in a future release. " - "Please discuss or vote on this at https://github.com/dbcli/mycli/issues/1464", + "Warning: The built-in SSH functionality is deprecated and will be removed in a future release. " + "See Issue https://github.com/dbcli/mycli/issues/1464", err=True, fg="red", )