This is an automated email from the ASF dual-hosted git repository.
mchades pushed a change to branch dependabot/gradle/junit-6.0.3
in repository https://gitbox.apache.org/repos/asf/gravitino.git
omit 53799f2ef3 build(deps): bump junit from 5.8.1 to 6.0.3
add fc39c77172 [#9747] feat(IRC): Add authorization for Iceberg views
(#9988)
add e05fe5ceab [#10009] Fix: Add equals and hashCode methods to
Policy.java (#10012)
add b03f4229ab [#9747][followup]feat(authz): Add view auth to
IcebergRESTAuthInterceptionService (#10020)
add 79396c91f3 build(deps): bump junit from 5.8.1 to 6.0.3
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 (53799f2ef3)
\
N -- N -- N refs/heads/dependabot/gradle/junit-6.0.3 (79396c91f3)
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:
bundles/aliyun/build.gradle.kts | 1 +
.../gravitino/oss/credential/policy/Condition.java | 2 +
.../gravitino/oss/credential/policy/Policy.java | 2 +
.../gravitino/oss/credential/policy/Statement.java | 2 +
.../oss/credential/policy/StringLike.java | 2 +
.../org/apache/gravitino/iceberg/RESTService.java | 8 +-
.../service/IcebergCatalogWrapperManager.java | 10 +-
.../authorization/IcebergRESTServerContext.java | 18 +-
.../service/rest/IcebergTableOperations.java | 8 +-
.../service/rest/IcebergViewOperations.java | 114 ++++-
.../service/rest/IcebergViewRenameOperations.java | 16 +-
.../annotations/IcebergAuthorizationMetadata.java | 1 +
...bergMetadataAuthorizationMethodInterceptor.java | 14 +
.../filter/IcebergRESTAuthInterceptionService.java | 6 +-
.../server/web/filter/LoadTableAuthzHandler.java | 65 ++-
...thzHandler.java => RenameViewAuthzHandler.java} | 62 ++-
.../test/IcebergTableAuthorizationIT.java | 2 +
.../test/IcebergViewAuthorizationIT.java | 532 +++++++++++++++++++++
.../TestIcebergCatalogWrapperManagerForREST.java | 18 +-
.../iceberg/service/TestIcebergRESTUtils.java | 2 +-
.../dispatcher/TestIcebergTableHookDispatcher.java | 2 +-
.../provider/TestDynamicIcebergConfigProvider.java | 2 +-
.../rest/IcebergCatalogWrapperManagerForTest.java | 7 +-
.../iceberg/service/rest/IcebergRestTestUtil.java | 5 +-
.../MockAuthorizationExpressionEvaluator.java | 17 +-
.../TestIcebergViewAuthorizationExpression.java | 399 ++++++++++++++++
...bergMetadataAuthorizationMethodInterceptor.java | 2 +-
.../AuthorizationExpressionConstants.java | 33 ++
.../AuthorizationExpressionConverter.java | 13 +
.../authorization/jcasbin/JcasbinAuthorizer.java | 1 +
30 files changed, 1273 insertions(+), 93 deletions(-)
copy
iceberg/iceberg-rest-server/src/main/java/org/apache/gravitino/server/web/filter/{RenameTableAuthzHandler.java
=> RenameViewAuthzHandler.java} (73%)
create mode 100644
iceberg/iceberg-rest-server/src/test/java/org/apache/gravitino/iceberg/integration/test/IcebergViewAuthorizationIT.java
copy {server/src/test/java/org/apache/gravitino/server/web =>
iceberg/iceberg-rest-server/src/test/java/org/apache/gravitino/iceberg/service}/rest/authorization/MockAuthorizationExpressionEvaluator.java
(83%)
create mode 100644
iceberg/iceberg-rest-server/src/test/java/org/apache/gravitino/iceberg/service/rest/authorization/TestIcebergViewAuthorizationExpression.java