This is an automated email from the ASF dual-hosted git repository.

fanng pushed a change to branch remove_release
in repository https://gitbox.apache.org/repos/asf/gravitino.git


    omit 1adaea36a9 [#10262] build: remove release task and centralize JDK8 
compatibility
     add 6647775c43 [#10075] feat(web): Add frontend support for Hologres JDBC 
catalog (#10070)
     add ad54a7a2a7 [#10177] improvement(core): ensure SessionUtils rolls back 
on Throwable (#10335)
     add 63d176b800 [#10373] fix(client): Support runing JDK8 with Gravitino 
client (#10376)
     add 869bdc92b6 [#10365] fix(hologres): Add GUC parameter for DROP COLUMN 
operation (#10366)
     add e30102470a [#10397] fix(iceberg): Fix wrong namespaces when listing 
tables or views (#10398)
     add 6fdda220d0 [#10362] feat(catalog-jdbc-hologres): Add integration tests 
for Hologres JDBC catalog (#10364)
     add 847598e882 [#10391] Fix license and NOTICE issues (#10399)
     add 1f40db00fb [#10374] improvement(all): bump version to 1.3.0-SNAPSHOT 
(#10375)
     add db40dc6876 [#10331] fix(build): The package shouldn't contain the test 
jar (#10386)
     add 4c20f481e9 [#10380] fix(common): default ifExists when deleting table 
index (#10382)
     add 2d7c7623f2 [#10421] improvement (docs): Update Apache Gravitino 
copyright year to 2026 in NOTICE files (#10422) (#10423)
     new c080a700d4 [#10262] build: remove release task and centralize JDK8 
compatibility

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   (1adaea36a9)
            \
             N -- N -- N   refs/heads/remove_release (c080a700d4)

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.

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:
 LICENSE                                            |  12 +-
 NOTICE                                             |   2 +-
 NOTICE.bin                                         |   2 +-
 NOTICE.iceberg                                     |   4 +-
 NOTICE.lance                                       |   2 +-
 NOTICE.trino                                       |   2 +-
 .../org/apache/gravitino/rel/indexes/Indexes.java  |   4 +-
 .../gravitino/policy/TestPolicyContents.java       |  22 +-
 build.gradle.kts                                   |  13 +-
 .../catalog-jdbc-clickhouse/build.gradle.kts       |   1 +
 catalogs-contrib/catalog-jdbc-hologres/README.md   |  73 ++
 .../catalog-jdbc-hologres/build.gradle.kts         |   1 +
 .../operation/HologresTableOperations.java         |  13 +-
 .../integration/test/CatalogHologresIT.java        | 952 +++++++++++++++++++++
 .../integration/test/service/HologresService.java} |  54 +-
 .../operation/TestHologresTableOperations.java     |  86 ++
 .../catalog-jdbc-oceanbase/build.gradle.kts        |   1 +
 catalogs/catalog-fileset/build.gradle.kts          |   4 +-
 catalogs/catalog-hive/build.gradle.kts             |   1 +
 catalogs/catalog-jdbc-doris/build.gradle.kts       |   1 +
 catalogs/catalog-jdbc-mysql/build.gradle.kts       |   1 +
 catalogs/catalog-jdbc-postgresql/build.gradle.kts  |   1 +
 catalogs/catalog-jdbc-starrocks/build.gradle.kts   |   1 +
 catalogs/catalog-kafka/build.gradle.kts            |   1 +
 .../catalog-lakehouse-generic/build.gradle.kts     |   1 +
 catalogs/catalog-lakehouse-hudi/build.gradle.kts   |   1 +
 .../catalog-lakehouse-iceberg/build.gradle.kts     |   1 +
 catalogs/catalog-lakehouse-paimon/build.gradle.kts |   1 +
 catalogs/catalog-model/build.gradle.kts            |   1 +
 clients/client-python/NOTICE                       |   2 +-
 clients/client-python/setup.py                     |   2 +-
 clients/filesystem-fuse/Cargo.toml                 |   2 +-
 .../apache/gravitino/dto/rel/indexes/IndexDTO.java |   3 +-
 .../gravitino/dto/requests/TableUpdateRequest.java |  11 +-
 .../gravitino/dto/responses/DeleteResponse.java    |   2 +-
 .../java/org/apache/gravitino/json/JsonUtils.java  |   2 +-
 .../gravitino/utils/jdbc/JdbcSqlScriptUtils.java   |   2 +-
 .../dto/requests/TestTableUpdatesRequest.java      |  10 +
 .../org/apache/gravitino/json/TestSerializer.java  |   6 +-
 .../apache/gravitino/utils/TestJdbcUrlUtils.java   |  36 +-
 .../apache/gravitino/catalog/CatalogManager.java   |   2 +-
 .../storage/relational/utils/SessionUtils.java     |  12 +-
 .../storage/relational/utils/TestSessionUtils.java |  90 ++
 .../gravitino-iceberg-rest-server/Chart.yaml       |   4 +-
 .../gravitino-iceberg-rest-server/values.yaml      |   2 +-
 dev/charts/gravitino-lance-rest-server/Chart.yaml  |   4 +-
 dev/charts/gravitino-lance-rest-server/values.yaml |   2 +-
 dev/charts/gravitino/Chart.yaml                    |   4 +-
 dev/charts/gravitino/values.yaml                   |   2 +-
 dev/release/release-build.sh                       |   8 +-
 docs/index.md                                      |   8 +-
 docs/manage-relational-metadata-using-gravitino.md |  16 +-
 docs/open-api/openapi.yaml                         |   2 +-
 gradle.properties                                  |   2 +-
 .../service/rest/IcebergTableOperations.java       |   2 +-
 .../service/rest/IcebergViewOperations.java        |   2 +-
 .../integration/test/IcebergAuthorizationIT.java   |   8 +-
 .../test/IcebergViewAuthorizationIT.java           |   6 +
 .../jobs/BuiltInJobTemplateProvider.java           |   2 +-
 .../jobs/iceberg/TestIcebergUpdateStatsJob.java    |  20 +-
 .../TestIcebergUpdateStatsJobWithSpark.java        |  42 +-
 .../common/util/TestPartitionPathSerdeUtils.java   |   4 +-
 mcp-server/NOTICE                                  |   2 +-
 mcp-server/pyproject.toml                          |   2 +-
 web-v2/web/NOTICE                                  |   2 +-
 web-v2/web/src/app/catalogs/TreeComponent.js       |  16 +
 .../catalogs/rightContent/CreateCatalogDialog.js   |   2 +
 .../entitiesContent/CatalogDetailsPage.js          |   2 +
 web-v2/web/src/components/Icons.js                 |  20 +
 web-v2/web/src/config/catalog.js                   |  46 +
 web-v2/web/src/lib/icons/svg/hologres.svg          |   1 +
 web/web/NOTICE                                     |   2 +-
 72 files changed, 1526 insertions(+), 150 deletions(-)
 create mode 100644 catalogs-contrib/catalog-jdbc-hologres/README.md
 create mode 100644 
catalogs-contrib/catalog-jdbc-hologres/src/test/java/org/apache/gravitino/catalog/hologres/integration/test/CatalogHologresIT.java
 copy 
catalogs-contrib/{catalog-jdbc-oceanbase/src/test/java/org/apache/gravitino/catalog/oceanbase/integration/test/service/OceanBaseService.java
 => 
catalog-jdbc-hologres/src/test/java/org/apache/gravitino/catalog/hologres/integration/test/service/HologresService.java}
 (58%)
 create mode 100644 
core/src/test/java/org/apache/gravitino/storage/relational/utils/TestSessionUtils.java
 create mode 100644 web-v2/web/src/lib/icons/svg/hologres.svg

Reply via email to