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

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


 discard 98438eb7 chore(deps): bump the arrow-parquet group with 8 updates
     add 48bd135b fix(python/sedonadb): Ensure global Parquet options are 
considered on write (#367)
     add c50de9a5 fix(rust/sedona-geoparquet): Ensure reading a Parquet file 
that doesn't exist errors (#366)
     add 2afc1b9b feat(rust/sedona-functions): Implement ordering framework 
that includes geometry/geography (#360)
     add 90f29892 fix(python/sedonadb): Fix GDAL/OGR read on Windows (#371)
     add 92e7fcb1 docs(rust/sedona-functions): Fix minor typos in function 
description (#374)
     add 2a21c38e chore(ci): Add s2geography to default Windows Python wheel 
build (#372)
     add 7f26ab65 feat(rust/sedona-functions): Implement ST_Reverse using 
geo-traits (#363)
     add c5c51586 chore(rust,c): Run cargo clippy --fix (#373)
     add 16d232be chore(dev/release): Ensure release verification passes for 
0.2.0 (#375)
     add 17e1782c chore(docs): Update mkdocs for latest mkdocstrings (#382)
     add 9dde759f feat(c/sedona-geos): Add ST_NumInteriorRings (#369)
     add 044dc062 fix(rust/sedona-expr): Resolve filter expression bounding box 
by name and not by index (#384)
     add afad3ad8 docs(r/sedonadb): Minor fix to remove an unintentional 
cross-ref (#390)
     add 21464d70 feat(c/sedona-geos): Implement ST_NumPoints (#386)
     add 26ef41e2 chore(deps): bump the arrow-parquet group with 8 updates

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   (98438eb7)
            \
             N -- N -- N   refs/heads/dependabot/cargo/arrow-parquet-a72645d6ac 
(26ef41e2)

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:
 benchmarks/test_functions.py                       |  18 +
 c/sedona-geos/src/lib.rs                           |   3 +-
 c/sedona-geos/src/register.rs                      |   6 +-
 c/sedona-geos/src/st_minimumclearance_line.rs      |   4 +-
 c/sedona-geos/src/st_numinteriorrings.rs           | 154 +++++++
 c/sedona-geos/src/st_numpoints.rs                  | 134 +++++++
 c/sedona-geos/src/st_polygonize_agg.rs             |   2 +-
 c/sedona-geos/src/st_reverse.rs                    | 134 -------
 c/sedona-proj/src/lib.rs                           |   1 +
 c/sedona-proj/src/sd_order_lnglat.rs               | 205 ++++++++++
 c/sedona-proj/src/st_transform.rs                  |   4 +-
 c/sedona-s2geography/src/geography_glue.cc         |   8 +
 c/sedona-s2geography/src/geography_glue.h          |   2 +
 c/sedona-s2geography/src/geography_glue_bindgen.rs |   1 +
 c/sedona-s2geography/src/s2geography.rs            |  26 ++
 ci/scripts/wheels-build-windows.ps1                |   2 +
 dev/release/README.md                              |  48 +--
 dev/release/verify-release-candidate.sh            |   2 -
 mkdocs.yml                                         |   1 -
 python/sedonadb/python/sedonadb/__init__.py        |   2 +
 python/sedonadb/python/sedonadb/datasource.py      |  10 +-
 python/sedonadb/src/dataframe.rs                   |  12 +
 python/sedonadb/src/datasource.rs                  |   4 +-
 python/sedonadb/src/lib.rs                         |  13 +
 python/sedonadb/tests/functions/test_functions.py  |  76 ++++
 python/sedonadb/tests/functions/test_order.py      |  53 +++
 python/sedonadb/tests/io/test_parquet.py           |  23 ++
 r/sedonadb/DESCRIPTION                             |   2 +-
 r/sedonadb/R/dataframe.R                           |   2 +-
 r/sedonadb/man/sd_write_parquet.Rd                 |   2 +-
 r/sedonadb/src/rust/src/dataframe.rs               |  12 +
 rust/sedona-expr/src/spatial_filter.rs             |  26 +-
 rust/sedona-functions/benches/native-functions.rs  |   3 +
 rust/sedona-functions/src/executor.rs              |   3 +-
 rust/sedona-functions/src/lib.rs                   |   2 +
 rust/sedona-functions/src/register.rs              |   2 +
 rust/sedona-functions/src/sd_order.rs              | 118 ++++++
 rust/sedona-functions/src/st_analyze_agg.rs        |   2 +-
 rust/sedona-functions/src/st_length.rs             |   2 +-
 rust/sedona-functions/src/st_reverse.rs            | 442 +++++++++++++++++++++
 rust/sedona-geometry/src/types.rs                  |   9 +-
 rust/sedona-geoparquet/src/format.rs               |  16 +
 rust/sedona-geoparquet/src/provider.rs             |  12 +
 rust/sedona-raster/src/array.rs                    |   6 +-
 rust/sedona-raster/src/builder.rs                  |   3 +-
 rust/sedona-schema/src/crs.rs                      |  37 ++
 rust/sedona-spatial-join/src/build_index.rs        |   2 +-
 rust/sedona/src/context.rs                         |  18 +-
 48 files changed, 1463 insertions(+), 206 deletions(-)
 create mode 100644 c/sedona-geos/src/st_numinteriorrings.rs
 create mode 100644 c/sedona-geos/src/st_numpoints.rs
 delete mode 100644 c/sedona-geos/src/st_reverse.rs
 create mode 100644 c/sedona-proj/src/sd_order_lnglat.rs
 create mode 100644 python/sedonadb/tests/functions/test_order.py
 create mode 100644 rust/sedona-functions/src/sd_order.rs
 create mode 100644 rust/sedona-functions/src/st_reverse.rs

Reply via email to