Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
This is an experiment running an automatic upgrade to adopt Spring Boot 3.0 using Tanzu Spring Application Advisor. It is still work in progress. Some of the learnings we are accumulating for this example are:
This project can't be upgraded to boot 3.0 until spring-security-saml-extensions are not migrated to Spring security. https://spring.io/blog/2020/09/22/spring-security-saml-extensions-1-x-eol-on-october-6-2021 .
On the other hand, looks like you are using spring-security-saml 1.0.x instead of 2.0.x, which uses Spring security 5.2.x. This means, that in our end, the application requires the following upgrade plan for upgrading until boot 3.0.
Step 1:
* Upgrade spring-security-saml 1.0.x to 2.0.x
Step 2:
* Replace spring-security-saml 2.0.x for spring-security 5.8.x
Step 3:
* Upgrade spring-framework from 5.3.x to 6.0.x
* Upgrade spring-security from 5.8.x to 6.0.x
* Upgrade spring-ldap from 2.4.x to 3.0.x
* Upgrade spring-boot from 2.7.x to 3.0.x
* Upgrade spring-retry from 1.3.x to 2.0.x