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

github-bot pushed a change to branch dependabot/cargo/bytes-1.11.1
in repository https://gitbox.apache.org/repos/asf/sedona-db.git


    omit 5351d923 chore(deps): bump bytes from 1.11.0 to 1.11.1
     add 7a1df552 feat(rust/sedona-spatial-join): Support spatial partitioned 
spatial join for non-knn predicates (#563)
     add d8ed001b chore(rust/sedona-geometry): Add wkb_rect and clean up tests 
defining their own rect_wkb functions (#572)
     add 3a4ca3bf feat(rust/sedona-geoparquet): Add read support for 
Geometry/Geography Parquet types (#561)
     add d7175b16 chore(deps): bump bytes from 1.11.0 to 1.11.1

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   (5351d923)
            \
             N -- N -- N   refs/heads/dependabot/cargo/bytes-1.11.1 (d7175b16)

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/sedonadb/tests/io/test_parquet.py           |  42 +-
 rust/sedona-geometry/src/wkb_factory.rs            |  49 ++
 rust/sedona-geoparquet/Cargo.toml                  |   2 +-
 rust/sedona-geoparquet/src/file_opener.rs          | 506 ++++++++++++++++--
 rust/sedona-geoparquet/src/format.rs               |  85 ++-
 rust/sedona-geoparquet/src/metadata.rs             | 483 ++++++++++++++++-
 rust/sedona-schema/src/schema.rs                   |  43 +-
 rust/sedona-spatial-join/Cargo.toml                |   2 +-
 .../bench/partitioning/stream_repartitioner.rs     |  11 +-
 rust/sedona-spatial-join/src/exec.rs               | 256 ++++-----
 .../src/index/build_side_collector.rs              |  22 +-
 .../src/index/partitioned_index_provider.rs        |  24 +-
 rust/sedona-spatial-join/src/lib.rs                |   1 +
 rust/sedona-spatial-join/src/operand_evaluator.rs  |  10 +-
 .../src/partitioning/stream_repartitioner.rs       | 107 ++--
 rust/sedona-spatial-join/src/prepare.rs            | 282 +++++++---
 rust/sedona-spatial-join/src/probe.rs              |  45 ++
 .../src/probe/first_pass_stream.rs                 | 247 +++++++++
 .../src/probe/non_partitioned_stream.rs            |  69 +++
 .../src/probe/partitioned_stream_provider.rs       | 508 ++++++++++++++++++
 rust/sedona-spatial-join/src/stream.rs             | 572 ++++++++++++++++-----
 rust/sedona-spatial-join/src/utils/join_utils.rs   | 322 ++++++++++++
 22 files changed, 3143 insertions(+), 545 deletions(-)
 create mode 100644 rust/sedona-spatial-join/src/probe.rs
 create mode 100644 rust/sedona-spatial-join/src/probe/first_pass_stream.rs
 create mode 100644 rust/sedona-spatial-join/src/probe/non_partitioned_stream.rs
 create mode 100644 
rust/sedona-spatial-join/src/probe/partitioned_stream_provider.rs

Reply via email to