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

github-bot pushed a change to branch dependabot/gradle/junit-5.14.0
in repository https://gitbox.apache.org/repos/asf/iceberg.git


 discard c9d5937b06 Build: Bump junit from 5.13.4 to 5.14.0
     add 990ceca865 Build: Bump software.amazon.awssdk:bom from 2.34.5 to 
2.35.0 (#14252)
     add 4f0f9f397c Build: Bump 
org.openapitools:openapi-generator-gradle-plugin (#14253)
     add 859edb6b20 Build: Bump mkdocs-material from 9.6.20 to 9.6.21 (#14255)
     add a9a237fd7a Build: Bump com.azure:azure-sdk-bom from 1.2.38 to 1.3.0 
(#14257)
     add fa93604c85 Build: Bump jackson-bom from 2.19.2 to 2.20.0 and 
jackson-annotations to 2.20 (#13961)
     add 840497e3d7 Spark 3.4: Deprecate support (#14099)
     add 620892cd70 Core, Spark: Deprecate `write.metadata.path` and use 
`location` to customize view location (#14212)
     add 8bb66f7071 Core: Deprecate Namespace Joiner/Splitter and use separate 
methods (#14274)
     add 533a75c8a5 OpenAPI: Fix inconsistent error example names (#14248)
     add e70832cbd8 Build: Bump com.google.cloud:libraries-bom from 26.67.0 to 
26.68.0 (#14134)
     add 9be7c1820c Parquet: Handle NPE for VariantLogicalType in 
TypeWithSchemaVisitor (#14261)
     add ca8fd16c4c Docs: Mention Hive 4.1 (#14282)
     add 9ee4d023f8 Build: Upgrade datafusion-comet to 0.10.1 (#14273)
     add 7f41113556 Parquet,Docs: Add new table property to configure 
bloom-filter ndv (#14244)
     add a473b1c6e0 API: Detect whether required fields nested within optionals 
can produce nulls (#14270)
     add 77bc1d08ec Make KMS endpoint configurable via kms.endpoint AWS 
property (#14246)
     add 0fc9d7dde3 Build: Bump 
org.scala-lang.modules:scala-collection-compat_2.13 (#14303)
     add 6ad5dd8188 Build: Bump software.amazon.awssdk:bom from 2.35.0 to 
2.35.5 (#14302)
     add 765cf8d79c Build: Bump org.immutables:value from 2.11.4 to 2.11.6 
(#14301)
     add 06ebf07e67 Build: Bump com.google.cloud:libraries-bom from 26.68.0 to 
26.70.0 (#14298)
     add 0e04429c4b Build: Bump nessie from 0.105.3 to 0.105.4 (#14299)
     add acd3e4657d Build: Bump net.snowflake:snowflake-jdbc from 3.26.1 to 
3.27.0 (#14304)
     add b98d5ca2a8 Build: Bump junit from 5.13.4 to 5.14.0

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   (c9d5937b06)
            \
             N -- N -- N   refs/heads/dependabot/gradle/junit-5.14.0 
(b98d5ca2a8)

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:
 api/src/main/java/org/apache/iceberg/Accessor.java |   5 -
 .../main/java/org/apache/iceberg/Accessors.java    |  50 +++-------
 .../apache/iceberg/expressions/BoundReference.java |   4 +-
 .../iceberg/expressions/UnboundPredicate.java      |  16 ++-
 .../java/org/apache/iceberg/types/TypeUtil.java    |  24 +++++
 .../iceberg/expressions/TestBoundReference.java    | 108 --------------------
 .../iceberg/expressions/TestExpressionBinding.java |  88 +++++++++++++++++
 .../expressions/TestInclusiveMetricsEvaluator.java | 109 ++++++++++++++++++++-
 .../org/apache/iceberg/types/TestTypeUtil.java     |  96 ++++++++++++++++++
 .../iceberg/aws/TestDefaultAwsClientFactory.java   |  13 +++
 .../org/apache/iceberg/aws/AwsClientFactories.java |   7 +-
 .../java/org/apache/iceberg/aws/AwsProperties.java |  29 ++++++
 build.gradle                                       |   2 +-
 .../java/org/apache/iceberg/TableProperties.java   |   3 +
 .../apache/iceberg/rest/RESTSessionCatalog.java    |   2 +-
 .../java/org/apache/iceberg/rest/RESTUtil.java     |  49 ++++++++-
 .../org/apache/iceberg/view/ViewProperties.java    |   7 +-
 .../apache/iceberg/rest/RESTCatalogAdapter.java    |   6 +-
 .../java/org/apache/iceberg/rest/TestRESTUtil.java |  46 +++++++++
 docs/docs/configuration.md                         |  99 ++++++++++---------
 docs/docs/hive.md                                  |   4 +
 docs/docs/spark-ddl.md                             |  12 +++
 docs/docs/view-configuration.md                    |   1 -
 gradle/libs.versions.toml                          |  21 ++--
 open-api/rest-catalog-open-api.yaml                |   6 +-
 .../java/org/apache/iceberg/parquet/Parquet.java   |  26 ++++-
 .../iceberg/parquet/TypeWithSchemaVisitor.java     |   2 +-
 .../apache/iceberg/parquet/TestPruneColumns.java   |  45 +++++++++
 site/docs/multi-engine-support.md                  |   2 +-
 site/requirements.txt                              |   2 +-
 .../apache/iceberg/spark/extensions/TestViews.java |  16 +++
 spark/v4.0/build.gradle                            |   4 +-
 .../apache/iceberg/spark/extensions/TestViews.java |  16 +++
 .../iceberg/spark/data/TestSparkParquetWriter.java |  28 ++++++
 34 files changed, 705 insertions(+), 243 deletions(-)
 delete mode 100644 
api/src/test/java/org/apache/iceberg/expressions/TestBoundReference.java

Reply via email to