You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by gi...@apache.org on 2022/12/21 21:34:55 UTC

[arrow-rs] branch dependabot/cargo/master/multiversion-0.7.0 updated (38b04361b -> ab096ae4f)

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

github-bot pushed a change to branch dependabot/cargo/master/multiversion-0.7.0
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


 discard 38b04361b Update multiversion requirement from 0.6.1 to 0.7.0
     add a8968cd26 Infer JSON as UTF-8 (#3376)
     add e89b04337 minor: Improve arrow-flight docs (#3372)
     add 0e4ddbfb4 Add derive for Clone and Debug for `ParquetObjectReader` (#3382)
     add db9084e74 Split out arrow-row (#2594) (#3375)
     add 13e0b871e Update prost-build (#3385)
     add e7fc07304 Split out arrow-arith (#2594) (#3384)
     add ab096ae4f Update multiversion requirement from 0.6.1 to 0.7.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   (38b04361b)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/multiversion-0.7.0 (ab096ae4f)

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/arrow.yml                        |  14 +-
 .github/workflows/integration.yml                  |   3 +-
 Cargo.toml                                         |   2 +
 {arrow-ord => arrow-arith}/Cargo.toml              |  15 +-
 .../kernels => arrow-arith/src}/aggregate.rs       |  46 +--
 .../kernels => arrow-arith/src}/arithmetic.rs      | 238 ++++++------
 .../compute/kernels => arrow-arith/src}/arity.rs   |  85 ++---
 .../compute/kernels => arrow-arith/src}/bitwise.rs |  74 ++--
 .../compute/kernels => arrow-arith/src}/boolean.rs | 111 +++---
 {arrow-ord => arrow-arith}/src/lib.rs              |  12 +-
 .../kernels => arrow-arith/src}/temporal.rs        |  73 ++--
 arrow-flight/Cargo.toml                            |   2 +-
 arrow-flight/README.md                             |  11 +-
 arrow-flight/src/arrow.flight.protocol.rs          |   9 +
 arrow-flight/src/lib.rs                            |  19 +
 arrow-flight/src/sql/arrow.flight.protocol.sql.rs  | 405 +++++++++++++++++++++
 arrow-ord/src/sort.rs                              |  21 +-
 {arrow-array => arrow-row}/Cargo.toml              |  25 +-
 {arrow/src/row => arrow-row/src}/dictionary.rs     |   9 +-
 {arrow/src/row => arrow-row/src}/fixed.rs          |   8 +-
 {arrow/src/row => arrow-row/src}/interner.rs       |   0
 arrow/src/row/mod.rs => arrow-row/src/lib.rs       |  62 ++--
 {arrow/src/row => arrow-row/src}/list.rs           |   5 +-
 {arrow/src/row => arrow-row/src}/variable.rs       |   9 +-
 arrow-schema/src/lib.rs                            |  19 +
 arrow/Cargo.toml                                   |  14 +-
 arrow/README.md                                    |   2 +-
 arrow/src/compute/kernels/mod.rs                   |   7 +-
 arrow/src/lib.rs                                   |   4 +-
 dev/release/README.md                              |   4 +-
 parquet/src/arrow/async_reader/store.rs            |   1 +
 parquet/src/arrow/{schema.rs => schema/mod.rs}     |   2 +
 parquet/src/arrow/schema/primitive.rs              |   4 +-
 33 files changed, 865 insertions(+), 450 deletions(-)
 copy {arrow-ord => arrow-arith}/Cargo.toml (83%)
 rename {arrow/src/compute/kernels => arrow-arith/src}/aggregate.rs (98%)
 rename {arrow/src/compute/kernels => arrow-arith/src}/arithmetic.rs (95%)
 rename {arrow/src/compute/kernels => arrow-arith/src}/arity.rs (91%)
 rename {arrow/src/compute/kernels => arrow-arith/src}/bitwise.rs (81%)
 rename {arrow/src/compute/kernels => arrow-arith/src}/boolean.rs (92%)
 copy {arrow-ord => arrow-arith}/src/lib.rs (84%)
 rename {arrow/src/compute/kernels => arrow-arith/src}/temporal.rs (95%)
 copy {arrow-array => arrow-row}/Cargo.toml (77%)
 rename {arrow/src/row => arrow-row/src}/dictionary.rs (97%)
 rename {arrow/src/row => arrow-row/src}/fixed.rs (98%)
 rename {arrow/src/row => arrow-row/src}/interner.rs (100%)
 rename arrow/src/row/mod.rs => arrow-row/src/lib.rs (98%)
 rename {arrow/src/row => arrow-row/src}/list.rs (98%)
 rename {arrow/src/row => arrow-row/src}/variable.rs (97%)
 rename parquet/src/arrow/{schema.rs => schema/mod.rs} (99%)