You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2021/12/17 08:07:38 UTC

[syncope] branch master updated (c330857 -> 4c63df7)

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git.


    from c330857  Upgrading Log4J
     new bc8eac0  Upgrading Wicket Bootstrap
     new 4c63df7  Upgrading Pac4J and Payara

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                             | 6 +++---
 .../apache/syncope/wa/starter/mapping/SAML2SPClientAppTOMapper.java | 3 ++-
 2 files changed, 5 insertions(+), 4 deletions(-)

[syncope] 02/02: Upgrading Pac4J and Payara

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 4c63df71629f093690c4383fc2f93fee6841176d
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Fri Dec 17 08:55:00 2021 +0100

    Upgrading Pac4J and Payara
---
 pom.xml                                                               | 4 ++--
 .../apache/syncope/wa/starter/mapping/SAML2SPClientAppTOMapper.java   | 3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index f36dfe1..ead4c88 100644
--- a/pom.xml
+++ b/pom.xml
@@ -446,7 +446,7 @@ under the License.
 
     <modernizer-maven.version>2.3.0</modernizer-maven.version>
 
-    <pac4j.version>5.2.0</pac4j.version>
+    <pac4j.version>5.2.1</pac4j.version>
 
     <cas.version>6.5.0-SNAPSHOT</cas.version>
     <cas-client.version>3.6.2</cas-client.version>
@@ -504,7 +504,7 @@ under the License.
 
     <tomcat.version>9.0.56</tomcat.version>
     <wildfly.version>25.0.1.Final</wildfly.version>
-    <payara.version>5.2021.9</payara.version>
+    <payara.version>5.2021.10</payara.version>
     <javax.faces.version>2.3.14</javax.faces.version>
 
     <docker.postgresql.version>14</docker.postgresql.version>
diff --git a/wa/starter/src/main/java/org/apache/syncope/wa/starter/mapping/SAML2SPClientAppTOMapper.java b/wa/starter/src/main/java/org/apache/syncope/wa/starter/mapping/SAML2SPClientAppTOMapper.java
index daed8f6..9e7dcec 100644
--- a/wa/starter/src/main/java/org/apache/syncope/wa/starter/mapping/SAML2SPClientAppTOMapper.java
+++ b/wa/starter/src/main/java/org/apache/syncope/wa/starter/mapping/SAML2SPClientAppTOMapper.java
@@ -27,6 +27,7 @@ import org.apereo.cas.services.RegisteredServiceAccessStrategy;
 import org.apereo.cas.services.RegisteredServiceAttributeReleasePolicy;
 import org.apereo.cas.services.RegisteredServiceAuthenticationPolicy;
 import org.apereo.cas.support.saml.services.SamlRegisteredService;
+import org.apereo.cas.util.model.TriStateBoolean;
 
 @ClientAppMapFor(clientAppClass = SAML2SPClientAppTO.class)
 public class SAML2SPClientAppTOMapper extends AbstractClientAppMapper {
@@ -46,7 +47,7 @@ public class SAML2SPClientAppTOMapper extends AbstractClientAppMapper {
 
         service.setMetadataLocation(sp.getMetadataLocation());
         service.setMetadataSignatureLocation(sp.getMetadataSignatureLocation());
-        service.setSignAssertions(sp.isSignAssertions());
+        service.setSignAssertions(TriStateBoolean.fromBoolean(sp.isSignAssertions()));
         service.setSignResponses(sp.isSignResponses());
         service.setEncryptionOptional(sp.isEncryptionOptional());
         service.setEncryptAssertions(sp.isEncryptAssertions());

[syncope] 01/02: Upgrading Wicket Bootstrap

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit bc8eac06fc9b8fb0fe1fb7c04fc760079a3f343d
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Dec 14 13:18:01 2021 +0100

    Upgrading Wicket Bootstrap
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c4ada67..f36dfe1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -471,7 +471,7 @@ under the License.
     <wicket.version>9.7.0</wicket.version>
     <wicketstuff.version>9.6.0</wicketstuff.version>
     <wicket-jqueryui.version>9.5.0</wicket-jqueryui.version>
-    <wicket-bootstrap.version>5.0.5</wicket-bootstrap.version>
+    <wicket-bootstrap.version>5.0.6</wicket-bootstrap.version>
     <wicket-spring-boot.version>3.0.4</wicket-spring-boot.version>
 
     <antlr4.version>4.9.3</antlr4.version>