-
Notifications
You must be signed in to change notification settings - Fork 5
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
[DCJ-400] Minor and patch dependency updates, inc. Spring Boot 3.2.4 -> 3.3.2 #1767
Conversation
And Spring Dependency Manager 1.1.4 -> 1.1.6. Removed Spring Boot dependency overrides for transitive dependency vulnerabilities that are no longer needed. Removed dependency version specifications that can be derived from Spring Dependency Manager.
Fix breaking change: TableResult class is now abstract, we now use its builder to instantiate.
…r conflict Inspired by https://discuss.gradle.org/t/plugin-dependency-conflict-with-jib-and-srcclr/42355 Upgrade jib plugin to latest.
Was one patch version short previously.
org.antlr:ST4 4.3 -> 4.3.4 org.antlr:antlr4 4.8 -> 4.13.2
Both 5.2.0 -> 5.14.0: net.javacrumbs.shedlock:shedlock-provider-jdbc-template net.javacrumbs.shedlock:shedlock-spring
Address breaking change. getPao method now takes an additional argument: includeDeleted - Include deleted policy attribute objects in the response. Defaults to false.
… 1.45.0-SNAPSHOT Fix breaking change and make unit test stubs more precise.
Dependabot will try to do it anyway!
Addresses Sentry's 'Incompatible Spring Boot Version detected!' warning, following https://docs.sentry.io/platforms/java/guides/spring-boot/#install
Removed unused org.apache.hadoop dependencies hadoop-azure and hadoop-mapreduce-client-core. Needed to exclude the competing logback implementation for unit tests to pass. Otherwise they were failing with the following error: Caused by: java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.slf4j.reload4j.Reload4jLoggerFactory loaded from file:/Users/okotsopo/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-reload4j/2.0.13/e8de9f981349fee84f8d708cd0ed2337d193faed/slf4j-reload4j-2.0.13.jar). If you are using WebLogic you will need to add 'org.slf4j' to prefer-application-packages in WEB-INF/weblogic.xml: org.slf4j.reload4j.Reload4jLoggerFactory
Used for Pact contract tests.
It was previously needed for logback, but we use XML now (logback hasn't supported groovy since 2021: https://logback.qos.ch/news.html#1.2.9)
@@ -162,19 +162,13 @@ configurations { | |||
runtimeClasspath | |||
} | |||
|
|||
// Spring Boot 3.2.4 pulls in opentelemetry-bom 1.31.0. | |||
// It must have version >= 1.34.1 for compatibility with terra-common-lib 1.1.10: | |||
ext['opentelemetry.version'] = '1.36.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now 1.37.0.
// It must have version >= 1.34.1 for compatibility with terra-common-lib 1.1.10: | ||
ext['opentelemetry.version'] = '1.36.0' | ||
// Spring Boot 3.2.4 pulls in io.netty:netty-bom 4.1.107.Final which is impacted by CVE-2024-29025. | ||
ext['netty.version'] = '4.1.108.Final' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now 4.1.111.Final.
|
||
// Need groovy on the class path for the logback config. Could use XML and skip this dependency, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use XML now, and logback hasn't supported groovy since 2021: https://logback.qos.ch/news.html#1.2.9
… test SnapshotExportIntegrationTest.snapshotGsPathExportTest failed without it.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏽
testImplementation ('org.apache.hadoop:hadoop-common:3.3.1') { | ||
implementation 'io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:2.6.0' | ||
|
||
testImplementation 'org.apache.parquet:parquet-common:1.14.1' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For repeated values like this we could use a variable
dependencies {
ext {
parquet = '1.14.1'
}
testImplementation "org.apache.parquet:parquet-common:${parquet}"
}
Jira ticket: https://broadworkbench.atlassian.net/browse/DCJ-400
Addresses
Minor and patch dependency updates, which should take care of most of the updates proposed in #1763 (TDR's first grouped Dependabot PR) and triangulate on remaining troublesome ones.
I broke up my changes into logical commits for easier review.
Summary of changes
26.30.0
26.43.0
4.26.0
4.29.1
4.3
4.3.4
5.2.0
5.14.0
5.2.0
5.14.0
1.0.11-SNAPSHOT
1.0.15-SNAPSHOT
1.3.0-SNAPSHOT
1.45.0-SNAPSHOT
2.15.3
2.15.3
2.15.3
1.11.1
1.13.2
2.34.0
2.41.0
12.24.1
12.26.0
12.18.1
12.20.0
12.3.18
12.4.3
2.2.0
2.6.0
1.12.0
1.14.1
1.12.0
1.14.1
1.12.0
1.14.1
1.12.0
1.14.1
1.12.0
1.14.1
3.3.1
3.4.0
3.3.1
3.3.1
3.4.0
4.3.19
4.6.12
4.3.19
4.6.12
4.8
4.13.2
3.0.7
4.7.5
4.7.6
2.5.0
2.5.1
2.0.6
2.0.7
3.2.0
3.4.3
1.5.8
1.5.10
3.2.4
3.3.2
1.1.4
1.1.6
2.4.1
2.4.2
Testing Strategy