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 72401359 chore(deps): bump object_store from 0.12.4 to 0.13.0
     add c25a377f perf: Implement method to directly write GeosGeometry into 
buffer and use on st_unaryunion + st_buffer (#476)
     add e80fb37b feat(r/sedonadb): Translate R expressions to DataFusion 
logical Expr (#468)
     add 68970b02 fix: require comfy-table 7.2+ for set_truncation_indicator 
method (#486)
     add afdca4e2 chore(r/sedonadb): Bump savvy to v0.9.2 (#494)
     add a0d3a066 perf: Write wkb directly from geos for st_boundary, centroid, 
concavehull, convexhull, simplify, snap (#493)
     add b254e8d8 chore(r): Add air format + lintr checks to R package (#495)
     add 221eef84 chore(deps): bump lru from 0.12.5 to 0.16.3 (#496)
     add 180741c9 chore(ci): Add MacOS Intel wheel build (#497)
     add 988aea54 chore(ci): Add intel MacOS wheels to gemfury upload (#500)
     add 03823577 feat(rust/sedona): Add Azure Blob Storage support for 
GeoParquet (#479)
     add c49da9ed 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   (72401359)
            \
             N -- N -- N   refs/heads/dependabot/cargo/object_store-0.13.0 
(c49da9ed)

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                     |  11 +-
 .github/workflows/python-wheels.yml                |  59 ++-
 .github/workflows/r.yml                            |   8 +
 .pre-commit-config.yaml                            |   4 +-
 Cargo.lock                                         | 366 ++++++++-------
 Cargo.toml                                         |   7 +-
 c/sedona-geos/Cargo.toml                           |   1 +
 c/sedona-geos/benches/geos-functions.rs            |  25 +-
 c/sedona-geos/src/geos_to_wkb.rs                   | 516 +++++++++++++++++++++
 c/sedona-geos/src/lib.rs                           |   1 +
 c/sedona-geos/src/st_boundary.rs                   |   7 +-
 c/sedona-geos/src/st_buffer.rs                     |   7 +-
 c/sedona-geos/src/st_centroid.rs                   |   7 +-
 c/sedona-geos/src/st_concavehull.rs                |   7 +-
 c/sedona-geos/src/st_convexhull.rs                 |   7 +-
 c/sedona-geos/src/st_simplify.rs                   |  18 +-
 c/sedona-geos/src/st_snap.rs                       |  24 +-
 c/sedona-geos/src/st_unaryunion.rs                 |  13 +-
 ...ease.cmake => x86-64-osx-dynamic-release.cmake} |   4 +-
 ci/scripts/wheels-build-macos.sh                   |   8 +-
 dev/release/rat_exclude_files.txt                  |   1 +
 examples/sedonadb-rust/Cargo.toml                  |   2 +-
 python/sedonadb/tests/functions/test_functions.py  |  99 ++++
 python/sedonadb/tests/test_context.py              |  17 +
 r/{sedonadb/cleanup => air.toml}                   |   3 +-
 r/sedonadb/.Rbuildignore                           |   1 +
 .../coverage.sh => r/sedonadb/.gitattributes       |   6 +-
 .../functions/.gitignore => r/sedonadb/.lintr.R    |  11 +-
 r/sedonadb/DESCRIPTION                             |   2 +
 r/sedonadb/NAMESPACE                               |  22 +
 r/sedonadb/R/000-wrappers.R                        | 288 +++++++++++-
 r/sedonadb/R/adbc.R                                |   4 +-
 r/sedonadb/R/context.R                             |  24 +-
 r/sedonadb/R/dataframe.R                           |  25 +-
 r/sedonadb/R/expression.R                          | 305 ++++++++++++
 r/sedonadb/R/literal.R                             |  98 ++++
 r/sedonadb/R/pkg-dplyr.R                           |   2 +
 r/sedonadb/R/pkg-sf.R                              |   7 +-
 r/sedonadb/R/zzz.R                                 |  16 +-
 r/sedonadb/man/as_sedonadb_literal.Rd              |  30 ++
 r/sedonadb/man/sd_expr_column.Rd                   |  82 ++++
 r/sedonadb/src/init.c                              |  98 +++-
 r/sedonadb/src/rust/api.h                          |  24 +
 r/sedonadb/src/rust/src/expression.rs              | 199 ++++++++
 r/sedonadb/src/rust/src/ffi.rs                     |  24 +-
 r/sedonadb/src/rust/src/lib.rs                     |   1 +
 r/sedonadb/tests/testthat/_snaps/expression.md     | 170 +++++++
 r/sedonadb/tests/testthat/_snaps/literal.md        |   8 +
 r/sedonadb/tests/testthat/test-adbc.R              |   2 +-
 r/sedonadb/tests/testthat/test-expression.R        |  80 ++++
 .../sedonadb/tests/testthat/test-lint.R            |   6 +-
 r/sedonadb/tests/testthat/test-literal.R           |  61 +++
 r/sedonadb/tools/savvy-update.sh                   |  95 ++++
 rust/sedona-geoparquet/src/metadata.rs             |   5 +
 rust/sedona-geoparquet/src/provider.rs             |  60 ++-
 rust/sedona/Cargo.toml                             |   3 +-
 rust/sedona/src/object_storage.rs                  | 261 +++++++++++
 57 files changed, 2931 insertions(+), 311 deletions(-)
 create mode 100644 c/sedona-geos/src/geos_to_wkb.rs
 copy ci/scripts/custom-triplets/{arm64-osx-dynamic-release.cmake => 
x86-64-osx-dynamic-release.cmake} (93%)
 copy r/{sedonadb/cleanup => air.toml} (96%)
 mode change 100755 => 100644
 copy ci/scripts/coverage.sh => r/sedonadb/.gitattributes (88%)
 mode change 100755 => 100644
 copy docs/reference/functions/.gitignore => r/sedonadb/.lintr.R (85%)
 create mode 100644 r/sedonadb/R/expression.R
 create mode 100644 r/sedonadb/R/literal.R
 create mode 100644 r/sedonadb/man/as_sedonadb_literal.Rd
 create mode 100644 r/sedonadb/man/sd_expr_column.Rd
 create mode 100644 r/sedonadb/src/rust/src/expression.rs
 create mode 100644 r/sedonadb/tests/testthat/_snaps/expression.md
 create mode 100644 r/sedonadb/tests/testthat/_snaps/literal.md
 create mode 100644 r/sedonadb/tests/testthat/test-expression.R
 copy ci/scripts/.gitignore => r/sedonadb/tests/testthat/test-lint.R (88%)
 create mode 100644 r/sedonadb/tests/testthat/test-literal.R
 create mode 100755 r/sedonadb/tools/savvy-update.sh

Reply via email to