Skip to content

Commit

Permalink
[PF-2983]: Bump the minor-patch-dependencies group across 1 directory…
Browse files Browse the repository at this point in the history
… with 5 updates (#227)

* [PF-2983]: Bump the minor-patch-dependencies group across 1 directory with 5 updates

Bumps the minor-patch-dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [com.google.cloud:libraries-bom](https://github.com/googleapis/java-cloud-bom) | `26.53.0` | `26.56.0` |
| bio.terra:stairway-gcp | `1.1.18-SNAPSHOT` | `1.1.21-SNAPSHOT` |
| bio.terra:stairway-azure | `1.1.18-SNAPSHOT` | `1.1.21-SNAPSHOT` |
| [io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha](https://github.com/open-telemetry/opentelemetry-java-instrumentation) | `2.12.0-alpha` | `2.13.3-alpha` |
| [org.springframework.boot](https://github.com/spring-projects/spring-boot) | `3.4.2` | `3.4.3` |



Updates `com.google.cloud:libraries-bom` from 26.53.0 to 26.56.0
- [Release notes](https://github.com/googleapis/java-cloud-bom/releases)
- [Changelog](https://github.com/googleapis/java-cloud-bom/blob/main/release-please-config.json)
- [Commits](googleapis/java-cloud-bom@v26.53.0...v26.56.0)

Updates `bio.terra:stairway-gcp` from 1.1.18-SNAPSHOT to 1.1.21-SNAPSHOT

Updates `bio.terra:stairway-azure` from 1.1.18-SNAPSHOT to 1.1.21-SNAPSHOT

Updates `bio.terra:stairway-azure` from 1.1.18-SNAPSHOT to 1.1.21-SNAPSHOT

Updates `io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha` from 2.12.0-alpha to 2.13.3-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 `org.springframework.boot` from 3.4.2 to 3.4.3
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.4.2...v3.4.3)

---
updated-dependencies:
- dependency-name: com.google.cloud:libraries-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: bio.terra:stairway-gcp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: bio.terra:stairway-azure
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: bio.terra:stairway-azure
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: org.springframework.boot
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* stay on opentelemetry instrumentation 2.12.0 for now while we wait for spring boot to catch up

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: LizBaldo <[email protected]>
  • Loading branch information
dependabot[bot] and LizBaldo authored Mar 5, 2025
1 parent 061a25c commit b3a58c0
Showing 1 changed file with 7 additions and 5 deletions.
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 @@ -66,7 +66,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 @@ -77,7 +77,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 @@ -87,8 +87,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

0 comments on commit b3a58c0

Please sign in to comment.