You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Upgrade mysql-connector-java to 8.0.33 (#544)
mysql 8 change its default authentication from mysql_native_password to
caching_sha2_password.
https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password
Upgrading mysql-connector-java will allow seamless connection to the
latest MySQL version without the need to set WITH mysql_native_password
manually.
Testing:
- Run mysql container such as follow:
docker run --name mysql -e MYSQL_ROOT_PASSWORD=judgels-root \
-e MYSQL_USER=judgels -e MYSQL_PASSWORD=judgels \
-e MYSQL_DATABASE=judgels -d mysql:8
- Successfully run ../gradlew dbMigrate in devcontainer
0 commit comments