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/hookform/resolvers-5.2.2
in repository https://gitbox.apache.org/repos/asf/gravitino.git
discard 056c5a1f06 build(deps): bump @hookform/resolvers from 3.10.0 to 5.2.2
in /web/web
add 489353cdee build(deps-dev): bump llama-index from 0.11.18 to 0.12.41
in /clients/client-python (#8551)
add 718ba4b2a2 [#8241] improvement(trino-connector): Support SQL
UPDATE/DELETE/MERGE with Hive/Iceberg (#8258)
add 136b5d9b66 [MINOR] Bump the version to 1.1.0-SNAPSHOT (#8549)
add 3796bea867 build(deps): bump next from 14.2.21 to 14.2.32 in /web/web
(#8469)
add c1896e7ed4 build(deps): bump axios from 1.10.0 to 1.12.0 in /web/web
(#8563)
add 8b550b0b7a [#8559] improvement(CI): fix Frontend CI failed by
StaleElementReferenceException (#8562)
add 9f33a8b104 [#8530] improvement(common): add null check to prevent NPE
in PartitionStatisticsList (#8566)
add 51d203fed3 [#8089][#8099] Improvement(authz): Support concurrent
metadata authorization (#8553)
add 284921a39f [MINOR] web(UI): update dependency version (#8569)
add abb97e8bae build(deps): bump @hookform/resolvers from 3.10.0 to 5.2.2
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 (056c5a1f06)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/web/web/hookform/resolvers-5.2.2 (abb97e8bae)
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:
clients/client-python/requirements-dev.txt | 2 +-
clients/client-python/setup.py | 2 +-
clients/filesystem-fuse/Cargo.toml | 2 +-
.../responses/PartitionStatisticsListResponse.java | 2 +
.../gravitino/dto/responses/TestResponses.java | 18 +
.../main/java/org/apache/gravitino/Configs.java | 9 +
.../authorization/AuthorizationRequestContext.java | 153 ++
.../authorization/GravitinoAuthorizer.java | 15 +-
.../gravitino-iceberg-rest-server/Chart.yaml | 4 +-
.../gravitino-iceberg-rest-server/values.yaml | 2 +-
dev/charts/gravitino/Chart.yaml | 4 +-
dev/charts/gravitino/values.yaml | 2 +-
docs/gravitino-server-config.md | 1 +
docs/index.md | 8 +-
docs/manage-relational-metadata-using-gravitino.md | 10 +-
docs/open-api/openapi.yaml | 2 +-
docs/trino-connector/catalog-hive.md | 60 +-
docs/trino-connector/catalog-iceberg.md | 36 +-
docs/trino-connector/catalog-mysql.md | 8 +-
docs/trino-connector/catalog-postgresql.md | 8 +-
docs/trino-connector/sql-support.md | 1 +
gradle.properties | 2 +-
.../docker-script/docker-compose.yaml | 2 +
.../docker-script/init/hive/init.sh | 18 +-
.../docker-script/init/hive/init.sql | 48 +-
.../test/container/TrinoITContainers.java | 13 +-
mcp-server/pyproject.toml | 2 +-
.../server/authorization/MetadataFilterHelper.java | 119 +-
.../authorization/PassThroughAuthorizer.java | 13 +-
.../AuthorizationExpressionConverter.java | 8 +-
.../AuthorizationExpressionEvaluator.java | 17 +-
.../authorization/jcasbin/JcasbinAuthorizer.java | 279 ++--
.../authorization/MockGravitinoAuthorizer.java | 13 +-
.../authorization/TestMetadataFilterHelper.java | 21 +
.../authorization/TestPassThroughAuthorizer.java | 5 +-
.../TestAuthorizationExpressionConverter.java | 16 +-
.../TestAuthorizationExpressionEvaluator.java | 17 +-
.../jcasbin/TestJcasbinAuthorizer.java | 47 +-
.../web/filter/GravitinoInterceptionService.java | 4 +-
.../filter/TestGravitinoInterceptionService.java | 13 +-
.../integration/test/TrinoQueryITBase.java | 20 +-
.../testsets/hive/00015_update_table.sql | 8 +
.../testsets/hive/00015_update_table.txt | 9 +
.../testsets/hive/00016_delete_table.sql | 38 +
.../testsets/hive/00016_delete_table.txt | 36 +
.../testsets/hive/00017_merge_table.sql | 32 +
.../testsets/hive/00017_merge_table.txt | 23 +
.../lakehouse-iceberg/00008_update_table.sql | 29 +
...001_select_table.txt => 00008_update_table.txt} | 18 +-
.../lakehouse-iceberg/00009_delete_table.sql | 52 +
.../lakehouse-iceberg/00009_delete_table.txt | 42 +
.../lakehouse-iceberg/00010_merge_table.sql | 58 +
.../lakehouse-iceberg/00010_merge_table.txt | 35 +
.../trino/connector/GravitinoConnector.java | 9 +
.../trino/connector/GravitinoMergeTableHandle.java | 102 ++
.../trino/connector/GravitinoMetadata.java | 47 +
.../GravitinoNodePartitioningProvider.java | 87 ++
.../trino/connector/GravitinoPageSinkProvider.java | 15 +
...andle.java => GravitinoPartitioningHandle.java} | 26 +-
.../trino/connector/util/json/JsonCodec.java | 10 +
.../test/web/ui/pages/CatalogsPage.java | 36 +-
web/web/package.json | 4 +-
web/web/pnpm-lock.yaml | 1506 ++++++++++----------
63 files changed, 2247 insertions(+), 1001 deletions(-)
create mode 100644
core/src/main/java/org/apache/gravitino/authorization/AuthorizationRequestContext.java
copy authorizations/build.gradle.kts =>
integration-test-common/docker-script/init/hive/init.sql (50%)
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/hive/00015_update_table.sql
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/hive/00015_update_table.txt
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/hive/00016_delete_table.sql
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/hive/00016_delete_table.txt
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/hive/00017_merge_table.sql
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/hive/00017_merge_table.txt
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/lakehouse-iceberg/00008_update_table.sql
copy
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/lakehouse-iceberg/{00001_select_table.txt
=> 00008_update_table.txt} (52%)
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/lakehouse-iceberg/00009_delete_table.sql
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/lakehouse-iceberg/00009_delete_table.txt
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/lakehouse-iceberg/00010_merge_table.sql
create mode 100644
trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/lakehouse-iceberg/00010_merge_table.txt
create mode 100644
trino-connector/trino-connector/src/main/java/org/apache/gravitino/trino/connector/GravitinoMergeTableHandle.java
create mode 100644
trino-connector/trino-connector/src/main/java/org/apache/gravitino/trino/connector/GravitinoNodePartitioningProvider.java
copy
trino-connector/trino-connector/src/main/java/org/apache/gravitino/trino/connector/{GravitinoInsertTableHandle.java
=> GravitinoPartitioningHandle.java} (57%)