-
Notifications
You must be signed in to change notification settings - Fork 1
[Snyk] Fix for 2 vulnerabilities #5241
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -262,7 +262,7 @@ | |||||
| </goals> | ||||||
| </pluginExecutionFilter> | ||||||
| <action> | ||||||
| <ignore></ignore> | ||||||
| <ignore/> | ||||||
| </action> | ||||||
| </pluginExecution> | ||||||
| <pluginExecution> | ||||||
|
|
@@ -281,7 +281,7 @@ | |||||
| </goals> | ||||||
| </pluginExecutionFilter> | ||||||
| <action> | ||||||
| <ignore></ignore> | ||||||
| <ignore/> | ||||||
| </action> | ||||||
| </pluginExecution> | ||||||
| </pluginExecutions> | ||||||
|
|
@@ -1445,7 +1445,7 @@ | |||||
|
|
||||||
| <!-- logging --> | ||||||
| <org.slf4j.version>1.7.32</org.slf4j.version> | ||||||
| <logback.version>1.2.6</logback.version> | ||||||
| <logback.version>1.5.25</logback.version> | ||||||
|
||||||
| <logback.version>1.5.25</logback.version> | |
| <logback.version>1.3.12</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.
The current SLF4J version (1.7.32) is from the SLF4J 1.x series. Logback 1.5.x is designed to work with SLF4J 2.0.x, and mixing SLF4J 1.x with Logback 1.5.x may cause compatibility issues. If upgrading Logback to 1.5.x, consider also upgrading SLF4J to 2.0.x or later. However, note that SLF4J 2.0.x also requires Java 8 minimum, so the primary blocker remains the Java version requirement for Logback 1.5.x.