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-2987]: Bump the minor-patch-dependencies group with 12 updates #158

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions stairctl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

id 'io.spring.dependency-management' version '1.1.6'
// Spring Boot and Spring Shell versions should stay in sync
id 'org.springframework.boot' version '3.3.3'
id 'org.springframework.boot' version '3.3.4'
}

version = gradle.version
Expand All @@ -21,5 +21,5 @@ dependencies {
// Spring
implementation group: 'org.springframework.boot', name: 'spring-boot'
// Spring Boot and Spring Shell versions should stay in sync
implementation group: 'org.springframework.shell', name: 'spring-shell-starter', version: '3.3.2'
implementation group: 'org.springframework.shell', name: 'spring-shell-starter', version: '3.3.3'
}
8 changes: 4 additions & 4 deletions stairway-azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ dependencies {
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.17.0'

//Azure service bus dependencies
implementation 'com.azure:azure-messaging-servicebus:7.17.3'
implementation 'com.azure:azure-identity:1.13.2'
implementation 'com.azure:azure-messaging-servicebus:7.17.4'
implementation 'com.azure:azure-identity:1.13.3'
// Azure dependencies pull in out-of-date, vulnerable io.netty dependencies.
// If they update them in a future release, this may be removed:
implementation platform('io.netty:netty-bom:4.1.112.Final')
implementation platform('io.netty:netty-bom:4.1.113.Final')

testImplementation 'org.mockito:mockito-junit-jupiter:5.13.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.14.1'
}

apply from: "$rootDir/gradle/test.gradle"
2 changes: 1 addition & 1 deletion stairway-gcp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.17.0'

// Google dependencies
implementation platform('com.google.cloud:libraries-bom:26.45.0') // use common bom
implementation platform('com.google.cloud:libraries-bom:26.47.0') // use common bom
implementation group: 'com.google.cloud', name: 'google-cloud-pubsub'
}

Expand Down
14 changes: 7 additions & 7 deletions stairway/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'

// JSON processing
implementation platform('com.fasterxml.jackson:jackson-bom:2.17.2')
implementation platform('com.fasterxml.jackson:jackson-bom:2.18.0')
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-guava'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8'
Expand All @@ -18,24 +18,24 @@ dependencies {
implementation group: 'org.openapitools', name: 'jackson-databind-nullable', version: '0.2.6'

// Spring
implementation group: 'org.springframework', name: 'spring-context', version: '6.1.12'
implementation group: 'org.springframework', name: 'spring-web', version: '6.1.12'
implementation group: 'org.springframework', name: 'spring-context', version: '6.1.13'
implementation group: 'org.springframework', name: 'spring-web', version: '6.1.13'

// Annotations
implementation group: 'jakarta.annotation', name: 'jakarta.annotation-api', version: '3.0.0'

// Database
implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.29.1'
implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.29.2'

// Google dependencies
implementation platform('com.google.cloud:libraries-bom:26.45.0') // use common bom
implementation platform('com.google.cloud:libraries-bom:26.47.0') // use common bom
implementation group: 'com.google.cloud', name: 'google-cloud-pubsub'

// File handling during testing
testImplementation group: 'commons-io', name: 'commons-io', version: '2.16.1'
testImplementation group: 'commons-io', name: 'commons-io', version: '2.17.0'

// Mocks during testing
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.13.0'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.14.1'
}

apply from: "$rootDir/gradle/test.gradle"