Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use caching_sha2_password for proxy auth #24

Merged
merged 1 commit into from
Oct 9, 2024

Commits on Oct 9, 2024

  1. Allow using caching_sha2_password for proxy auth

    Up until now, mysql_native_password was used for auth. This is however
    removed in MySQL 9.x and this is the default that Homebrew installs on
    MacOS.
    
    While we can also try to deal with installing older versions on MacOS,
    alternatively we update the auth for the proxy to
    caching_sha2_password.
    
    The one thing that this breaks is very old MySQL 5.7 clients. Anything
    older than MySQL 5.7.23 (released 2018-07-27) would break with this. We
    don't really support 5.7 for the proxy anyway though.
    
    Signed-off-by: Dirkjan Bussink <[email protected]>
    dbussink committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    d96ed5f View commit details
    Browse the repository at this point in the history