From 6ca2cabffb55526940e88312ba7c2654f903d8ce Mon Sep 17 00:00:00 2001 From: John Niang Date: Mon, 24 Apr 2023 15:47:43 +0800 Subject: [PATCH] Upgrade to Spring Boot 3.0.6 (#3832) 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: Upgrade to Spring Boot 3.0.6. #### Which issue(s) this PR fixes: Fixes https://github.com/halo-dev/halo/issues/3829 #### Does this PR introduce a user-facing change? ```release-note 升级 Spring Boot 至 3.0.6 ``` --- application/build.gradle | 2 +- platform/application/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/build.gradle b/application/build.gradle index 7ba49d1e5..1a4f5198c 100644 --- a/application/build.gradle +++ b/application/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version '3.0.5' + id 'org.springframework.boot' version '3.0.6' id 'io.spring.dependency-management' version '1.1.0' id "com.gorylenko.gradle-git-properties" version "2.3.2" id "checkstyle" diff --git a/platform/application/build.gradle b/platform/application/build.gradle index 761ac9e79..a57d2cb64 100644 --- a/platform/application/build.gradle +++ b/platform/application/build.gradle @@ -1,7 +1,7 @@ import org.springframework.boot.gradle.plugin.SpringBootPlugin plugins { - id 'org.springframework.boot' version '3.0.5' apply false + id 'org.springframework.boot' version '3.0.6' apply false id 'java-platform' id 'halo.publish' id 'signing'