Skip to content
Closed
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 pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
<version>3.0.4.RELEASE</version>
<version>3.1.3.RELEASE</version>
</dependency>
Comment on lines 64 to 68
Copy link

Copilot AI Feb 1, 2026

Choose a reason for hiding this comment

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

This dependency upgrade has a critical compatibility issue. Spring Boot 3.0.6 (line 8) uses Spring Security 6 by default, but thymeleaf-extras-springsecurity5 version 3.1.3.RELEASE is designed for Spring Security 5.x.

For Spring Boot 3.x with Spring Security 6, you should use thymeleaf-extras-springsecurity6 instead. This will require changing both the artifactId and version. For example:

  • artifactId: thymeleaf-extras-springsecurity6
  • version: 3.1.2.RELEASE (or later)

While the application may currently work because the Thymeleaf Security extras are not actively used in the templates (no sec: namespace found), this mismatch could cause runtime issues if security-specific Thymeleaf features are used in the future.

Copilot uses AI. Check for mistakes.

</dependencies>
Expand Down