Skip to content
Open
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 spring-security-modules/spring-security-okta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</build>

<properties>
<okta.spring.version>1.4.0</okta.spring.version>
<okta.spring.version>3.0.9</okta.spring.version>

Copilot AI Feb 3, 2026

Copy link

Choose a reason for hiding this comment

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

This is a major version upgrade from 1.4.0 to 3.0.9, skipping version 2.x entirely. Okta Spring Boot Starter 2.0 and 3.0 introduced significant breaking changes including:

  1. Package restructuring and API changes in the Okta SDK
  2. Changes to configuration property names and structure
  3. Spring Boot and Spring Security version compatibility requirements

The code in AdminController uses Okta SDK classes (Client, User, UserBuilder, UserList) and the application.properties file uses configuration properties that may have changed between versions. Without automated tests to verify compatibility, this upgrade poses significant risk of breaking the application at runtime.

Consider:

  • Adding integration tests before upgrading to verify the existing functionality
  • Reviewing the Okta Spring Boot Starter migration guides for versions 2.x and 3.x
  • Testing that the AdminController endpoints still work correctly
  • Verifying the configuration properties in application.properties are still valid

Copilot uses AI. Check for mistakes.
</properties>

</project>