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

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


 discard dd892a1df4 Build: Bump org.apache.datasketches:datasketches-java
     add 983ede3976 AWS: Fix AWS doc URL (#11198)
     add c07de6fffa Build: Bump mkdocs-macros-plugin from 1.0.5 to 1.2.0 
(#11189)
     add 2fa8c7d86c Core: Add rewritten delete files to write results (#11203)
     add 474a770aa0 Core: Support iterating over positions in 
PositionDeleteIndex (#11202)
     add f3c784e166 Spark: Added merge schema as spark configuration (#9640)
     add 1e5dcb1f6b Core: Support merging in PositionDeleteIndex (#11208)
     add b1d38b3cac Core: Remove unused code for streaming position deletes 
(#11175)
     add 26648ae20f Build: Upgrade to Gradle 8.10.2 (#11212)
     add 7bd13a32fd Core: Add a util to compute partition stats (#11146)
     add 2d9c344b5e Parquet: update PruneColumns to inherit from 
TypeWithSchemaVisitor to have Iceberg type (#11179)
     add 95497abe55 Core: Replace use of CharSequenceMap in DeleteFileIndex 
with String (#11199)
     add dddb5f423b [Core] Fix TestFastAppend.testAddManyFiles() (#11218)
     add 09370ddbc3 Spark: Deprecate SparkAppenderFactory (#11076)
     add 9601784d61 Build: Bump guava from 33.3.0-jre to 33.3.1-jre (#11230)
     add 570af254c0 Build: Bump software.amazon.awssdk:bom from 2.28.5 to 
2.28.11 (#11229)
     add 152f02de52 Build: Bump io.delta:delta-standalone_2.12 from 3.2.0 to 
3.2.1 (#11228)
     add d00c4938ad Build: Bump junit-platform from 1.10.3 to 1.11.1 (#11227)
     add b2388de014 Build: Bump org.apache.datasketches:datasketches-java

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   (dd892a1df4)
            \
             N -- N -- N   
refs/heads/dependabot/gradle/org.apache.datasketches-datasketches-java-6.1.0 
(b2388de014)

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:
 .palantir/revapi.yml                               |   4 +
 .../apache/iceberg/aws/s3/S3FileIOProperties.java  |   2 +-
 .../iceberg/PartitionStatsUtilBenchmark.java       | 105 +++++
 .../src/main/java/org/apache/iceberg/BaseScan.java |  17 +
 .../java/org/apache/iceberg/DeleteFileIndex.java   |  15 +-
 .../java/org/apache/iceberg/PartitionStats.java    | 252 ++++++++++++
 .../org/apache/iceberg/PartitionStatsUtil.java     | 136 +++++++
 .../main/java/org/apache/iceberg/Partitioning.java |  10 +
 .../java/org/apache/iceberg/PartitionsTable.java   |  13 +-
 .../iceberg/deletes/BitmapPositionDeleteIndex.java |  15 +
 .../java/org/apache/iceberg/deletes/Deletes.java   | 171 +-------
 .../iceberg/deletes/PositionDeleteIndex.java       |  22 ++
 .../iceberg/deletes/PositionDeleteIndexUtil.java   |  14 +-
 .../apache/iceberg/io/BasePositionDeltaWriter.java |   1 +
 .../org/apache/iceberg/io/DeleteWriteResult.java   |  18 +
 .../java/org/apache/iceberg/io/WriteResult.java    |  27 +-
 .../org/apache/iceberg/util/ContentFileUtil.java   |   5 +
 .../org/apache/iceberg/FileGenerationUtil.java     |  15 +
 .../java/org/apache/iceberg/TestFastAppend.java    |   2 +-
 .../org/apache/iceberg/TestPartitionStatsUtil.java | 429 +++++++++++++++++++++
 .../deletes/TestBitmapPositionDeleteIndex.java     | 113 ++++++
 .../apache/iceberg/deletes/TestPositionFilter.java | 254 ------------
 gradle/libs.versions.toml                          |   8 +-
 gradle/wrapper/gradle-wrapper.properties           |   4 +-
 gradlew                                            |   2 +-
 .../apache/iceberg/parquet/ParquetSchemaUtil.java  |   4 +-
 .../org/apache/iceberg/parquet/PruneColumns.java   |  16 +-
 site/requirements.txt                              |   2 +-
 .../iceberg/spark/source/SparkAppenderFactory.java |   4 +
 .../iceberg/spark/source/SparkAppenderFactory.java |   4 +
 .../apache/iceberg/spark/SparkSQLProperties.java   |   4 +
 .../org/apache/iceberg/spark/SparkWriteConf.java   |   3 +-
 .../apache/iceberg/spark/SparkWriteOptions.java    |   1 -
 .../iceberg/spark/source/SparkAppenderFactory.java |   4 +
 .../spark/source/TestDataFrameWriterV2.java        |  35 ++
 35 files changed, 1270 insertions(+), 461 deletions(-)
 create mode 100644 
core/src/jmh/java/org/apache/iceberg/PartitionStatsUtilBenchmark.java
 create mode 100644 core/src/main/java/org/apache/iceberg/PartitionStats.java
 create mode 100644 
core/src/main/java/org/apache/iceberg/PartitionStatsUtil.java
 create mode 100644 
core/src/test/java/org/apache/iceberg/TestPartitionStatsUtil.java
 create mode 100644 
core/src/test/java/org/apache/iceberg/deletes/TestBitmapPositionDeleteIndex.java

Reply via email to