From eb92c5ec4b460ca8f2a831e6f2505d25f01b4715 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 15:25:43 +0300 Subject: [PATCH] fix(deps): update spring boot to v2.7.17 (#9718) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- dependencyManagement/build.gradle.kts | 2 +- smoke-tests/images/spring-boot/build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dependencyManagement/build.gradle.kts b/dependencyManagement/build.gradle.kts index 90099bce3715..6bdc3225a6c2 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.16", + "org.springframework.boot:spring-boot-dependencies:2.7.17", "javax.validation:validation-api:2.0.1.Final", "org.snakeyaml:snakeyaml-engine:2.7" ) diff --git a/smoke-tests/images/spring-boot/build.gradle.kts b/smoke-tests/images/spring-boot/build.gradle.kts index e9b8ffdea849..5c3791dbb56f 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.16" + id("org.springframework.boot") version "2.7.17" } dependencies { implementation(platform("io.opentelemetry:opentelemetry-bom:1.0.0")) - implementation(platform("org.springframework.boot:spring-boot-dependencies:2.7.16")) + implementation(platform("org.springframework.boot:spring-boot-dependencies:2.7.17")) implementation("io.opentelemetry:opentelemetry-api") implementation(project(":instrumentation-annotations"))