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.0
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
discard 79f1fd33 chore(deps): bump object_store from 0.12.4 to 0.13.0
add 109e7726 feat(rust/sedona-geo): Add ST_AsGeoJSON (#469)
add a43c9fc6 fix(rust/sedona-functions): Let `ST_Collect_Agg()` on a
Geography return a Geography (#467)
add c4ad8c93 chore(rust/sedona-functions): Make ST_Transform not accept
geography (#478)
add 4e073470 chore: Update to Arrow 57, DataFusion 50 (#466)
add 72401359 chore(deps): bump object_store from 0.12.4 to 0.13.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 (79f1fd33)
\
N -- N -- N refs/heads/dependabot/cargo/object_store-0.13.0
(72401359)
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/examples.yml | 2 +-
.github/workflows/packaging.yml | 2 +-
.github/workflows/python-wheels.yml | 2 +-
.github/workflows/python.yml | 4 +-
.github/workflows/r.yml | 2 +-
.github/workflows/rust-gpu.yml | 4 +-
.github/workflows/rust.yml | 4 +-
Cargo.lock | 735 +++++++++++++--------
Cargo.toml | 57 +-
c/sedona-libgpuspatial/build.rs | 4 +-
c/sedona-proj/src/st_transform.rs | 2 +-
c/sedona-s2geography/s2geography | 2 +-
python/sedonadb/tests/functions/test_functions.py | 47 ++
python/sedonadb/tests/test_sjoin.py | 2 +-
r/sedonadb/src/Makevars.win.in | 2 +-
r/sedonadb/src/rust/src/dataframe.rs | 5 +-
rust/sedona-datasource/src/format.rs | 17 +-
rust/sedona-functions/Cargo.toml | 2 +-
rust/sedona-functions/src/barrier.rs | 2 +-
rust/sedona-functions/src/lib.rs | 1 +
rust/sedona-functions/src/register.rs | 1 +
.../src/{st_area.rs => st_asgeojson.rs} | 25 +-
rust/sedona-functions/src/st_collect_agg.rs | 27 +-
rust/sedona-functions/src/st_dump.rs | 2 +-
rust/sedona-functions/src/st_transform.rs | 11 +-
rust/sedona-geo/Cargo.toml | 2 +
rust/sedona-geo/src/lib.rs | 1 +
rust/sedona-geo/src/register.rs | 5 +-
rust/sedona-geo/src/st_asgeojson.rs | 196 ++++++
rust/sedona-geoparquet/src/file_opener.rs | 16 +-
rust/sedona-geoparquet/src/format.rs | 11 +-
rust/sedona-raster-functions/src/rs_srid.rs | 8 +-
rust/sedona-schema/src/crs.rs | 2 +-
rust/sedona-spatial-join/Cargo.toml | 3 +-
.../bench/partitioning/common.rs | 8 +-
rust/sedona-spatial-join/bench/partitioning/kdb.rs | 8 +-
rust/sedona-spatial-join/src/exec.rs | 4 +-
rust/sedona-spatial-join/src/utils/bbox_sampler.rs | 28 +-
rust/sedona-testing/src/benchmark_util.rs | 13 +-
rust/sedona-testing/src/datagen.rs | 222 ++++---
rust/sedona-testing/src/testers.rs | 1 +
rust/sedona/Cargo.toml | 3 +-
rust/sedona/src/context.rs | 20 +-
rust/sedona/src/random_geometry_provider.rs | 2 +-
sedona-cli/src/exec.rs | 2 +-
sedona-cli/src/helper.rs | 21 +-
46 files changed, 997 insertions(+), 543 deletions(-)
copy rust/sedona-functions/src/{st_area.rs => st_asgeojson.rs} (71%)
create mode 100644 rust/sedona-geo/src/st_asgeojson.rs