Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information