-
Notifications
You must be signed in to change notification settings - Fork 582
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
Override logback version to 1.2.13 #5595
Conversation
@@ -87,13 +88,6 @@ | |||
<type>pom</type> | |||
<scope>import</scope> | |||
</dependency> | |||
<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.
Since our parent is SBD, having the direct import of SBD does nothing other than removes the ability to do easy version overrides such as https://github.com/spring-cloud/spring-cloud-dataflow/pull/5595/files#diff-7059f95906ccc5bf99ecd1a8702cabced0dc3f24f787c8d32281c624e4f33943R42.
@@ -113,6 +114,22 @@ | |||
<artifactId>spring-security-oauth2-client</artifactId> | |||
<version>${spring-security.version}</version> | |||
</dependency> | |||
<!-- Override Logback provided by Spring Boot --> |
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.
Because we do NOT inherit from SBD all we have to do is declare the dep. mgmt. above the SBD dep. mgmt (background).
@@ -39,6 +39,7 @@ | |||
<kubernetes-fabric8-client.version>5.12.4</kubernetes-fabric8-client.version> | |||
<junit.version>4.13.1</junit.version> | |||
<junit-jupiter.version>5.9.2</junit-jupiter.version> | |||
<logback.version>1.3.14</logback.version> |
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 that I have removed the direct import of SBD, we can simply override the version (background).
This commit overrides the logback version in order to fix CVE-2023-6378. See spring-cloud#5593
5964c5e
to
cc17eb3
Compare
This commit overrides the logback version in order to fix CVE-2023-6378.
See #5593
Before changes
After changes