From e8f93bbc6dedf077dd6dd9937eecbf04a40352d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 17:22:01 +0000 Subject: [PATCH] Bump the centralized-integration-deps group across 1 directory with 4 updates Bumps the centralized-integration-deps group with 4 updates in the /centralized-sampling-tests/integration-tests directory: [io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha](https://github.com/open-telemetry/opentelemetry-java-instrumentation), [io.opentelemetry.contrib:opentelemetry-aws-xray](https://github.com/open-telemetry/opentelemetry-java-contrib), [com.jayway.jsonpath:json-path](https://github.com/jayway/JsonPath) and [io.spring.dependency-management](https://github.com/spring-gradle-plugins/dependency-management-plugin). Updates `io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha` from 1.32.0-alpha to 2.8.0-alpha - [Release notes](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases) - [Changelog](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/CHANGELOG.md) - [Commits](https://github.com/open-telemetry/opentelemetry-java-instrumentation/commits) Updates `io.opentelemetry.contrib:opentelemetry-aws-xray` from 1.32.0 to 1.39.0 - [Release notes](https://github.com/open-telemetry/opentelemetry-java-contrib/releases) - [Changelog](https://github.com/open-telemetry/opentelemetry-java-contrib/blob/main/CHANGELOG.md) - [Commits](https://github.com/open-telemetry/opentelemetry-java-contrib/compare/v1.32.0...v1.39.0) Updates `com.jayway.jsonpath:json-path` from 2.8.0 to 2.9.0 - [Release notes](https://github.com/jayway/JsonPath/releases) - [Changelog](https://github.com/json-path/JsonPath/blob/master/changelog.md) - [Commits](https://github.com/jayway/JsonPath/compare/json-path-2.8.0...json-path-2.9.0) Updates `io.spring.dependency-management` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/spring-gradle-plugins/dependency-management-plugin/releases) - [Commits](https://github.com/spring-gradle-plugins/dependency-management-plugin/compare/v1.1.4...v1.1.6) --- updated-dependencies: - dependency-name: io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha dependency-type: direct:production update-type: version-update:semver-major dependency-group: centralized-integration-deps - dependency-name: io.opentelemetry.contrib:opentelemetry-aws-xray dependency-type: direct:production update-type: version-update:semver-minor dependency-group: centralized-integration-deps - dependency-name: com.jayway.jsonpath:json-path dependency-type: direct:production update-type: version-update:semver-minor dependency-group: centralized-integration-deps - dependency-name: io.spring.dependency-management dependency-type: direct:production update-type: version-update:semver-patch dependency-group: centralized-integration-deps ... Signed-off-by: dependabot[bot] --- centralized-sampling-tests/integration-tests/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/centralized-sampling-tests/integration-tests/build.gradle b/centralized-sampling-tests/integration-tests/build.gradle index a7b79cbc..01883ca3 100644 --- a/centralized-sampling-tests/integration-tests/build.gradle +++ b/centralized-sampling-tests/integration-tests/build.gradle @@ -1,6 +1,6 @@ plugins { id 'org.springframework.boot' version '2.7.18' - id 'io.spring.dependency-management' version '1.1.4' + id 'io.spring.dependency-management' version '1.1.6' id 'java' id 'java-library' id 'application' @@ -14,7 +14,7 @@ repositories { } dependencies { - api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.32.0-alpha")) + api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.8.0-alpha")) implementation("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-starter") @@ -22,12 +22,12 @@ dependencies { implementation ("io.opentelemetry:opentelemetry-sdk") implementation("io.opentelemetry:opentelemetry-api") implementation ("io.opentelemetry:opentelemetry-exporter-otlp") - implementation("io.opentelemetry.contrib:opentelemetry-aws-xray:1.32.0") + implementation("io.opentelemetry.contrib:opentelemetry-aws-xray:1.39.0") implementation("io.opentelemetry:opentelemetry-extension-trace-propagators") implementation("io.opentelemetry:opentelemetry-extension-aws") implementation("io.opentelemetry.instrumentation:opentelemetry-aws-sdk-2.2") implementation("com.googlecode.json-simple:json-simple:1.1.1") - implementation ("com.jayway.jsonpath:json-path:2.8.0") + implementation ("com.jayway.jsonpath:json-path:2.9.0") }