From e98aec32cab084d353e8b3f3674f276111712bfd Mon Sep 17 00:00:00 2001 From: John Niang Date: Mon, 24 Jul 2023 11:20:14 +0800 Subject: [PATCH] Upgrade Spring Boot 3.1.2 (#4284) 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 /milestone 2.8.x #### What this PR does / why we need it: Upgrade Spring Boot 3.1.2. See https://github.com/spring-projects/spring-boot/releases/tag/v3.1.2 for more. #### Does this PR introduce a user-facing change? ```release-note 升级 Spring Boot 至 3.1.2。 ``` --- 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 23688fcb0..7947dbb6f 100644 --- a/application/build.gradle +++ b/application/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version '3.1.1' + id 'org.springframework.boot' version '3.1.2' 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 35f2d1d9e..485cde622 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.1.1' apply false + id 'org.springframework.boot' version '3.1.2' apply false id 'java-platform' id 'halo.publish' id 'signing'