[java-identity-provider] branch main updated: Stop enabling consent by default given no viable deployment model.

Scott Cantor cantor.2 at osu.edu
Wed Mar 10 15:41:13 UTC 2021


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=6bc4dccf74df9034986a3291c6373dccda66e777

The following commit(s) were added to refs/heads/main by this push:
       new  6bc4dccf7 Stop enabling consent by default given no viable deployment model.
6bc4dccf7 is described below

commit 6bc4dccf74df9034986a3291c6373dccda66e777
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Mar 10 10:41:09 2021 -0500

    Stop enabling consent by default given no viable deployment model.
---
 idp-conf/src/main/resources/conf/relying-party.xml               | 9 +++------
 .../java/net/shibboleth/idp/installer/InstallerProperties.java   | 3 +--
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/idp-conf/src/main/resources/conf/relying-party.xml b/idp-conf/src/main/resources/conf/relying-party.xml
index 9072d3310..439e7f1df 100644
--- a/idp-conf/src/main/resources/conf/relying-party.xml
+++ b/idp-conf/src/main/resources/conf/relying-party.xml
@@ -27,20 +27,17 @@
         </property>
     </bean>
 
-    <!--
-    Default configuration, with default settings applied for all profiles, and enables
-    the attribute-release consent flow.
-    -->
+    <!-- Default configuration, with default settings applied for all profiles. -->
     <bean id="shibboleth.DefaultRelyingParty" parent="RelyingParty">
         <property name="profileConfigurations">
             <list>
                 <!-- SAML 1.1 and SAML 2.0 AttributeQuery are disabled by default. -->
                 <!--
-                <bean parent="Shibboleth.SSO" p:postAuthenticationFlows="attribute-release" />
+                <bean parent="Shibboleth.SSO" />
                 <ref bean="SAML1.AttributeQuery" />
                 <ref bean="SAML1.ArtifactResolution" />
                 -->
-                <bean parent="SAML2.SSO" p:postAuthenticationFlows="attribute-release" />
+                <bean parent="SAML2.SSO" />
                 <ref bean="SAML2.ECP" />
                 <ref bean="SAML2.Logout" />
                 <!--
diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/InstallerProperties.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/InstallerProperties.java
index 83705dc88..f68133bbb 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/InstallerProperties.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/InstallerProperties.java
@@ -32,8 +32,7 @@ import net.shibboleth.utilities.java.support.component.InitializableComponent;
 public interface InstallerProperties extends InitializableComponent {
 
     /** Those modules enabled by default. */
-    public static final Set<String> DEFAULT_MODULES = Set.of("idp.authn.Password",
-            "idp.intercept.Consent", "idp.admin.Hello");
+    public static final Set<String> DEFAULT_MODULES = Set.of("idp.authn.Password", "idp.admin.Hello");
 
     /** Get where we are installing/updating/building the war.
      * @return the target directory

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list