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 5 updates #227

Merged
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
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
id 'org.sonarqube' version '6.0.1.5171'
id 'io.spring.dependency-management' version '1.1.7'
// when updating spring boot version, check whether any changes are needed in the opentelemetry-bom version below
id 'org.springframework.boot' version '3.4.2'
id 'org.springframework.boot' version '3.4.3'
id 'com.srcclr.gradle' version '3.1.12'
}

Expand Down Expand Up @@ -64,7 +64,7 @@ dependencies {

// Google dependencies
// use common bom
implementation platform('com.google.cloud:libraries-bom:26.53.0')
implementation platform('com.google.cloud:libraries-bom:26.56.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 @@ -75,7 +75,7 @@ dependencies {

// Terra libraries
implementation group: 'org.broadinstitute.dsde.workbench', name: 'sam-client_2.13', version: 'v0.0.329'
var stairwayVersion= '1.1.18-SNAPSHOT'
var stairwayVersion= '1.1.21-SNAPSHOT'
api "bio.terra:stairway-gcp:${stairwayVersion}"
implementation "bio.terra:stairway-azure:${stairwayVersion}"

Expand All @@ -85,8 +85,10 @@ dependencies {
implementation group: 'ch.qos.logback.contrib', name: 'logback-jackson', version: '0.1.5'

// OpenTelemetry dependencies:
// Spring Boot 3.4.2 pulls in opentelemetry-bom 1.43.0.
// Note that opentelemetry-instrumentation-bom-alpha:2.12.0-alpha targets opentelemetry 1.46.0.
// Spring Boot 3.4.3 still pulls in opentelemetry-bom 1.43.0.
// Note that opentelemetry-instrumentation-bom-alpha:2.12.0-alpha targets opentelemetry 1.46.0 which
// is still compatible, but opentelemetry-instrumentation-bom-alpha:2.13.3-alpha targets opentelemetry 1.47.0
// which is no longer compatible and we will need to wait until spring boot 3.5.x to be able to update that dependency further
// When upgrading Spring Boot, re-check these versions.
implementation platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.12.0-alpha")
// ... versioned by Spring Boot
Expand Down