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

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


    omit 487a2c7b24 Build: Bump coverage from 7.2.7 to 7.3.0 in /python
     add 36ca2fffea AWS, GCS: Allow access to underlying storage client (#8208)
     add f4d830b0fa Core: Extend ResolvingFileIO to support BulkOperations 
(#7976)
     add 989a1acc01 Spark 3.3 : Backport `fast_forward` procedure (#8288)
     add a3aff95f9e Docs: Mention how to add new functionality without breaking 
APIs (#8293)
     add 9d52b54416 Python: Implement Cython based decoding for Avro (#8134)
     new 3cc2661be5 Build: Bump coverage from 7.2.7 to 7.3.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   (487a2c7b24)
            \
             N -- N -- N   refs/heads/dependabot/pip/python/coverage-7.3.0 
(3cc2661be5)

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:
 CONTRIBUTING.md                                    |  79 +++
 .../java/org/apache/iceberg/aws/s3/S3FileIO.java   |   2 +-
 .../org/apache/iceberg/io/ResolvingFileIO.java     |  38 +-
 .../org/apache/iceberg/io/TestResolvingIO.java     |  66 ++-
 .../java/org/apache/iceberg/gcp/gcs/GCSFileIO.java |   2 +-
 python/build-module.py                             |  81 +++
 python/poetry.lock                                 | 575 ++++++++++++---------
 python/pyiceberg/avro/decoder.py                   | 116 +----
 python/pyiceberg/avro/decoder_basic.c              |  61 +++
 python/pyiceberg/avro/decoder_fast.pyi             |  56 ++
 python/pyiceberg/avro/decoder_fast.pyx             | 186 +++++++
 python/pyiceberg/avro/file.py                      |  15 +-
 python/pyiceberg/avro/reader.py                    | 130 +++--
 python/pyiceberg/avro/resolver.py                  |   6 +-
 python/pyiceberg/utils/lazydict.py                 |  68 +++
 python/pyproject.toml                              |  20 +-
 python/tests/avro/test_decoder.py                  |  71 ++-
 python/tests/avro/test_reader.py                   |  17 +-
 .../codec.py => tests/utils/test_lazydict.py}      |  22 +-
 .../extensions/TestFastForwardBranchProcedure.java |   0
 .../procedures/FastForwardBranchProcedure.java     |   0
 .../iceberg/spark/procedures/SparkProcedures.java  |   1 +
 22 files changed, 1151 insertions(+), 461 deletions(-)
 create mode 100644 python/build-module.py
 create mode 100644 python/pyiceberg/avro/decoder_basic.c
 create mode 100644 python/pyiceberg/avro/decoder_fast.pyi
 create mode 100644 python/pyiceberg/avro/decoder_fast.pyx
 create mode 100644 python/pyiceberg/utils/lazydict.py
 copy python/{pyiceberg/avro/codecs/codec.py => tests/utils/test_lazydict.py} 
(65%)
 copy spark/{v3.4 => 
v3.3}/spark-extensions/src/test/java/org/apache/iceberg/spark/extensions/TestFastForwardBranchProcedure.java
 (100%)
 copy spark/{v3.4 => 
v3.3}/spark/src/main/java/org/apache/iceberg/spark/procedures/FastForwardBranchProcedure.java
 (100%)

Reply via email to