Hello, I've noticed that this [commit](https://github.com/docker-library/mysql/commit/2e4f2224f31e101d07c1e6a7c0da8245fde725c9?_pjax=%23js-repo-pjax-container) on docker mysql image made all my tests failed : ``` - SET PASSWORD FOR 'root'@'localhost'=PASSWORD('${MYSQL_ROOT_PASSWORD}') ; + ALTER USER 'root'@'localhost' IDENTIFIED BY '${MYSQL_ROOT_PASSWORD}' ; ``` I was using Gitlab CI with *mysql:latest* and got this error : `Client does not support authentication protocol requested by server; consider upgrading MySQL client` Everything ok with older version of mysql image. This happened with mysql2:1.5.3 (latest) Might help other people understanding why CI tests are suddenly failing :)