From 0f4a1f9eb108c868edd8514e1d1855a2f2e07269 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 13:52:02 +0000 Subject: [PATCH 1/2] 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 3.2.0-M1 to 3.2.0-M2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.2.0-M1...v3.2.0-M2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e4f39c70..a1f12504 100644 --- a/build.gradle +++ b/build.gradle @@ -86,7 +86,7 @@ dependencies { exclude group: 'jakarta.servlet', module: 'jakarta.servlet-api' // until jetty 12 exclude module: 'jetty-xml' } - implementation('org.springframework.boot:spring-boot-starter-web:3.2.0-M1') { + implementation('org.springframework.boot:spring-boot-starter-web:3.2.0-M2') { exclude module: 'spring-boot-starter-tomcat' } implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.2.0-M1' From 0617966e592b1d59ba516af93474af51e478227d Mon Sep 17 00:00:00 2001 From: JKatzwinkel Date: Mon, 28 Aug 2023 14:27:29 +0200 Subject: [PATCH 2/2] upgrade spring-boot artifacts to 3.2.0-M2 --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index a1f12504..af65f4bc 100644 --- a/build.gradle +++ b/build.gradle @@ -82,14 +82,14 @@ dependencies { // https://github.com/spring-projects/spring-framework/issues/29435 implementation('jakarta.servlet:jakarta.servlet-api:5.0.0') - implementation('org.springframework.boot:spring-boot-starter-jetty:3.2.0-M1') { + implementation('org.springframework.boot:spring-boot-starter-jetty:3.2.0-M2') { exclude group: 'jakarta.servlet', module: 'jakarta.servlet-api' // until jetty 12 exclude module: 'jetty-xml' } implementation('org.springframework.boot:spring-boot-starter-web:3.2.0-M2') { exclude module: 'spring-boot-starter-tomcat' } - implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.2.0-M1' + implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.2.0-M2' implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.2.1' implementation 'org.apache.commons:commons-lang3:3.13.0' @@ -100,7 +100,7 @@ dependencies { } testImplementation('jakarta.servlet:jakarta.servlet-api:6.0.0') - testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.0-M1' + testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.0-M2' testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.0' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0' }