You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by gi...@apache.org on 2022/11/21 22:29:10 UTC

[iceberg] branch dependabot/pip/python/fastavro-1.7.0 updated (5631c8a3c0 -> 553ca9a3b8)

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

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


 discard 5631c8a3c0 Build: Bump fastavro from 1.6.1 to 1.7.0 in /python
     add c0c5824e84 Python: Disallow Any generics (#6232)
     add 7190637b7f Python: Implement DataScan.plan_files (#6233)
     add 553ca9a3b8 Build: Bump fastavro from 1.6.1 to 1.7.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   (5631c8a3c0)
            \
             N -- N -- N   refs/heads/dependabot/pip/python/fastavro-1.7.0 (553ca9a3b8)

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:
 python/mkdocs/docs/index.md                  |   2 +-
 python/poetry.lock                           | 145 ++++++++++++++-------
 python/pyiceberg/avro/reader.py              |   7 +-
 python/pyiceberg/catalog/__init__.py         |   2 +-
 python/pyiceberg/catalog/glue.py             |   4 +-
 python/pyiceberg/catalog/hive.py             |   2 +-
 python/pyiceberg/catalog/rest.py             |   8 +-
 python/pyiceberg/cli/output.py               |   4 +-
 python/pyiceberg/expressions/__init__.py     |  30 +++--
 python/pyiceberg/expressions/literals.py     |  26 ++--
 python/pyiceberg/expressions/visitors.py     |   2 +-
 python/pyiceberg/io/fsspec.py                |   4 +-
 python/pyiceberg/io/pyarrow.py               |   2 +-
 python/pyiceberg/manifest.py                 |  12 +-
 python/pyiceberg/{table => }/partitioning.py |   4 +-
 python/pyiceberg/schema.py                   |   2 +-
 python/pyiceberg/table/__init__.py           | 180 ++++++++++++++++++++++++---
 python/pyiceberg/table/metadata.py           |   4 +-
 python/pyiceberg/table/snapshots.py          |   2 +-
 python/pyiceberg/table/sorting.py            |   4 +-
 python/pyiceberg/transforms.py               |  18 +--
 python/pyiceberg/typedef.py                  |  21 ++++
 python/pyiceberg/utils/bin_packing.py        |  12 +-
 python/pyiceberg/utils/deprecated.py         |   2 +-
 python/pyiceberg/utils/parsing.py            |   2 +-
 python/pyiceberg/utils/schema_conversion.py  |   6 +-
 python/pyiceberg/utils/singleton.py          |   2 +-
 python/pyproject.toml                        |   8 ++
 python/tests/catalog/test_base.py            |   2 +-
 python/tests/catalog/test_hive.py            |   2 +-
 python/tests/catalog/test_rest.py            |   2 +-
 python/tests/cli/test_console.py             |   2 +-
 python/tests/expressions/test_expressions.py |  23 ++--
 python/tests/expressions/test_visitors.py    |  72 ++++++-----
 python/tests/table/test_init.py              |   4 +-
 python/tests/table/test_metadata.py          |   2 +-
 python/tests/table/test_partitioning.py      |   2 +-
 python/tests/table/test_snapshots.py         |   2 +-
 python/tests/test_transforms.py              |   3 +-
 python/tests/utils/test_manifest.py          |   2 +-
 40 files changed, 452 insertions(+), 183 deletions(-)
 rename python/pyiceberg/{table => }/partitioning.py (98%)