This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/pip/datafusion-50.0.0
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
discard 125a51ae Build: Bump datafusion from 47.0.0 to 50.0.0
add bfba7cb9 Build: Bump cachetools from 5.5.2 to 6.1.0 (#2145)
add 8c545d92 Build: Bump daft from 0.6.2 to 0.6.3 (#2551)
add 40521c81 Re-use connections when remote S3 signing (#2543)
add dbe2486f Add lock for `cachetools` (#2555)
add 21416d6b Serialize true false (#2538)
add 5ee5eeac CI: Use Spark base image for Docker (#2540)
add 7e5cd328 Feat/update sort order (#2552)
add 3e46596a infra: group spark files into `dev/spark/` (#2563)
add 34265fb3 infra: cleanup filterwarnings (#2569)
add 25f46b54 infra: upgrade spark to 4.0.1 (#2566)
add 2b78885b Build: Bump datafusion from 47.0.0 to 50.0.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 (125a51ae)
\
N -- N -- N refs/heads/dependabot/pip/datafusion-50.0.0
(2b78885b)
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:
.github/workflows/python-ci.yml | 3 +
Makefile | 6 +-
dev/Dockerfile | 98 ----------------
dev/docker-compose-integration.yml | 11 +-
dev/entrypoint.sh | 23 ----
dev/provision.py | 56 ++++------
dev/spark/Dockerfile | 69 ++++++++++++
dev/{ => spark}/spark-defaults.conf | 2 +
mkdocs/docs/api.md | 18 +++
mkdocs/docs/how-to-release.md | 4 -
poetry.lock | 95 ++++++++--------
pyiceberg/catalog/hive.py | 5 +
pyiceberg/expressions/__init__.py | 20 ++--
pyiceberg/io/fsspec.py | 80 +++++++++-----
pyiceberg/manifest.py | 3 +-
pyiceberg/table/__init__.py | 29 ++++-
pyiceberg/table/update/sorting.py | 136 +++++++++++++++++++++++
pyproject.toml | 5 +-
ruff.toml | 1 -
tests/catalog/test_hive.py | 9 ++
tests/expressions/test_expressions.py | 2 +
tests/integration/test_reads.py | 8 ++
tests/integration/test_sort_order_update.py | 166 ++++++++++++++++++++++++++++
tests/io/test_fsspec.py | 19 ++--
24 files changed, 604 insertions(+), 264 deletions(-)
delete mode 100644 dev/Dockerfile
delete mode 100755 dev/entrypoint.sh
create mode 100644 dev/spark/Dockerfile
rename dev/{ => spark}/spark-defaults.conf (98%)
create mode 100644 pyiceberg/table/update/sorting.py
create mode 100644 tests/integration/test_sort_order_update.py