This is an automated email from the ASF dual-hosted git repository.
pradeep pushed a change to branch RANGER-4607_master
in repository https://gitbox.apache.org/repos/asf/ranger.git
discard 3d04d9a3a RANGER-4607: Ranger REST API improvements
add 2081a895a RANGER-4912: Upgrade Spring framework to 5.3.39 (#392)
add 5fc70579e RANGER-4935 : Updating library dependencies in Ranger Admin
React package-lock.json
add 64738a246 RANGER-4213: Getting 302 status code instead of 419 in case
of session timeout
add 5f26ed47a RANGER-4936 : Feature for download and upload of individual
policies
add 7ba69cba4 RANGER-4914: Tagsync for ozone - set isRecursive=true for
both ofs and o3fs keys by default (#394)
add bc596e627 RANGER-4820: Support authorization of multiple accesses
grouped by access groups in one policy engine call - #2
add 93c3f6329 RANGER-4934: Ranger API to add and delete resources to the
DataShare in bulk.
add 7af593110 Added 'Brijesh Bhalala' as a committer
add 4f297c35b RANGER-4938: Ensure that only one instance of Ranger plugin
is created in an Ozone Manager process
add 0f6684863 RANGER-4944 : Remove save option and cancel option on User
profile page for users other than ROLE_SYS_ADMIN role
add c1aaffb63 RANGER-4809: Utility to migrate admin audit logs in
x_trx_log table x_trx_log_v2 table
add a4f8cfbdc RANGER-4948: optimize GDS policy engine to use a single
trie-set for all resources across data shares
add 28c61f5d7 RANGER-3801: update docker download-archives.sh to download
all by default
add 47134888e RANGER-4937: Add a new GDS resource API for adding new
resources to a new or existing DataShare and add it to the DataSet
add a28c122d5 RANGER-4949 : Creating security zone with any role selected
fails for oracle DB
add f06d0e708 RANGER-4901 : [Ranger React UI] Admin audits for 'Import
Delete' operation type do not display service name field
add 9346283e3 RANGER-4607: Ranger REST API improvements
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (3d04d9a3a)
\
N -- N -- N refs/heads/RANGER-4607_master (9346283e3)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../policyengine/gds/GdsDataShareEvaluator.java | 166 ++-----
.../policyengine/gds/GdsDatasetEvaluator.java | 38 +-
.../plugin/policyengine/gds/GdsDipEvaluator.java | 21 +-
.../plugin/policyengine/gds/GdsDshidEvaluator.java | 21 +-
.../plugin/policyengine/gds/GdsPolicyEngine.java | 415 +++++++----------
.../policyengine/gds/GdsProjectEvaluator.java | 8 +-
.../gds/GdsSharedResourceEvaluator.java | 10 +-
.../RangerDefaultPolicyEvaluator.java | 39 +-
.../ranger/plugin/store/AbstractGdsStore.java | 5 +-
.../org/apache/ranger/plugin/store/GdsStore.java | 4 +-
.../plugin/util/RangerAccessRequestUtil.java | 124 +++---
.../policyengine/gds/TestGdsPolicyEngine.java | 42 +-
.../gds/test_gds_policy_engine_hive.json | 2 +-
dev-support/ranger-docker/README.md | 6 +
dev-support/ranger-docker/download-archives.sh | 49 ++-
docs/pom.xml | 12 +
.../ranger-admin-transaction-log-migrate.sh | 48 ++
.../authorization/hadoop/RangerHdfsAuthorizer.java | 6 +
.../ozone/authorizer/RangerOzoneAuthorizer.java | 20 +-
pom.xml | 4 +-
.../optimized/current/ranger_core_db_mysql.sql | 2 +
.../patches/074-create-index-for-x_trx_log.sql} | 14 +-
.../optimized/current/ranger_core_db_oracle.sql | 4 +
.../patches/066-create-sz-ref-role-table.sql | 26 ++
..._trx_log_v2.sql => 067-create-x_trx_log_v2.sql} | 0
...info.sql => 068-create-index-for-x_trx_log.sql} | 13 +-
.../optimized/current/ranger_core_db_postgres.sql | 2 +
...wner.sql => 074-create-index-for-x_trx_log.sql} | 17 +-
.../current/ranger_core_db_sqlanywhere.sql | 4 +
.../patches/068-create-index-for-x_trx_log.sql} | 4 +
.../optimized/current/ranger_core_db_sqlserver.sql | 2 +
.../patches/068-create-index-for-x_trx_log.sql} | 18 +-
.../java/org/apache/ranger/biz/GdsDBStore.java | 57 +--
.../java/org/apache/ranger/biz/ServiceDBStore.java | 96 ++--
.../main/java/org/apache/ranger/biz/XUserMgr.java | 12 +-
.../patch/cliutil/TrxLogV2MigrationUtil.java | 399 +++++++++++++++++
.../main/java/org/apache/ranger/rest/GdsREST.java | 236 +++++++++-
.../ranger/security/context/RangerAPIList.java | 2 +
.../security/web/filter/RangerKrbFilter.java | 4 +-
.../web/filter/RangerSSOAuthenticationFilter.java | 19 +-
.../main/resources/META-INF/jpa_named_queries.xml | 26 ++
.../src/main/webapp/react-webapp/package-lock.json | 489 +++++++++++++++------
.../src/views/AuditEvent/AdminLogs/PolicyLogs.jsx | 1 +
.../src/views/PolicyListing/PolicyListing.jsx | 205 ++++++++-
.../webapp/react-webapp/src/views/UserProfile.jsx | 61 +--
.../source/atlas/AtlasOzoneResourceMapper.java | 79 ++--
46 files changed, 1932 insertions(+), 900 deletions(-)
mode change 100755 => 100644
agents-common/src/main/java/org/apache/ranger/plugin/store/GdsStore.java
create mode 100755
embeddedwebserver/scripts/ranger-admin-transaction-log-migrate.sh
copy security-admin/db/{sqlanywhere/patches/021-update-tag-for-owner.sql =>
mysql/patches/074-create-index-for-x_trx_log.sql} (66%)
rename security-admin/db/oracle/patches/{077-create-x_trx_log_v2.sql =>
067-create-x_trx_log_v2.sql} (100%)
copy
security-admin/db/oracle/patches/{054-add-version-in-x_service_version_info.sql
=> 068-create-index-for-x_trx_log.sql} (71%)
copy security-admin/db/postgres/patches/{021-update-tag-for-owner.sql =>
074-create-index-for-x_trx_log.sql} (64%)
copy security-admin/db/{mysql/xa_db_bare.sql =>
sqlanywhere/patches/068-create-index-for-x_trx_log.sql} (90%)
copy
security-admin/db/{sqlanywhere/patches/050-create-index-for-resource-signature.sql
=> sqlserver/patches/068-create-index-for-x_trx_log.sql} (72%)
create mode 100644
security-admin/src/main/java/org/apache/ranger/patch/cliutil/TrxLogV2MigrationUtil.java