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 11 updates #135

Closed
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 @@ -2,7 +2,7 @@ plugins {
id 'application'
id 'stairway.java-conventions'

id 'io.spring.dependency-management' version '1.0.13.RELEASE'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.springframework.boot' version '2.7.3'
}

Expand All @@ -18,7 +18,7 @@ dependencies {

// JSON processing
ext {
jackson = '2.16.1'
jackson = '2.16.2'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I updated Jackson dependencies in #132, put apparently another patch release just landed.

}
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jackson}"
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "${jackson}"
Expand Down
6 changes: 3 additions & 3 deletions stairway-azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {

// JSON processing
ext {
jackson = '2.16.1'
jackson = '2.16.2'
}
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jackson}"
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "${jackson}"
Expand All @@ -19,8 +19,8 @@ dependencies {
implementation group: 'org.openapitools', name: 'jackson-databind-nullable', version: '0.2.6'

//Azure service bus dependencies
implementation 'com.azure:azure-messaging-servicebus:7.14.0-beta.1'
implementation 'com.azure:azure-identity:1.10.4'
implementation 'com.azure:azure-messaging-servicebus:7.15.2'
implementation 'com.azure:azure-identity:1.11.3'

testImplementation 'org.mockito:mockito-junit-jupiter:5.11.0'
}
Expand Down
4 changes: 2 additions & 2 deletions stairway-gcp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {

// JSON processing
ext {
jackson = '2.16.1'
jackson = '2.16.2'
}
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jackson}"
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "${jackson}"
Expand All @@ -22,7 +22,7 @@ dependencies {
constraints {
implementation group: 'com.google.guava', name: 'guava', version: '33.0.0-jre' // "-jre" for Java 8 or higher
}
implementation platform('com.google.cloud:libraries-bom:26.0.0') // use common bom
implementation platform('com.google.cloud:libraries-bom:26.34.0') // use common bom
implementation group: 'com.google.cloud', name: 'google-cloud-pubsub'
}

Expand Down
6 changes: 3 additions & 3 deletions stairway/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {

// JSON processing
ext {
jackson = '2.16.1'
jackson = '2.16.2'
}
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jackson}"
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-guava', version: "${jackson}"
Expand All @@ -23,14 +23,14 @@ dependencies {
implementation group: 'org.springframework', name: 'spring-web', version: '6.1.4'

// Database
implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.8.0'
implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.26.0'
implementation group: 'org.yaml', name: 'snakeyaml', version: '1.27'

// Google dependencies
constraints {
implementation group: 'com.google.guava', name: 'guava', version: '33.0.0-jre' // "-jre" for Java 8 or higher
}
implementation platform('com.google.cloud:libraries-bom:26.0.0') // use common bom
implementation platform('com.google.cloud:libraries-bom:26.34.0') // use common bom
implementation group: 'com.google.cloud', name: 'google-cloud-pubsub'

// File handling during testing
Expand Down
Loading