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

github-bot pushed a change to branch dependabot/cargo/main/object_store-0.12.4
in repository https://gitbox.apache.org/repos/asf/datafusion-python.git


    omit b2a6551e build(deps): bump object_store from 0.12.3 to 0.12.4
     add 0154c031 CHANGES to review
     add 709c918e REVERT CHANGES to commit
     add e75addfa macos-13 is deprecated (#1259)
     add af1c07b7 Freeze PyO3 wrappers & introduce interior mutability to avoid 
PyO3 borrow errors (#1253)
     add 09c90019 build(deps): bump object_store from 0.12.3 to 0.12.4

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   (b2a6551e)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/object_store-0.12.4 
(09c90019)

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/build.yml                    |   2 +-
 Cargo.lock                                     |   1 +
 Cargo.toml                                     |   1 +
 docs/source/contributor-guide/ffi.rst          |  61 ++++++++++++
 docs/source/contributor-guide/introduction.rst |   4 +
 pyproject.toml                                 |   3 +
 python/tests/test_concurrency.py               | 126 +++++++++++++++++++++++++
 python/tests/test_expr.py                      |  93 ++++++++++++++++++
 python/tests/test_pyclass_frozen.py            | 104 ++++++++++++++++++++
 src/catalog.rs                                 |   6 +-
 src/common/data_type.rs                        |  17 +++-
 src/common/df_schema.rs                        |   2 +-
 src/common/function.rs                         |   2 +-
 src/common/schema.rs                           |  94 ++++++++++++------
 src/config.rs                                  |  57 ++++++-----
 src/context.rs                                 |   6 +-
 src/dataframe.rs                               |  42 ++++++---
 src/expr.rs                                    |   4 +-
 src/expr/aggregate.rs                          |   2 +-
 src/expr/aggregate_expr.rs                     |   7 +-
 src/expr/alias.rs                              |   2 +-
 src/expr/analyze.rs                            |   2 +-
 src/expr/between.rs                            |   2 +-
 src/expr/binary_expr.rs                        |   2 +-
 src/expr/bool_expr.rs                          |  20 ++--
 src/expr/case.rs                               |   2 +-
 src/expr/cast.rs                               |   2 +-
 src/expr/column.rs                             |   2 +-
 src/expr/conditional_expr.rs                   |  64 ++++++++-----
 src/expr/copy_to.rs                            |   4 +-
 src/expr/create_catalog.rs                     |   2 +-
 src/expr/create_catalog_schema.rs              |   7 +-
 src/expr/create_external_table.rs              |   7 +-
 src/expr/create_function.rs                    |  18 +++-
 src/expr/create_index.rs                       |   2 +-
 src/expr/create_memory_table.rs                |   7 +-
 src/expr/create_view.rs                        |   2 +-
 src/expr/describe_table.rs                     |   2 +-
 src/expr/distinct.rs                           |   2 +-
 src/expr/dml.rs                                |   2 +-
 src/expr/drop_catalog_schema.rs                |   7 +-
 src/expr/drop_function.rs                      |   2 +-
 src/expr/drop_table.rs                         |   2 +-
 src/expr/drop_view.rs                          |   2 +-
 src/expr/empty_relation.rs                     |   2 +-
 src/expr/exists.rs                             |   2 +-
 src/expr/explain.rs                            |   2 +-
 src/expr/extension.rs                          |   2 +-
 src/expr/filter.rs                             |   2 +-
 src/expr/grouping_set.rs                       |   2 +-
 src/expr/in_list.rs                            |   2 +-
 src/expr/in_subquery.rs                        |   2 +-
 src/expr/indexed_field.rs                      |   2 +-
 src/expr/join.rs                               |   6 +-
 src/expr/like.rs                               |   6 +-
 src/expr/limit.rs                              |   2 +-
 src/expr/literal.rs                            |   6 +-
 src/expr/placeholder.rs                        |   2 +-
 src/expr/projection.rs                         |   2 +-
 src/expr/recursive_query.rs                    |   2 +-
 src/expr/repartition.rs                        |   4 +-
 src/expr/scalar_subquery.rs                    |   2 +-
 src/expr/scalar_variable.rs                    |   2 +-
 src/expr/signature.rs                          |   2 +-
 src/expr/sort.rs                               |   2 +-
 src/expr/sort_expr.rs                          |   2 +-
 src/expr/statement.rs                          |  34 +++++--
 src/expr/subquery.rs                           |   2 +-
 src/expr/subquery_alias.rs                     |   2 +-
 src/expr/table_scan.rs                         |   2 +-
 src/expr/union.rs                              |   2 +-
 src/expr/unnest.rs                             |   2 +-
 src/expr/unnest_expr.rs                        |   2 +-
 src/expr/values.rs                             |   2 +-
 src/expr/window.rs                             |  11 ++-
 src/functions.rs                               |   8 +-
 src/physical_plan.rs                           |   2 +-
 src/record_batch.rs                            |   8 +-
 src/sql/logical.rs                             |   2 +-
 src/store.rs                                   |  15 ++-
 src/substrait.rs                               |   8 +-
 src/udaf.rs                                    |   2 +-
 src/udf.rs                                     |   2 +-
 src/udtf.rs                                    |   2 +-
 src/udwf.rs                                    |   2 +-
 src/unparser/dialect.rs                        |   2 +-
 src/unparser/mod.rs                            |   2 +-
 87 files changed, 762 insertions(+), 210 deletions(-)
 create mode 100644 python/tests/test_concurrency.py
 create mode 100644 python/tests/test_pyclass_frozen.py


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to