You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by pr...@apache.org on 2020/05/28 06:03:24 UTC

[ranger] branch master updated (cf1e3ef -> 54e5488)

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

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


    from cf1e3ef  RANGER-2634: Add support for ElasticSearch as an Audit Database
     new a72b5ed  RANGER-2838: Kafka Testcases failing ranger build with NoClassDefFoundError
     new 54e5488  RANGER-2833 : Enforcing Strict transport security

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:
 plugin-kafka/pom.xml                     | 7 ++++++-
 security-admin/src/main/webapp/login.jsp | 1 +
 2 files changed, 7 insertions(+), 1 deletion(-)


[ranger] 02/02: RANGER-2833 : Enforcing Strict transport security

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

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

commit 54e54886329f9e46845f11cde066c842525d2e88
Author: Dineshkumar Yadav <di...@outlook.com>
AuthorDate: Thu May 21 16:26:30 2020 +0530

    RANGER-2833 : Enforcing Strict transport security
    
    Signed-off-by: pradeep <pr...@apache.org>
---
 security-admin/src/main/webapp/login.jsp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/security-admin/src/main/webapp/login.jsp b/security-admin/src/main/webapp/login.jsp
index 570ab75..12479f2 100644
--- a/security-admin/src/main/webapp/login.jsp
+++ b/security-admin/src/main/webapp/login.jsp
@@ -59,6 +59,7 @@
 			response.setHeader("X-Content-Type-Options", "nosniff");
 			response.setHeader("X-XSS-Protection", "1; mode=block");
 			response.setHeader("Content-Security-Policy", "default-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self'; img-src 'self'; style-src 'self' 'unsafe-inline';font-src 'self'");
+			response.setHeader("Strict-Transport-Security", "max-age=31536000; includeSubDomains");
 		%>
 		<!-- Page content
 		================================================== -->


[ranger] 01/02: RANGER-2838: Kafka Testcases failing ranger build with NoClassDefFoundError

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

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

commit a72b5eddecfd61099791eae615716cce430b348a
Author: pradeep <pr...@apache.org>
AuthorDate: Wed May 27 21:36:53 2020 +0530

    RANGER-2838: Kafka Testcases failing ranger build with NoClassDefFoundError
---
 plugin-kafka/pom.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/plugin-kafka/pom.xml b/plugin-kafka/pom.xml
index f895688..91ecfe8 100644
--- a/plugin-kafka/pom.xml
+++ b/plugin-kafka/pom.xml
@@ -89,7 +89,12 @@
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
         </dependency>
-
+        <dependency>
+            <groupId>com.fasterxml.jackson.core</groupId>
+            <artifactId>jackson-core</artifactId>
+            <version>2.10.4</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <testResources>