From b9867415dafc47c3f9e3e32d85a907011c271125 Mon Sep 17 00:00:00 2001 From: John Niang Date: Wed, 29 Mar 2023 10:26:12 +0800 Subject: [PATCH] Upgrade to MariaDB R2DBC connector 1.1.4 (#3610) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What type of PR is this? /kind cleanup /area core #### What this PR does / why we need it: See https://github.com/halo-dev/halo/issues/3600 for more. #### Which issue(s) this PR fixes: Fixes https://github.com/halo-dev/halo/issues/3600 #### Special notes for your reviewer: We can follow the commands below to test it: ```bash # Start up MariaDB docker run -d --env MARIADB_USER=halo -p 3306:3306 --env MARIADB_PASSWORD=mariadb --env MARIADB_ROOT_PASSWORD=mariadb -e MARIADB_DATABASE=halo mariadb:latest # Start up Halo make -C console dev ./gradlew bootRun --args="--spring.profiles.active=dev,mariadb" ``` #### Does this PR introduce a user-facing change? ```release-note 升级至 MariaDB R2DBC connector 1.1.4 ``` --- platform/application/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/application/build.gradle b/platform/application/build.gradle index ce763a31a..d2005fb0d 100644 --- a/platform/application/build.gradle +++ b/platform/application/build.gradle @@ -52,7 +52,7 @@ dependencies { runtime 'io.r2dbc:r2dbc-h2' runtime 'org.postgresql:postgresql' runtime 'org.postgresql:r2dbc-postgresql' - runtime 'org.mariadb:r2dbc-mariadb:1.1.3' + runtime 'org.mariadb:r2dbc-mariadb:1.1.4' runtime 'com.github.jasync-sql:jasync-r2dbc-mysql:2.1.23' }