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

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


 discard 943b9e27 chore(deps): bump rand from 0.8.5 to 0.9.2
     add d3e85f94 chore(deps): bump actions/upload-artifact from 4 to 5 (#333)
     add 1cc66e09 chore(deps): bump actions/download-artifact from 4 to 6 (#334)
     add 25a8d857 chore(deps): bump actions/checkout from 4 to 6 (#335)
     add 46bc24c1 chore(deps): bump actions/setup-python from 4 to 6 (#336)
     add f1ae8598 chore: add notice (#353)
     add 00c18cdd chore(ci): ci checks support cargo fmt (#354)
     add 133e1adf chore: update geo-index to use version 0.3.2 (#355)
     add ed81b0ec feat(c/sedona-geos): Implement st_polygonize for scalar 
inputs (#328)
     add 62776739 feat(python/sedonadb): Implement GDAL/OGR formats via pyogrio 
(#283)
     add 903ffbdb feat(examples/sedonadb-rust): Add example Rust project (#320)
     add 9a66741a chore(python/sedonadb): Add README to PyPI index page (#327)
     add 240898d4 docs: update overture date (#361)
     add be2133b6 chore(deps): bump actions/checkout from v4 to v6 (#365)
     add 45466e9b chore(deps): bump rand_distr from 0.4.3 to 0.5.1 (#340)
     add 79cada0c chore(deps): bump rstest from 0.24.0 to 0.26.1 (#341)
     add 11c0f74a chore(deps): bump rand from 0.8.5 to 0.9.2

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   (943b9e27)
            \
             N -- N -- N   refs/heads/dependabot/cargo/rand-0.9.2 (11c0f74a)

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/dev.yml                          |   4 +-
 .github/workflows/{r-extended.yml => examples.yml} |  81 +++--
 .github/workflows/packaging.yml                    |  14 +-
 .github/workflows/python-wheels.yml                |  24 +-
 .github/workflows/python.yml                       |   6 +-
 .github/workflows/r-extended.yml                   |   2 +-
 .github/workflows/r.yml                            |   2 +-
 .github/workflows/rust.yml                         |  10 +-
 Cargo.lock                                         |  83 ++---
 Cargo.toml                                         |  12 +-
 NOTICE                                             |   5 +
 README.md                                          |  34 +-
 c/sedona-geos/src/lib.rs                           |   1 +
 c/sedona-geos/src/register.rs                      |   2 +
 c/sedona-geos/src/st_polygonize.rs                 | 147 ++++++++
 docs/overture-examples.ipynb                       | 172 +++++----
 docs/overture-examples.md                          | 106 ++++--
 docs/programming-guide.ipynb                       |  46 +--
 docs/programming-guide.md                          |  24 +-
 {ci/scripts/windows => examples}/.gitignore        |   2 +-
 .../windows => examples/sedonadb-rust}/Cargo.toml  |  24 +-
 {docs => examples/sedonadb-rust}/README.md         |  28 +-
 .../build.rs => examples/sedonadb-rust/src/main.rs |  19 +-
 python/sedonadb/Cargo.toml                         |   2 +
 .../python.md => python/sedonadb/README.md         |  25 +-
 python/sedonadb/pyproject.toml                     |   1 +
 python/sedonadb/python/sedonadb/context.py         |  68 ++++
 python/sedonadb/python/sedonadb/datasource.py      | 194 +++++++++++
 python/sedonadb/src/context.rs                     |  21 ++
 python/sedonadb/src/datasource.rs                  | 388 +++++++++++++++++++++
 python/sedonadb/src/lib.rs                         |   3 +
 python/sedonadb/src/schema.rs                      |  15 +
 python/sedonadb/tests/functions/test_functions.py  |  47 +++
 python/sedonadb/tests/test_datasource.py           | 135 +++++++
 rust/sedona-datasource/Cargo.toml                  |   2 +
 rust/sedona-datasource/src/format.rs               |   6 +-
 rust/sedona-datasource/src/lib.rs                  |   1 +
 rust/sedona-datasource/src/spec.rs                 | 156 ++++++++-
 rust/sedona-datasource/src/utility.rs              | 145 ++++++++
 rust/sedona-expr/src/spatial_filter.rs             |  96 ++++-
 rust/sedona-geo-generic-alg/Cargo.toml             |   2 +-
 rust/sedona-geometry/src/bounding_box.rs           |  71 +++-
 rust/sedona-geometry/src/interval.rs               | 270 +++++++++++++-
 rust/sedona-spatial-join/src/index/knn_adapter.rs  |   2 +-
 rust/sedona/Cargo.toml                             |   1 +
 rust/sedona/src/context.rs                         | 167 ++++++++-
 46 files changed, 2324 insertions(+), 342 deletions(-)
 copy .github/workflows/{r-extended.yml => examples.yml} (54%)
 create mode 100644 NOTICE
 create mode 100644 c/sedona-geos/src/st_polygonize.rs
 copy {ci/scripts/windows => examples}/.gitignore (98%)
 copy {ci/scripts/windows => examples/sedonadb-rust}/Cargo.toml (58%)
 copy {docs => examples/sedonadb-rust}/README.md (50%)
 copy c/sedona-proj/build.rs => examples/sedonadb-rust/src/main.rs (50%)
 copy docs/reference/python.md => python/sedonadb/README.md (62%)
 create mode 100644 python/sedonadb/python/sedonadb/datasource.py
 create mode 100644 python/sedonadb/src/datasource.rs
 create mode 100644 python/sedonadb/tests/test_datasource.py
 create mode 100644 rust/sedona-datasource/src/utility.rs

Reply via email to