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 2020/04/02 05:00:22 UTC

[syncope] branch master updated (1a38a80 -> 4e0f696)

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 1a38a80  Upgrading SLF4j and Guava versions (and aligning with CAS)
     new f305efe  Upgrading CXF and Elasticsearch
     new 6e322cc  Upgrading Spring Security
     new a6ad400  Upgrading Swagger Core
     new 4e0f696  [SYNCOPE-1466] Attempting to make PullTaskITCase#reconcileFromLDAP more stable

The 4 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:
 .../src/test/java/org/apache/syncope/fit/core/PullTaskITCase.java | 2 ++
 pom.xml                                                           | 8 ++++----
 2 files changed, 6 insertions(+), 4 deletions(-)


[syncope] 01/04: Upgrading CXF and Elasticsearch

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 f305efecfd97b57243b7c89901af931d7230e34b
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Mar 31 19:30:54 2020 +0200

    Upgrading CXF and Elasticsearch
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 863e48b..02ab902 100644
--- a/pom.xml
+++ b/pom.xml
@@ -404,7 +404,7 @@ under the License.
     <connid.scimv11.version>1.0.1</connid.scimv11.version>
     <connid.servicenow.version>1.0.0</connid.servicenow.version>
 
-    <cxf.version>3.3.5</cxf.version>
+    <cxf.version>3.3.6</cxf.version>
 
     <jackson.version>2.11.0.rc1</jackson.version>
 
@@ -432,7 +432,7 @@ under the License.
     <slf4j.version>2.0.0-alpha1</slf4j.version>
     <opensaml.version>3.3.1</opensaml.version>
 
-    <elasticsearch.version>7.6.1</elasticsearch.version>
+    <elasticsearch.version>7.6.2</elasticsearch.version>
 
     <apacheds.version>2.0.0.AM26</apacheds.version>
     <apachedirapi.version>2.0.0</apachedirapi.version>


[syncope] 02/04: Upgrading Spring Security

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 6e322cc01771c3c32ff1c840c139a00c9fe70cf2
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Wed Apr 1 08:05:32 2020 +0200

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

diff --git a/pom.xml b/pom.xml
index 02ab902..c8bcf9e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -409,7 +409,7 @@ under the License.
     <jackson.version>2.11.0.rc1</jackson.version>
 
     <spring.version>5.2.5.RELEASE</spring.version>
-    <spring-security.version>5.3.0.RELEASE</spring-security.version>
+    <spring-security.version>5.3.1.RELEASE</spring-security.version>
     <spring-boot.version>2.2.6.RELEASE</spring-boot.version>
     <spring-cloud-gateway.version>2.2.2.RELEASE</spring-cloud-gateway.version>
 


[syncope] 04/04: [SYNCOPE-1466] Attempting to make PullTaskITCase#reconcileFromLDAP more stable

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 4e0f69656489368b67ef432c3bdd258292a0c9a6
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Thu Apr 2 07:00:06 2020 +0200

    [SYNCOPE-1466] Attempting to make PullTaskITCase#reconcileFromLDAP more stable
---
 .../src/test/java/org/apache/syncope/fit/core/PullTaskITCase.java       | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/PullTaskITCase.java b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/PullTaskITCase.java
index 27cb5aa..a08e829 100644
--- a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/PullTaskITCase.java
+++ b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/PullTaskITCase.java
@@ -401,6 +401,8 @@ public class PullTaskITCase extends AbstractTaskITCase {
                 new AnyQuery.Builder().realm(SyncopeConstants.ROOT_REALM).
                         fiql(SyncopeClient.getUserSearchConditionBuilder().is("lastChangeContext").
                                 equalTo("*PullTask " + task.getKey() + "*").query()).
+                        orderBy(SyncopeClient.getOrderByClauseBuilder().desc("lastChangeDate").build()).
+                        page(1).size(100).
                         build());
         assertNotNull(matchByLastChangeContext);
         assertTrue(matchByLastChangeContext.getResult().contains(matchingUsers.getResult().get(0)));


[syncope] 03/04: Upgrading Swagger Core

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 a6ad400f880453367244f3af818762da56741306
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Thu Apr 2 05:09:16 2020 +0200

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

diff --git a/pom.xml b/pom.xml
index c8bcf9e..5aceac8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -454,7 +454,7 @@ under the License.
     <junit.version>5.6.1</junit.version>
     <mockito.version>3.3.0</mockito.version>
 
-    <swagger-core.version>2.1.1</swagger-core.version>
+    <swagger-core.version>2.1.2</swagger-core.version>
     <swagger-ui.version>3.25.0</swagger-ui.version>
     <guava.version>28.2-jre</guava.version>