-
Notifications
You must be signed in to change notification settings - Fork 41.2k
Support configuration of localEntityIdTemplate for a SAML Relying Party #22258
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
Conversation
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.
Thanks very much for the PR, @danilopiazza. I left a few comments. When you have a moment, please take a look and let us know what you think.
.../java/org/springframework/boot/autoconfigure/security/saml2/Saml2RelyingPartyProperties.java
Outdated
Show resolved
Hide resolved
.../java/org/springframework/boot/autoconfigure/security/saml2/Saml2RelyingPartyProperties.java
Outdated
Show resolved
Hide resolved
...gframework/boot/autoconfigure/security/saml2/Saml2RelyingPartyRegistrationConfiguration.java
Outdated
Show resolved
Hide resolved
...ringframework/boot/autoconfigure/security/saml2/Saml2RelyingPartyAutoConfigurationTests.java
Outdated
Show resolved
Hide resolved
.../org/springframework/boot/autoconfigure/security/saml2/Saml2RelyingPartyPropertiesTests.java
Outdated
Show resolved
Hide resolved
@wilkinsona Should I update this PR to use the new property (possibly changing the configuration property name from |
Thanks for joining the dots there, @danilopiazza. Spring Boot 2.4 will require Spring Security 5.4 so let's switch to |
I am still calling (As a side note: should I open another PR after rebasing on current master and squashing commits?) |
Please feel free to switch to 5.4.0-SNAPSHOT in this PR. 5.4.0-RC1 will be released in time for Spring Boot 2.4.0-M2 so we can switch to snapshots now and then pick up RC1 when it's released.
No need for another PR, thanks. You can just force-push this one. |
Done! I force-pushed two separate commits: one to upgrade the Spring Security dependency, and another one with the PR changes. |
@danilopiazza thank you very much for making your first contribution to Spring Boot. |
Hi, this PR fixes #20352 by adding support for auto-configuring
RelyingPartyRegistration.localEntityIdTemplate
.Support for the new property has been added to the top-level
Registration
class, as suggested by @mbhave in #20352 (comment).