This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/npm_and_yarn/web/web/mui/icons-material-5.17.1 in repository https://gitbox.apache.org/repos/asf/gravitino.git
discard 41b0660db4 build(deps): bump @mui/icons-material from 5.16.14 to 5.17.1 in /web/web add edc3c34839 build(deps): bump commons-io:commons-io from 2.15.0 to 2.18.0 (#6732) add e4a049e17a [#6740] feat(core): Support group pre-event to Gravitino server (#6743) add 41580cc006 build(deps): bump testcontainers from 1.19.0 to 1.20.6 (#6731) add cff80824d2 [#6680] feat(fileset): support fileset location placeholder (#6724) add 44d55effba [#6523] fix(core): Filter null prop when init properties (#6524) add 0c30e2d8d8 [#6694] improvement: Avoid binding type `PATH` to `FILESET` (#6698) add e209f827d8 [#6729] improvement(docker-image): Copy Hadoop Azure bundles to Gravitino docker image. (#6749) add d8fb15253c build(deps): bump antd from 5.24.3 to 5.24.5 in /web/web (#6734) add 7c38838f7d build(deps): bump @mui/lab from 5.0.0-alpha.175 to 5.0.0-alpha.176 in /web/web (#6735) add 9fc48fe009 build(deps): bump @mui/icons-material from 5.16.14 to 5.17.1 in /web/web 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 (41b0660db4) \ N -- N -- N refs/heads/dependabot/npm_and_yarn/web/web/mui/icons-material-5.17.1 (9fc48fe009) 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: .../java/org/apache/gravitino/file/Fileset.java | 55 ++- .../common/PathBasedMetadataObject.java | 55 ++- .../common/TestPathBasedMetadataObject.java | 46 ++- .../ranger/RangerAuthorizationHDFSPlugin.java | 230 ++++++----- .../test/RangerAuthorizationHDFSPluginIT.java | 21 +- .../catalog/hadoop/HadoopCatalogOperations.java | 127 +++++- .../hadoop/HadoopFilesetPropertiesMetadata.java | 29 +- .../hadoop/TestHadoopCatalogOperations.java | 431 +++++++++++++++++++++ .../hadoop/integration/test/HadoopCatalogIT.java | 15 + .../client-python/gravitino/api/file/fileset.py | 49 ++- .../gravitino/catalog/EntityCombinedFileset.java | 1 + .../gravitino/catalog/EntityCombinedModel.java | 1 + .../catalog/EntityCombinedModelVersion.java | 1 + .../gravitino/catalog/EntityCombinedSchema.java | 1 + .../gravitino/catalog/EntityCombinedTable.java | 1 + .../gravitino/catalog/EntityCombinedTopic.java | 1 + .../api/event/AccessControlEventDispatcher.java | 18 +- ...{AddUserPreEvent.java => AddGroupPreEvent.java} | 29 +- .../listener/api/event/AddUserPreEvent.java | 2 +- ...{GetUserPreEvent.java => GetGroupPreEvent.java} | 31 +- .../listener/api/event/GetUserPreEvent.java | 2 +- .../{UserPreEvent.java => GroupPreEvent.java} | 11 +- ...esPreEvent.java => ListGroupNamesPreEvent.java} | 12 +- ...tUsersPreEvent.java => ListGroupsPreEvent.java} | 13 +- .../listener/api/event/OperationType.java | 7 +- ...tUserPreEvent.java => RemoveGroupPreEvent.java} | 30 +- .../gravitino/listener/api/event/UserPreEvent.java | 4 +- .../listener/api/event/TestGroupEvent.java | 193 +++++++++ .../listener/api/event/TestUserEvent.java | 14 +- .../gravitino/meta/TestEntityCombinedObject.java | 183 +++++++++ dev/docker/gravitino/gravitino-dependency.sh | 3 +- docs/gravitino-server-config.md | 23 +- docs/hadoop-catalog.md | 9 + docs/manage-fileset-metadata-using-gravitino.md | 133 ++++++- gradle/libs.versions.toml | 4 +- web/web/package.json | 4 +- web/web/pnpm-lock.yaml | 295 +++++++++----- 37 files changed, 1725 insertions(+), 359 deletions(-) copy core/src/main/java/org/apache/gravitino/listener/api/event/{AddUserPreEvent.java => AddGroupPreEvent.java} (60%) copy core/src/main/java/org/apache/gravitino/listener/api/event/{GetUserPreEvent.java => GetGroupPreEvent.java} (61%) copy core/src/main/java/org/apache/gravitino/listener/api/event/{UserPreEvent.java => GroupPreEvent.java} (75%) copy core/src/main/java/org/apache/gravitino/listener/api/event/{ListUserNamesPreEvent.java => ListGroupNamesPreEvent.java} (75%) copy core/src/main/java/org/apache/gravitino/listener/api/event/{ListUsersPreEvent.java => ListGroupsPreEvent.java} (75%) copy core/src/main/java/org/apache/gravitino/listener/api/event/{GetUserPreEvent.java => RemoveGroupPreEvent.java} (57%) create mode 100644 core/src/test/java/org/apache/gravitino/listener/api/event/TestGroupEvent.java create mode 100644 core/src/test/java/org/apache/gravitino/meta/TestEntityCombinedObject.java