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

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


    omit b9a81565 chore(deps): bump object_store from 0.12.4 to 0.13.2
     add f110d44a feat(sedona-gdal): add raster operations and vrt support 
(#698)
     add 01ef59be refactor(rust/sedona-spatial-join): Allow SpatialIndexBuilder 
and EvaluatedGeometryArray to be configurable (#737)
     add c9b72a01 test(rust/sedona-raster-functions): Add multi-band regression 
tests for RS_* raster functions (#747)
     add 6e9347a5 chore(deps): bump fastrand from 2.3.0 to 2.4.0 (#755)
     add 984a09a6 chore(deps): bump tokio from 1.49.0 to 1.51.0 (#754)
     add f1d95a0d chore(deps): bump serde_with from 1.14.0 to 3.18.0 (#712)
     add 872c5b47 chore(deps): bump object_store from 0.12.4 to 0.13.2

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   (b9a81565)
            \
             N -- N -- N   refs/heads/dependabot/cargo/object_store-0.13.2 
(872c5b47)

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:
 Cargo.lock                                         | 203 +++++---
 Cargo.toml                                         |   8 +-
 c/sedona-gdal/src/lib.rs                           |   1 +
 c/sedona-gdal/src/raster.rs                        |   3 +
 c/sedona-gdal/src/raster/polygonize.rs             | 275 ++++++++++
 c/sedona-gdal/src/raster/rasterize.rs              | 260 ++++++++++
 c/sedona-gdal/src/raster/rasterize_affine.rs       | 374 ++++++++++++++
 c/sedona-gdal/src/vrt.rs                           | 321 ++++++++++++
 rust/sedona-geometry/src/interval.rs               |   6 +-
 .../src/rs_band_accessors.rs                       |  58 +++
 rust/sedona-raster-functions/src/rs_numbands.rs    |  11 +
 .../external_evaluated_batch_stream.rs             |   9 +-
 .../bench/evaluated_batch/spill.rs                 |  10 +-
 rust/sedona-spatial-join/src/evaluated_batch.rs    |  16 -
 .../evaluated_batch_stream/external.rs             |  12 +-
 .../src/evaluated_batch/spill.rs                   | 126 ++++-
 rust/sedona-spatial-join/src/exec.rs               |   6 +
 .../src/index/build_side_collector.rs              |  44 +-
 .../src/index/default_spatial_index.rs             |  66 +--
 .../src/index/default_spatial_index_builder.rs     |  84 ++-
 rust/sedona-spatial-join/src/index/knn_adapter.rs  |   2 +-
 .../src/index/partitioned_index_provider.rs        |  22 +-
 .../sedona-spatial-join/src/index/spatial_index.rs |  20 -
 .../src/index/spatial_index_builder.rs             |  27 +-
 rust/sedona-spatial-join/src/join_provider.rs      | 108 ++++
 rust/sedona-spatial-join/src/lib.rs                |   1 +
 rust/sedona-spatial-join/src/operand_evaluator.rs  | 561 ++++++++++++++++++---
 .../src/partitioning/stream_repartitioner.rs       | 321 +-----------
 rust/sedona-spatial-join/src/prepare.rs            |  20 +-
 rust/sedona-spatial-join/src/stream.rs             |   4 +-
 rust/sedona-spatial-join/src/utils/once_fut.rs     |   2 +-
 rust/sedona-testing/src/rasters.rs                 | 104 ++++
 32 files changed, 2373 insertions(+), 712 deletions(-)
 create mode 100644 c/sedona-gdal/src/raster/polygonize.rs
 create mode 100644 c/sedona-gdal/src/raster/rasterize.rs
 create mode 100644 c/sedona-gdal/src/raster/rasterize_affine.rs
 create mode 100644 c/sedona-gdal/src/vrt.rs
 create mode 100644 rust/sedona-spatial-join/src/join_provider.rs

Reply via email to