This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/float_next_after-2.0.0
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
omit 48036cd9 chore(deps): bump float_next_after from 1.0.0 to 2.0.0
add 67f34765 feat(rust/sedona-spatial-join): Auto-repartition probe side
for balancing spatial join workload (#610)
add 3a6dc71e feat(rust/sedona-raster-functions): add RS_NumBands function
(#602)
add 7eac903e feat(rust/sedona-raster-functions): add RS_GeoReference
function (#601)
add 54de4228 chore(deps): bump tempfile from 3.24.0 to 3.25.0 (#627)
add 73dfe74c chore(deps): bump glam from 0.31.0 to 0.32.0 (#624)
new 13555b0a chore(deps): bump float_next_after from 1.0.0 to 2.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 (48036cd9)
\
N -- N -- N refs/heads/dependabot/cargo/float_next_after-2.0.0
(13555b0a)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Cargo.lock | 10 +-
Cargo.toml | 2 +-
rust/sedona-common/src/option.rs | 5 +
.../benches/native-raster-functions.rs | 9 +
rust/sedona-raster-functions/src/lib.rs | 2 +
rust/sedona-raster-functions/src/register.rs | 2 +
.../sedona-raster-functions/src/rs_georeference.rs | 329 +++++++++++++++++++++
rust/sedona-raster-functions/src/rs_numbands.rs | 126 ++++++++
.../src/planner/physical_planner.rs | 71 ++++-
9 files changed, 549 insertions(+), 7 deletions(-)
create mode 100644 rust/sedona-raster-functions/src/rs_georeference.rs
create mode 100644 rust/sedona-raster-functions/src/rs_numbands.rs