Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PF-2983]: Bump the minor-patch-dependencies group across 1 directory with 10 updates #206

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
id 'com.jfrog.artifactory' version '5.2.5'
id 'org.sonarqube' version '5.1.0.4882'
id 'io.spring.dependency-management' version '1.1.6'
id 'org.springframework.boot' version '3.3.4'
id 'org.springframework.boot' version '3.3.5'
id 'ru.vyarus.quality' version '5.0.0'
id 'com.srcclr.gradle' version '3.1.12'
}
Expand Down Expand Up @@ -58,7 +58,7 @@ dependencies {
// Misc. Services
implementation group: 'io.kubernetes', name: 'client-java', version: '21.0.2'
constraints {
implementation('org.bouncycastle:bcprov-jdk18on:1.78.1') {
implementation('org.bouncycastle:bcprov-jdk18on:1.79') {
because 'https://broadworkbench.atlassian.net/browse/DCJ-275'
}
}
Expand All @@ -67,7 +67,7 @@ dependencies {

// Google dependencies
// use common bom
implementation platform('com.google.cloud:libraries-bom:26.47.0')
implementation platform('com.google.cloud:libraries-bom:26.50.0')
implementation group: 'com.google.cloud', name: 'google-cloud-core'
implementation group: 'com.google.cloud', name: 'google-cloud-pubsub'
api group: 'com.google.guava', name: 'guava'
Expand All @@ -78,7 +78,7 @@ dependencies {

// Terra libraries
implementation group: 'org.broadinstitute.dsde.workbench', name: 'sam-client_2.13', version: '0.1-0c4b377'
var stairwayVersion= '1.1.13-SNAPSHOT'
var stairwayVersion= '1.1.15-SNAPSHOT'
api "bio.terra:stairway-gcp:${stairwayVersion}"
implementation "bio.terra:stairway-azure:${stairwayVersion}"

Expand All @@ -89,9 +89,9 @@ dependencies {

// OpenTelemetry BOMs (opentelemetry-bom versioned by Spring dependency manager)
// If the following versions get updated, be sure to update line 25 for ext['opentelemetry.version']
implementation platform('io.opentelemetry:opentelemetry-bom-alpha:1.42.1-alpha')
implementation platform('io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.8.0')
implementation platform('io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.8.0-alpha')
implementation platform('io.opentelemetry:opentelemetry-bom-alpha:1.44.1-alpha')
implementation platform('io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.10.0')
implementation platform('io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.10.0-alpha')
// OpenTelemetry dependencies versioned by BOMs
api 'io.opentelemetry:opentelemetry-api'
implementation 'io.opentelemetry:opentelemetry-sdk'
Expand All @@ -108,8 +108,8 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-autoconfigure'

// Google cloud open telemetry exporters
implementation 'com.google.cloud.opentelemetry:exporter-trace:0.32.0'
implementation 'com.google.cloud.opentelemetry:exporter-metrics:0.32.0'
implementation 'com.google.cloud.opentelemetry:exporter-trace:0.33.0'
implementation 'com.google.cloud.opentelemetry:exporter-metrics:0.33.0'

// Testing
testImplementation 'org.springframework:spring-aspects' // for tracing in tests
Expand Down
Loading