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

github-bot pushed a change to branch dependabot/pip/python/pyparsing-3.1.0
in repository https://gitbox.apache.org/repos/asf/iceberg.git


    omit 7fa9277258 Build: Bump pyparsing from 3.0.9 to 3.1.0 in /python
     add e389e4d139 Build: Bump 
org.eclipse.microprofile.openapi:microprofile-openapi-api (#8016)
     add d964700246 Python: Let produce last-updated-ms field in metadata at 
microsecond level (#8026)
     add f94de0f387 Python: Return location and comments when parameter key 
does not exist (#8014)
     add 62cb7b5c50 Spark-3.3: Backport 'WAP branch not propagated when using 
DELETE without WHERE' (#8033)
     add 9607a52348 Spark 3.1, 3.2, 3.3: Backport removal of snapshot-property 
in CommitMetadata properties (#7991)
     add 37f53518a0 Docs: Add warning in tiered storage (#8037)
     add 6cafd7055e Build: Upgrade scala-collection-compat (#8002)
     add 7a44ee2f84 Spark 3.4: Allow importing empty tables (#7980)
     add 9572585779 Core: Fix unicode handling in HTTPClient (#8046)
     add 45d834a6dd Spark: Consolidate duplicated test methods to TestHelpers 
(#8024)
     add cff2ff9d2f Core: Abort file groups should be under same lock as 
committerService (#7933)
     add 31dd70cecc Docs: Update Partitions table in Flink/Spark doc (#8021)
     add 98a29a3777 Build: Bump Arrow from 12.0.0 to 12.0.1 (#8038)
     add 3d929d459a Core: Handle optional fields (#8050)
     add d230bb4f55 Core: Remove deprecated AssertHelpers usage (#8062)
     add 25dc42184f Spark 3.4: Fix rewrite_position_deletes for certain 
partition types (#8059)
     add 3eaeeae3fe Spark 3.1, 3.2, 3.3: Allow importing empty tables (#7980) 
(#8063)
     add 981f1a0ee0 Spark 3.3: Fix rewrite_position_deletes for certain 
partition types (#8059) (#8069)
     add 3caa3a28d0 Hive: Switch tests to JUnit5 (#8058)
     add c27c1fb1f2 GCP: fix single byte read in GCSInputStream (#8071)
     add cdbaf5754e Python: Remove MemoryInputStream in favor of io.BytesIO 
(#8074)
     add 0a50f06f30 Build: Bump moto from 4.1.12 to 4.1.13 in /python (#8080)
     add 8517a10242 Build: Bump griffe from 0.30.0 to 0.32.1 in /python (#8078)
     add 57c3a9e2fa Build: Bump pyparsing from 3.0.9 to 3.1.0 in /python

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   (7fa9277258)
            \
             N -- N -- N   refs/heads/dependabot/pip/python/pyparsing-3.1.0 
(57c3a9e2fa)

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:
 build.gradle                                       |   8 +-
 .../org/apache/iceberg/TableMetadataParser.java    |  38 +-
 .../apache/iceberg/actions/BaseCommitService.java  |  45 +-
 .../java/org/apache/iceberg/rest/HTTPClient.java   |   7 +-
 .../java/org/apache/iceberg/TestSchemaUpdate.java  | 754 ++++++++++-----------
 .../org/apache/iceberg/TestSnapshotManager.java    | 216 +++---
 .../java/org/apache/iceberg/TestTableMetadata.java |  10 +
 .../apache/iceberg/TestUpdatePartitionSpec.java    | 214 +++---
 .../apache/iceberg/actions/TestCommitService.java  | 138 ++++
 .../org/apache/iceberg/catalog/CatalogTests.java   |   6 +-
 ...Found.json => TableMetadataV2ValidMinimal.json} |  22 +-
 docs/flink-queries.md                              |  14 +-
 docs/spark-procedures.md                           |   4 +
 docs/spark-queries.md                              |  14 +-
 .../org/apache/iceberg/gcp/gcs/GCSInputStream.java |   2 +-
 .../apache/iceberg/gcp/gcs/GCSInputStreamTest.java |  16 +
 .../iceberg/hive/HiveCreateReplaceTableTest.java   |  99 +--
 .../org/apache/iceberg/hive/HiveMetastoreTest.java |   8 +-
 .../org/apache/iceberg/hive/HiveTableBaseTest.java |   8 +-
 .../org/apache/iceberg/hive/HiveTableTest.java     | 231 ++++---
 .../apache/iceberg/hive/TestCachedClientPool.java  |  74 +-
 .../org/apache/iceberg/hive/TestHiveCatalog.java   | 338 ++++-----
 .../apache/iceberg/hive/TestHiveClientPool.java    |  40 +-
 .../apache/iceberg/hive/TestHiveCommitLocks.java   |  57 +-
 .../org/apache/iceberg/hive/TestHiveCommits.java   | 124 ++--
 .../org/apache/iceberg/hive/TestHiveMetastore.java |   4 +-
 .../apache/iceberg/hive/TestHiveSchemaUtil.java    |  35 +-
 .../iceberg/hive/TestHiveTableConcurrency.java     |  11 +-
 .../apache/iceberg/hive/TestLoadHiveCatalog.java   |  19 +-
 python/mkdocs/requirements.txt                     |   2 +-
 python/poetry.lock                                 |   8 +-
 python/pyiceberg/avro/file.py                      |   5 +-
 python/pyiceberg/catalog/glue.py                   |   4 +-
 python/pyiceberg/io/memory.py                      |  85 ---
 python/pyiceberg/table/metadata.py                 |   6 +-
 python/pyiceberg/utils/datetime.py                 |   9 +
 python/pyproject.toml                              |   2 +-
 python/tests/avro/test_decoder.py                  |  46 +-
 python/tests/avro/test_reader.py                   |  10 +-
 python/tests/utils/test_datetime.py                |  69 ++
 .../extensions/TestMigrateTableProcedure.java      |  22 +
 .../org/apache/iceberg/spark/CommitMetadata.java   |  12 +-
 .../org/apache/iceberg/spark/SparkTableUtil.java   |  12 +-
 .../org/apache/iceberg/spark/data/TestHelpers.java |   8 +
 .../spark/source/TestDataSourceOptions.java        |  30 +-
 .../spark/source/TestIcebergSourceTablesBase.java  |   8 +-
 .../iceberg/spark/extensions/TestDelete.java       |   5 +-
 .../extensions/TestMigrateTableProcedure.java      |  22 +
 .../org/apache/iceberg/spark/CommitMetadata.java   |  12 +-
 .../org/apache/iceberg/spark/SparkTableUtil.java   |  12 +-
 .../spark/actions/TestRewriteDataFilesAction.java  |   9 +-
 .../org/apache/iceberg/spark/data/TestHelpers.java |  16 +-
 .../spark/source/TestDataSourceOptions.java        |  35 +-
 .../spark/source/TestIcebergSourceTablesBase.java  |   8 +-
 .../iceberg/spark/extensions/TestDelete.java       |  43 +-
 .../extensions/TestMigrateTableProcedure.java      |  22 +
 .../extensions/TestRewritePositionDeleteFiles.java | 408 +++++++++++
 .../org/apache/iceberg/spark/CommitMetadata.java   |  12 +-
 .../org/apache/iceberg/spark/SparkTableUtil.java   |  50 +-
 .../apache/iceberg/spark/SparkValueConverter.java  |  36 +
 .../SparkBinPackPositionDeletesRewriter.java       |  10 +-
 .../apache/iceberg/spark/source/SparkTable.java    |   5 +
 .../spark/actions/TestRewriteDataFilesAction.java  |   9 +-
 .../TestRewritePositionDeleteFilesAction.java      |  31 +-
 .../org/apache/iceberg/spark/data/TestHelpers.java |  13 +-
 .../spark/source/TestDataSourceOptions.java        |  35 +-
 .../spark/source/TestIcebergSourceTablesBase.java  |   8 +-
 .../iceberg/spark/extensions/TestDelete.java       |   5 +-
 .../extensions/TestMigrateTableProcedure.java      |  22 +
 .../extensions/TestRewritePositionDeleteFiles.java | 417 ++++++++++++
 .../org/apache/iceberg/spark/SparkTableUtil.java   |  12 +-
 .../apache/iceberg/spark/SparkValueConverter.java  |  36 +
 .../SparkBinPackPositionDeletesRewriter.java       |  10 +-
 .../spark/actions/TestRewriteDataFilesAction.java  |   9 +-
 .../TestRewritePositionDeleteFilesAction.java      |  31 +-
 .../org/apache/iceberg/spark/data/TestHelpers.java |  13 +-
 .../spark/source/TestIcebergSourceTablesBase.java  |   8 +-
 versions.props                                     |   8 +-
 78 files changed, 2766 insertions(+), 1500 deletions(-)
 create mode 100644 
core/src/test/java/org/apache/iceberg/actions/TestCommitService.java
 copy core/src/test/resources/{TableMetadataV2CurrentSchemaNotFound.json => 
TableMetadataV2ValidMinimal.json} (79%)
 delete mode 100644 python/pyiceberg/io/memory.py
 create mode 100644 python/tests/utils/test_datetime.py
 create mode 100644 
spark/v3.3/spark-extensions/src/test/java/org/apache/iceberg/spark/extensions/TestRewritePositionDeleteFiles.java
 create mode 100644 
spark/v3.4/spark-extensions/src/test/java/org/apache/iceberg/spark/extensions/TestRewritePositionDeleteFiles.java

Reply via email to