[ranger] 01/01: Merge branch 'master' into RANGER-3923

2023-09-21 Thread madhan
This is an automated email from the ASF dual-hosted git repository.

madhan pushed a commit to branch RANGER-3923
in repository https://gitbox.apache.org/repos/asf/ranger.git

commit d5dc40c8cc52360b8f93b75b7a3badb8dba45f4a
Merge: a13a01bce 9ad41a7ca
Author: Madhan Neethiraj 
AuthorDate: Thu Sep 21 22:47:16 2023 -0700

Merge branch 'master' into RANGER-3923

 .../ranger/plugin/model/RangerPluginInfo.java  |   2 +-
 .../plugin/util/GraalScriptEngineCreator.java  | 111 -
 .../plugin/util/RangerSecurityZoneHelper.java  |   2 +-
 3 files changed, 110 insertions(+), 5 deletions(-)



[ranger] branch RANGER-3923 updated (a13a01bce -> d5dc40c8c)

2023-09-21 Thread madhan
This is an automated email from the ASF dual-hosted git repository.

madhan pushed a change to branch RANGER-3923
in repository https://gitbox.apache.org/repos/asf/ranger.git


from a13a01bce RANGER-4413: fix pagination for GDS APIs
 add 21b2aebee RANGER-4401: Configurable Graalvm features
 add a280d1dc3 RANGER-4402: Active role version is not updated while plugin 
download
 add 9ad41a7ca RANGER-4398: updated resource ID to start from 1, instead of 
0 - #2
 new d5dc40c8c Merge branch 'master' into RANGER-3923

The 1 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:
 .../ranger/plugin/model/RangerPluginInfo.java  |   2 +-
 .../plugin/util/GraalScriptEngineCreator.java  | 111 -
 .../plugin/util/RangerSecurityZoneHelper.java  |   2 +-
 3 files changed, 110 insertions(+), 5 deletions(-)



[ranger] branch master updated: RANGER-4398: updated resource ID to start from 1, instead of 0 - #2

2023-09-21 Thread madhan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 9ad41a7ca RANGER-4398: updated resource ID to start from 1, instead of 
0 - #2
9ad41a7ca is described below

commit 9ad41a7ca62a998f5d8d7a63b89a0301f029c10f
Author: Madhan Neethiraj 
AuthorDate: Thu Sep 21 22:46:01 2023 -0700

RANGER-4398: updated resource ID to start from 1, instead of 0 - #2
---
 .../java/org/apache/ranger/plugin/util/RangerSecurityZoneHelper.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/agents-common/src/main/java/org/apache/ranger/plugin/util/RangerSecurityZoneHelper.java
 
b/agents-common/src/main/java/org/apache/ranger/plugin/util/RangerSecurityZoneHelper.java
index 460b55e1e..ffd1693a1 100644
--- 
a/agents-common/src/main/java/org/apache/ranger/plugin/util/RangerSecurityZoneHelper.java
+++ 
b/agents-common/src/main/java/org/apache/ranger/plugin/util/RangerSecurityZoneHelper.java
@@ -187,7 +187,7 @@ public class RangerSecurityZoneHelper {
 private final String   currentUser;
 private final List>>  resources;
 private final List resourcesBaseInfo;
-private   long nextResourceId = 0;
+private   long nextResourceId = 1;
 
 public RangerSecurityZoneServiceHelper(RangerSecurityZoneService 
zoneService, String currentUser) {
 this.zoneService = zoneService;