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/08/02 08:24:26 UTC

[syncope] branch master updated (e4aa0a9 -> a5ee55c)

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 e4aa0a9  Escape anpersand when searching in Elasticsearch
     new d52aac8  Removing discriminator from attributes to display in Console
     new a5ee55c  Upgrading Nimbus JOSE JWT, checkstyle and maven-enforcer-plugin

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:
 .../java/org/apache/syncope/common/lib/search/SearchableFields.java | 3 ++-
 pom.xml                                                             | 6 +++---
 2 files changed, 5 insertions(+), 4 deletions(-)

[syncope] 02/02: Upgrading Nimbus JOSE JWT, checkstyle and maven-enforcer-plugin

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 a5ee55c5269cba7079cc3314eb92b1ca10cb58a8
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Aug 2 10:24:14 2021 +0200

    Upgrading Nimbus JOSE JWT, checkstyle and maven-enforcer-plugin
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9f03b77..d9c7bd8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -407,7 +407,7 @@ under the License.
 
     <cxf.version>3.4.4</cxf.version>
     <bouncycastle.version>1.69</bouncycastle.version>
-    <nimbus-jose-jwt.version>9.11.2</nimbus-jose-jwt.version>
+    <nimbus-jose-jwt.version>9.11.3</nimbus-jose-jwt.version>
 
     <jackson.version>2.12.4</jackson.version>
 
@@ -2308,7 +2308,7 @@ under the License.
             <dependency>
               <groupId>com.puppycrawl.tools</groupId>
               <artifactId>checkstyle</artifactId>
-              <version>8.44</version>
+              <version>8.45</version>
             </dependency>
           </dependencies>
           <configuration>
@@ -2371,7 +2371,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-enforcer-plugin</artifactId>
-        <version>3.0.0-M3</version>
+        <version>3.0.0</version>
         <executions>
           <execution>
             <id>default-cli</id>

[syncope] 01/02: Removing discriminator from attributes to display in Console

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 d52aac855cb73746f2fcee92266787ea19af8659
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Fri Jul 30 16:15:34 2021 +0200

    Removing discriminator from attributes to display in Console
---
 .../java/org/apache/syncope/common/lib/search/SearchableFields.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/search/SearchableFields.java b/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/search/SearchableFields.java
index 62a9fc9..d9f0299 100644
--- a/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/search/SearchableFields.java
+++ b/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/search/SearchableFields.java
@@ -35,7 +35,8 @@ import org.apache.syncope.common.lib.types.AttrSchemaType;
 public final class SearchableFields {
 
     private static final String[] ATTRIBUTES_NOTINCLUDED = {
-        "serialVersionUID", "password", "type", "udynMembershipCond", "securityAnswer", "token", "tokenExpireTime"
+        "serialVersionUID", "discriminator", "password", "type", "udynMembershipCond", "securityAnswer",
+        "token", "tokenExpireTime"
     };
 
     private static final Set<String> ANY_FIELDS = new HashSet<>();