This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/serde_with-3.18.0
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
omit 2a3b91b5 chore(deps): bump serde_with from 1.14.0 to 3.18.0
add e49dcc18 chore(deps): bump clap from 4.5.54 to 4.5.60 (#711)
add edbd7084 feat(sedona-gdal): add geometry and spatial ref primitives
(#695)
add 175569d7 docs: Add PyPI download statistics badges to README and docs
homepage (#723)
add b66fa413 docs: Remove badges from docs homepage due to Apache CSP
restrictions (#724)
add 7a71e528 feat(c/libgpuspatial): Upgrade RAPIDS RMM to 25.12 (#718)
add dc6c40aa chore(deps): bump lz4_flex from 0.12.0 to 0.12.1 (#713)
add 38006908 chore(ci): Add round-robin reviewer auto-assignment (#720)
add 346ab2ca feat(c/sedona-libgpuspatial): Fix synchronization bugs and
improve logging (#721)
add 4fcf9edf feat(c/sedona-libgpuspatial): Improve building robustness
(#719)
add 82c1bb05 feat(c/sedona-libgpuspatial): Change the interface of
SpatialRefiner (#717)
add c5a31d60 Add ST_Relate implementation using GEOS (#691)
add 62f8376a perf(rust/sedona-spatial-join): Use row count first to decide
join order (#725)
add bc9535ab chore(deps): bump tar from 0.4.44 to 0.4.45 (#726)
add b9c2316f chore(deps): bump rustls-webpki from 0.103.8 to 0.103.10
(#727)
add 8868018d chore(deps): bump actions/github-script from 7 to 8 (#728)
add 697d0800 chore(deps): bump actions/upload-artifact from 4 to 7 (#729)
add 47dd1573 chore(deps): bump actions/checkout from 4 to 6 (#730)
add 25b47560 chore(deps): bump clap from 4.5.60 to 4.6.0 (#731)
add 2cdee61c chore(deps): bump serde_with from 1.14.0 to 3.18.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 (2a3b91b5)
\
N -- N -- N refs/heads/dependabot/cargo/serde_with-3.18.0
(2cdee61c)
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/reviewers.json | 1 +
.github/workflows/assign-reviewer-write.yml | 111 ++++++++
.github/workflows/assign-reviewer.yml | 44 ++++
Cargo.lock | 148 ++++++-----
README.md | 3 +
c/sedona-gdal/src/dyn_load.rs | 5 +
c/sedona-gdal/src/errors.rs | 16 ++
c/sedona-gdal/src/gdal_api.rs | 19 +-
c/sedona-gdal/src/gdal_dyn_bindgen.rs | 19 ++
c/sedona-gdal/src/geo_transform.rs | 152 +++++++++++
c/sedona-gdal/src/lib.rs | 4 +
c/sedona-gdal/src/spatial_ref.rs | 292 +++++++++++++++++++++
.../src/lib.rs => c/sedona-gdal/src/vector.rs | 2 +-
c/sedona-gdal/src/vector/geometry.rs | 238 +++++++++++++++++
c/sedona-gdal/src/vsi.rs | 292 +++++++++++++++++++++
c/sedona-geos/src/lib.rs | 2 +
c/sedona-geos/src/register.rs | 1 +
c/sedona-geos/src/{distance.rs => st_relate.rs} | 73 +++---
c/sedona-libgpuspatial/build.rs | 55 +++-
.../libgpuspatial/CMakeLists.txt | 5 +
.../libgpuspatial/cmake/RAPIDS.cmake | 7 +-
.../libgpuspatial/cmake/RAPIDS_VERSION | 2 +-
.../cmake/patches/rmm_race_condition.patch | 17 ++
.../libgpuspatial/cmake/thirdparty/get_rmm.cmake | 29 ++
.../include/gpuspatial/geom/polygon.hpp | 1 +
.../include/gpuspatial/gpuspatial_c.h | 14 +-
.../include/gpuspatial/index/rt_spatial_index.cuh | 10 +-
.../gpuspatial/refine/rt_spatial_refiner.cuh | 9 +-
.../include/gpuspatial/utils/gpu_timer.hpp | 57 ----
.../include/gpuspatial/utils/stopwatch.hpp | 5 +-
.../libgpuspatial/src/gpuspatial_c.cc | 38 ++-
.../libgpuspatial/src/memory_manager.cc | 17 +-
.../libgpuspatial/src/relate_engine.cu | 19 +-
.../libgpuspatial/src/rt_spatial_index.cu | 129 +++++----
.../libgpuspatial/src/rt_spatial_refiner.cu | 77 ++++--
.../libgpuspatial/test/c_wrapper_test.cc | 10 +-
c/sedona-libgpuspatial/src/lib.rs | 16 +-
c/sedona-libgpuspatial/src/libgpuspatial.rs | 26 +-
dev/release/rat_exclude_files.txt | 1 +
docs/index.md | 1 +
.../sql/{st_coveredby.qmd => st_relate.qmd} | 20 +-
python/sedonadb/tests/functions/test_predicates.py | 53 ++++
.../src/planner/physical_planner.rs | 34 ++-
.../tests/spatial_join_integration.rs | 280 +++++++++++++++++++-
sedona-cli/Cargo.toml | 2 +-
45 files changed, 2008 insertions(+), 348 deletions(-)
create mode 100644 .github/reviewers.json
create mode 100644 .github/workflows/assign-reviewer-write.yml
create mode 100644 .github/workflows/assign-reviewer.yml
create mode 100644 c/sedona-gdal/src/geo_transform.rs
create mode 100644 c/sedona-gdal/src/spatial_ref.rs
copy rust/sedona-pointcloud/src/lib.rs => c/sedona-gdal/src/vector.rs (97%)
create mode 100644 c/sedona-gdal/src/vector/geometry.rs
create mode 100644 c/sedona-gdal/src/vsi.rs
copy c/sedona-geos/src/{distance.rs => st_relate.rs} (61%)
create mode 100644
c/sedona-libgpuspatial/libgpuspatial/cmake/patches/rmm_race_condition.patch
delete mode 100644
c/sedona-libgpuspatial/libgpuspatial/include/gpuspatial/utils/gpu_timer.hpp
copy docs/reference/sql/{st_coveredby.qmd => st_relate.qmd} (70%)