From 94a66f7a26c43c14b6ed4d47d523aad297e8d217 Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Mon, 26 Feb 2024 09:02:46 -0700 Subject: [PATCH 1/2] Change Structure101 Repository URL Issug gh-14639 --- build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 735eb8165a..5df7113fd1 100644 --- a/build.gradle +++ b/build.gradle @@ -148,7 +148,6 @@ tasks.register('cloneSamples', IncludeRepoTask) { } s101 { - repository = 'https://s101-pickup.s3.amazonaws.com' - version = '7.0.24375' + repository = 'https://structure101.com/binaries/latest' configurationDirectory = project.file("etc/s101") } From 27cd9fa86c3531771750d154226cf543b125bbb2 Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Mon, 26 Feb 2024 10:06:59 -0700 Subject: [PATCH 2/2] Don't Use Deprecated Class Issue gh-14628 --- .../web/configurers/saml2/Saml2MetadataConfigurer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/src/main/java/org/springframework/security/config/annotation/web/configurers/saml2/Saml2MetadataConfigurer.java b/config/src/main/java/org/springframework/security/config/annotation/web/configurers/saml2/Saml2MetadataConfigurer.java index d64e93a243..de20083f1e 100644 --- a/config/src/main/java/org/springframework/security/config/annotation/web/configurers/saml2/Saml2MetadataConfigurer.java +++ b/config/src/main/java/org/springframework/security/config/annotation/web/configurers/saml2/Saml2MetadataConfigurer.java @@ -23,11 +23,11 @@ import org.springframework.security.config.annotation.web.HttpSecurityBuilder; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; import org.springframework.security.saml2.provider.service.metadata.OpenSamlMetadataResolver; -import org.springframework.security.saml2.provider.service.metadata.RequestMatcherMetadataResponseResolver; import org.springframework.security.saml2.provider.service.metadata.Saml2MetadataResponseResolver; import org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistration; import org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository; import org.springframework.security.saml2.provider.service.web.Saml2MetadataFilter; +import org.springframework.security.saml2.provider.service.web.metadata.RequestMatcherMetadataResponseResolver; import org.springframework.security.web.authentication.www.BasicAuthenticationFilter; import org.springframework.security.web.util.matcher.AntPathRequestMatcher; import org.springframework.util.Assert;