You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by me...@apache.org on 2020/04/08 08:40:41 UTC

[ranger] branch master updated (ffb4ce2 -> cf77508)

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

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


    from ffb4ce2  RANGER-2781: updated default policy creation to handle policy-items with no users
     new d7bd333  RANGER-2783 : Add schema registry service def to be registered by default on start of Ranger
     new cf77508  RANGER-2770 : Upgrade jackson-databind to version 2.10.0

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/ranger/plugin/store/EmbeddedServiceDefsUtil.java    | 2 +-
 pom.xml                                                                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[ranger] 02/02: RANGER-2770 : Upgrade jackson-databind to version 2.10.0

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

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

commit cf775085d6eb850f65ac2de2707d75e36862c1ba
Author: Dineshkumar Yadav <di...@outlook.com>
AuthorDate: Mon Mar 30 12:26:42 2020 +0530

    RANGER-2770 : Upgrade jackson-databind to version 2.10.0
    
    Signed-off-by: Mehul Parikh <me...@apache.org>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 22926fd..b62d9b6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -192,7 +192,7 @@
         <codehaus.woodstox.stax2api.version>3.1.4</codehaus.woodstox.stax2api.version>
         <fasterxml.woodstox.version>5.0.3</fasterxml.woodstox.version>
         <fasterxml.jackson.version>2.9.9</fasterxml.jackson.version>
-                <fasterxml.jackson.databind.version>2.9.9.3</fasterxml.jackson.databind.version>
+                <fasterxml.jackson.databind.version>2.10.0</fasterxml.jackson.databind.version>
         <kstruct.gethostname4j.version>0.0.2</kstruct.gethostname4j.version>
         <jna.version>5.2.0</jna.version>
         <jna-platform.version>5.2.0</jna-platform.version>


[ranger] 01/02: RANGER-2783 : Add schema registry service def to be registered by default on start of Ranger

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

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

commit d7bd3336d59a83027a4488ca783dd1ce09c2224d
Author: Mehul Parikh <me...@apache.org>
AuthorDate: Wed Apr 8 12:58:25 2020 +0530

    RANGER-2783 : Add schema registry service def to be registered by default on start of Ranger
---
 .../java/org/apache/ranger/plugin/store/EmbeddedServiceDefsUtil.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/agents-common/src/main/java/org/apache/ranger/plugin/store/EmbeddedServiceDefsUtil.java b/agents-common/src/main/java/org/apache/ranger/plugin/store/EmbeddedServiceDefsUtil.java
index 072c803..b63e82b 100755
--- a/agents-common/src/main/java/org/apache/ranger/plugin/store/EmbeddedServiceDefsUtil.java
+++ b/agents-common/src/main/java/org/apache/ranger/plugin/store/EmbeddedServiceDefsUtil.java
@@ -48,7 +48,7 @@ public class EmbeddedServiceDefsUtil {
 
 
 	// following servicedef list should be reviewed/updated whenever a new embedded service-def is added
-	public static final String DEFAULT_BOOTSTRAP_SERVICEDEF_LIST = "tag,hdfs,hbase,hive,kms,knox,storm,yarn,kafka,solr,atlas,nifi,nifi-registry,sqoop,kylin,elasticsearch,presto,ozone,kudu";
+	public static final String DEFAULT_BOOTSTRAP_SERVICEDEF_LIST = "tag,hdfs,hbase,hive,kms,knox,storm,yarn,kafka,solr,atlas,nifi,nifi-registry,sqoop,kylin,elasticsearch,presto,ozone,kudu,schema-registry";
 	private static final String PROPERTY_SUPPORTED_SERVICE_DEFS = "ranger.supportedcomponents";
 	private Set<String> supportedServiceDefs;
 	public static final String EMBEDDED_SERVICEDEF_TAG_NAME  = "tag";