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 c49da9ed chore(deps): bump object_store from 0.12.4 to 0.13.0
     add af5e9479 feat(rust/sedona-functions,rust/sedona-geo): Add item CRS 
implementations for existing scalar kernels that can be trivially wrapped (#492)
     add edcb9094 feat(rust/sedona-functions): Implement ST_GeomFromEWKT (#498)
     add c259361b feat(rust/sedona-geos): Implement ST_LineMerge() (#503)
     add 9bf02f47 perf: Use write_geos_geometry() for makevalid, 
minimumclearance_line, polygonize, simplifypreservetopology, and overlays (#502)
     add 3f4acd0f feat(rust/sedona-functions): Implement ST_Affine(), 
ST_Rotate(), and ST_Scale() (#504)
     add 45d70ed8 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   (c49da9ed)
            \
             N -- N -- N   refs/heads/dependabot/cargo/object_store-0.13.0 
(45d70ed8)

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                                         |   7 +
 Cargo.toml                                         |   1 +
 .../benches/geoarrow_c-functions.rs                |   2 +-
 c/sedona-geoarrow-c/src/kernels.rs                 |  12 +-
 c/sedona-geos/benches/geos-functions.rs            |  25 +-
 c/sedona-geos/src/binary_predicates.rs             |  20 +-
 c/sedona-geos/src/distance.rs                      |   2 +-
 c/sedona-geos/src/lib.rs                           |   1 +
 c/sedona-geos/src/overlay.rs                       |  18 +-
 c/sedona-geos/src/register.rs                      |   2 +
 c/sedona-geos/src/st_area.rs                       |   2 +-
 c/sedona-geos/src/st_boundary.rs                   |   2 +-
 c/sedona-geos/src/st_buffer.rs                     |   8 +-
 c/sedona-geos/src/st_centroid.rs                   |   2 +-
 c/sedona-geos/src/st_concavehull.rs                |   5 +-
 c/sedona-geos/src/st_convexhull.rs                 |   2 +-
 c/sedona-geos/src/st_dwithin.rs                    |   2 +-
 c/sedona-geos/src/st_isring.rs                     |   2 +-
 c/sedona-geos/src/st_issimple.rs                   |   2 +-
 c/sedona-geos/src/st_isvalid.rs                    |   2 +-
 c/sedona-geos/src/st_isvalidreason.rs              |   2 +-
 c/sedona-geos/src/st_length.rs                     |   2 +-
 c/sedona-geos/src/st_line_merge.rs                 | 181 +++++
 c/sedona-geos/src/st_makevalid.rs                  |  11 +-
 c/sedona-geos/src/st_minimumclearance.rs           |   2 +-
 c/sedona-geos/src/st_minimumclearance_line.rs      |  13 +-
 c/sedona-geos/src/st_nrings.rs                     |   2 +-
 c/sedona-geos/src/st_numinteriorrings.rs           |   2 +-
 c/sedona-geos/src/st_numpoints.rs                  |   2 +-
 c/sedona-geos/src/st_perimeter.rs                  |   2 +-
 c/sedona-geos/src/st_polygonize.rs                 |  11 +-
 c/sedona-geos/src/st_simplify.rs                   |  20 +-
 c/sedona-geos/src/st_simplifypreservetopology.rs   |  10 +-
 c/sedona-geos/src/st_snap.rs                       |   2 +-
 c/sedona-geos/src/st_unaryunion.rs                 |   2 +-
 c/sedona-proj/benches/proj-functions.rs            |   2 +-
 c/sedona-proj/src/sd_order_lnglat.rs               |   4 +-
 c/sedona-proj/src/st_transform.rs                  |   5 +-
 .../benches/s2geography-functions.rs               |   4 +-
 c/sedona-s2geography/src/scalar_kernel.rs          |  42 +-
 c/sedona-tg/benches/tg-functions.rs                |   2 +-
 c/sedona-tg/src/binary_predicate.rs                |   8 +-
 python/sedonadb/tests/functions/test_functions.py  | 362 +++++++++
 rust/sedona-expr/src/function_set.rs               |  14 +-
 rust/sedona-expr/src/item_crs.rs                   |  60 +-
 rust/sedona-expr/src/scalar_udf.rs                 |  56 +-
 rust/sedona-functions/Cargo.toml                   |   1 +
 rust/sedona-functions/src/lib.rs                   |   5 +
 rust/sedona-functions/src/register.rs              |   7 +
 rust/sedona-functions/src/st_affine.rs             | 453 +++++++++++
 rust/sedona-functions/src/st_affine_helpers.rs     | 634 ++++++++++++++++
 rust/sedona-functions/src/st_asbinary.rs           |  20 +-
 rust/sedona-functions/src/st_astext.rs             |  12 +-
 rust/sedona-functions/src/st_azimuth.rs            |  15 +-
 rust/sedona-functions/src/st_dimension.rs          |  19 +-
 rust/sedona-functions/src/st_envelope.rs           |  18 +-
 rust/sedona-functions/src/st_flipcoordinates.rs    |  19 +-
 rust/sedona-functions/src/st_geometryn.rs          |  26 +-
 rust/sedona-functions/src/st_geometrytype.rs       |  19 +-
 rust/sedona-functions/src/st_geomfromwkt.rs        | 177 ++++-
 rust/sedona-functions/src/st_haszm.rs              |  21 +-
 rust/sedona-functions/src/st_interiorringn.rs      |  26 +-
 rust/sedona-functions/src/st_isclosed.rs           |  15 +-
 rust/sedona-functions/src/st_iscollection.rs       |  19 +-
 rust/sedona-functions/src/st_isempty.rs            |  19 +-
 .../src/{st_centroid.rs => st_line_merge.rs}       |  28 +-
 rust/sedona-functions/src/st_makeline.rs           |  23 +-
 rust/sedona-functions/src/st_numgeometries.rs      |  19 +-
 rust/sedona-functions/src/st_pointn.rs             | 580 +++++++-------
 rust/sedona-functions/src/st_points.rs             | 834 +++++++++++----------
 rust/sedona-functions/src/st_reverse.rs            |  16 +-
 rust/sedona-functions/src/st_rotate.rs             | 261 +++++++
 rust/sedona-functions/src/st_scale.rs              | 348 +++++++++
 rust/sedona-functions/src/st_setsrid.rs            |   6 +-
 rust/sedona-functions/src/st_srid.rs               |   8 +-
 rust/sedona-functions/src/st_start_point.rs        | 612 +++++++--------
 rust/sedona-functions/src/st_translate.rs          |  32 +-
 rust/sedona-functions/src/st_xyzm.rs               |  20 +-
 rust/sedona-functions/src/st_xyzm_minmax.rs        |  44 +-
 rust/sedona-functions/src/st_zmflag.rs             |  19 +-
 rust/sedona-geo/benches/geo-functions.rs           |   2 +-
 rust/sedona-geo/src/register.rs                    |  62 +-
 rust/sedona-geo/src/st_area.rs                     |  18 +-
 rust/sedona-geo/src/st_asgeojson.rs                |  32 +-
 rust/sedona-geo/src/st_buffer.rs                   |  29 +-
 rust/sedona-geo/src/st_centroid.rs                 |  26 +-
 rust/sedona-geo/src/st_concavehull.rs              |  24 +-
 rust/sedona-geo/src/st_distance.rs                 |  17 +-
 rust/sedona-geo/src/st_dwithin.rs                  |  21 +-
 rust/sedona-geo/src/st_intersects.rs               |  15 +-
 rust/sedona-geo/src/st_length.rs                   |  18 +-
 rust/sedona-geo/src/st_line_interpolate_point.rs   |  30 +-
 rust/sedona-geo/src/st_perimeter.rs                |  20 +-
 rust/sedona-geometry/src/transform.rs              | 108 ++-
 rust/sedona-schema/src/datatypes.rs                |  14 +
 rust/sedona-spatial-join/src/exec.rs               |   2 +-
 rust/sedona/src/context.rs                         |  12 +-
 97 files changed, 4367 insertions(+), 1400 deletions(-)
 create mode 100644 c/sedona-geos/src/st_line_merge.rs
 create mode 100644 rust/sedona-functions/src/st_affine.rs
 create mode 100644 rust/sedona-functions/src/st_affine_helpers.rs
 copy rust/sedona-functions/src/{st_centroid.rs => st_line_merge.rs} (68%)
 create mode 100644 rust/sedona-functions/src/st_rotate.rs
 create mode 100644 rust/sedona-functions/src/st_scale.rs

Reply via email to