From e76d800b07a2e717d736f4dc2358fbc52d5fe1fc Mon Sep 17 00:00:00 2001 From: John Niang Date: Fri, 22 Mar 2024 16:28:08 +0800 Subject: [PATCH] Upgrade Spring Boot to 3.2.4 (#5568) 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: This PR mainly upgrades Spring Boot to [3.2.4](https://github.com/spring-projects/spring-boot/releases/tag/v3.2.4), and also upgrades other Gradle plugins. #### Does this PR introduce a user-facing change? ```release-note 升级依赖 Spring Boot 至 3.2.4 ``` --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index df699b553..7fbe015bd 100644 --- a/build.gradle +++ b/build.gradle @@ -1,9 +1,9 @@ plugins { - id 'org.springframework.boot' version '3.2.3' apply false - id 'io.spring.dependency-management' version '1.1.0' apply false - id "com.gorylenko.gradle-git-properties" version "2.3.2" apply false - id "de.undercouch.download" version "5.3.1" apply false - id "io.freefair.lombok" version "8.4" apply false + id 'org.springframework.boot' version '3.2.4' apply false + id 'io.spring.dependency-management' version '1.1.4' apply false + id "com.gorylenko.gradle-git-properties" version "2.4.1" apply false + id "de.undercouch.download" version "5.6.0" apply false + id "io.freefair.lombok" version "8.6" apply false id 'org.gradle.crypto.checksum' version '1.4.0' apply false - id "com.github.node-gradle.node" version "7.0.1" apply false + id "com.github.node-gradle.node" version "7.0.2" apply false }