Skip to content
Merged
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
2 changes: 1 addition & 1 deletion lighty-core/lighty-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<maven.compiler.release>21</maven.compiler.release>
<!-- Overrides Spring Boot slf4j and log4j2 dependency version -->
<slf4j.version>2.0.17</slf4j.version>
<log4j2.version>2.24.3</log4j2.version>
<log4j2.version>2.25.0</log4j2.version>

Choose a reason for hiding this comment

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

high

The upgrade to Log4j 2.25.0 introduces a potentially breaking change that could affect modules using Spring. According to the Log4j 2.25.0 release notes, the log4j-spring-boot starter no longer includes log4j-web as a transitive dependency. If any part of the application relies on log4j-web for features like automatic Log4j initialization and de-initialization in a servlet container (via Log4jServletContainerInitializer), this dependency will need to be added explicitly to the relevant module's pom.xml to prevent runtime issues.

</properties>

<dependencies>
Expand Down
Loading