From 6e7f955d67df79521afd4345892cf09159e004d4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:54:43 +0000 Subject: [PATCH] fix(deps): update spring boot to v2.7.16 (#9526) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- benchmark-overhead-jmh/build.gradle.kts | 2 +- dependencyManagement/build.gradle.kts | 2 +- smoke-tests-otel-starter/build.gradle.kts | 2 +- smoke-tests/images/spring-boot/build.gradle.kts | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/benchmark-overhead-jmh/build.gradle.kts b/benchmark-overhead-jmh/build.gradle.kts index 2d6498889d45..0066d74ae776 100644 --- a/benchmark-overhead-jmh/build.gradle.kts +++ b/benchmark-overhead-jmh/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } dependencies { - jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.1.3") + jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.1.4") } tasks { diff --git a/dependencyManagement/build.gradle.kts b/dependencyManagement/build.gradle.kts index e32fd54e60f1..8a0a7d638730 100644 --- a/dependencyManagement/build.gradle.kts +++ b/dependencyManagement/build.gradle.kts @@ -108,7 +108,7 @@ val DEPENDENCIES = listOf( "org.junit-pioneer:junit-pioneer:1.9.1", "org.objenesis:objenesis:3.3", // Note that this is only referenced as "org.springframework.boot" in build files, not the artifact name. - "org.springframework.boot:spring-boot-dependencies:2.7.15", + "org.springframework.boot:spring-boot-dependencies:2.7.16", "javax.validation:validation-api:2.0.1.Final", "org.snakeyaml:snakeyaml-engine:2.7" ) diff --git a/smoke-tests-otel-starter/build.gradle.kts b/smoke-tests-otel-starter/build.gradle.kts index 4363a7326662..f9472c4cf4cd 100644 --- a/smoke-tests-otel-starter/build.gradle.kts +++ b/smoke-tests-otel-starter/build.gradle.kts @@ -1,6 +1,6 @@ plugins { id("otel.java-conventions") - id("org.springframework.boot") version "3.1.3" + id("org.springframework.boot") version "3.1.4" id("org.graalvm.buildtools.native") } diff --git a/smoke-tests/images/spring-boot/build.gradle.kts b/smoke-tests/images/spring-boot/build.gradle.kts index e96bc5943e11..e9b8ffdea849 100644 --- a/smoke-tests/images/spring-boot/build.gradle.kts +++ b/smoke-tests/images/spring-boot/build.gradle.kts @@ -5,12 +5,12 @@ plugins { id("otel.java-conventions") id("com.google.cloud.tools.jib") - id("org.springframework.boot") version "2.7.15" + id("org.springframework.boot") version "2.7.16" } dependencies { implementation(platform("io.opentelemetry:opentelemetry-bom:1.0.0")) - implementation(platform("org.springframework.boot:spring-boot-dependencies:2.7.15")) + implementation(platform("org.springframework.boot:spring-boot-dependencies:2.7.16")) implementation("io.opentelemetry:opentelemetry-api") implementation(project(":instrumentation-annotations"))