From dbd8b41b6ef5094cff8f86d99cc4d010f1e9f7c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 14:42:50 +0000 Subject: [PATCH] build(deps): bump org.springframework.boot:spring-boot-starter-web Bumps [org.springframework.boot:spring-boot-starter-web](https://github.com/spring-projects/spring-boot) from 4.0.6 to 4.1.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.6...v4.1.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- serverpackcreator-app/build.gradle.kts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/serverpackcreator-app/build.gradle.kts b/serverpackcreator-app/build.gradle.kts index 1083543d3..4c85b7179 100644 --- a/serverpackcreator-app/build.gradle.kts +++ b/serverpackcreator-app/build.gradle.kts @@ -59,11 +59,11 @@ dependencies { api("tokyo.northside:tipoftheday:0.6.0") //WEB - api("org.springframework.boot:spring-boot-starter-web:4.0.6") - api("org.springframework.boot:spring-boot-starter-log4j2:4.0.6") - api("org.springframework.boot:spring-boot-starter-data-mongodb:4.0.6") + api("org.springframework.boot:spring-boot-starter-web:4.1.0") + api("org.springframework.boot:spring-boot-starter-log4j2:4.1.0") + api("org.springframework.boot:spring-boot-starter-data-mongodb:4.1.0") testRuntimeOnly("com.h2database:h2:2.4.240") - testImplementation("org.springframework.boot:spring-boot-starter-test:4.0.6") { + testImplementation("org.springframework.boot:spring-boot-starter-test:4.1.0") { exclude(group = "org.junit.vintage", module = "junit-vintage-engine") exclude(group = "org.mockito", module = "mockito-core") } @@ -72,7 +72,7 @@ dependencies { testRuntimeOnly("org.junit.platform:junit-platform-launcher:6.1.0") testImplementation("com.ninja-squad:springmockk:5.0.1") - developmentOnly("org.springframework.boot:spring-boot-devtools:4.0.6") + developmentOnly("org.springframework.boot:spring-boot-devtools:4.1.0") //developmentOnly("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0") }