From e8918efe6e2c2f7ffbfda216eafb64e056391669 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:28:59 +0000 Subject: [PATCH] Bump org.springframework.boot:spring-boot-starter-security in /backend Bumps [org.springframework.boot:spring-boot-starter-security](https://github.com/spring-projects/spring-boot) from 3.5.7 to 4.0.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.5.7...v4.0.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-security dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- backend/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/build.gradle.kts b/backend/build.gradle.kts index fb5caf8..8fa24a8 100644 --- a/backend/build.gradle.kts +++ b/backend/build.gradle.kts @@ -1,6 +1,6 @@ plugins { java - id("org.springframework.boot") version "3.5.7" + id("org.springframework.boot") version "4.0.0" id("io.spring.dependency-management") version "1.1.7" } @@ -45,7 +45,7 @@ dependencies { implementation("org.springframework.boot:spring-boot-starter-amqp") // Security - implementation("org.springframework.boot:spring-boot-starter-security:3.5.7") + implementation("org.springframework.boot:spring-boot-starter-security:4.0.0") implementation("io.jsonwebtoken:jjwt-api:0.13.0") runtimeOnly("io.jsonwebtoken:jjwt-impl:0.13.0") runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.13.0")