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

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


 discard 5e9075f7a1 Update prost requirement in the prost group across 1 
directory
     add e845411dbf Fix new clippy lints from Rust 1.89 (#8078)
     add 25bbb3ddcd Bump actions/download-artifact from 4 to 5 (#8066)
     add 7a5f6d3d48 Implement `DataType::{Binary, LargeBinary, BinaryView}` => 
`Variant::Binary` (#8074)
     add c561acba79 [Variant] Add `variant_get` and Shredded `VariantArray` 
(#8021)
     add 4a21443d2f Implement arrow-avro SchemaStore and Fingerprinting To 
Enable Schema Resolution (#8006)
     add 3ad3888762 Update prost requirement in the prost group across 1 
directory

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   (5e9075f7a1)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/prost-dfa7aae14e 
(3ad3888762)

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/docs.yml                         |   2 +-
 arrow-array/src/ffi.rs                             |   2 +-
 arrow-avro/Cargo.toml                              |   4 +-
 arrow-avro/benches/decoder.rs                      | 159 +++---
 arrow-avro/src/codec.rs                            |  51 +-
 arrow-avro/src/reader/header.rs                    |   2 +-
 arrow-avro/src/reader/mod.rs                       | 539 +++++++++++++++++----
 arrow-buffer/src/buffer/boolean.rs                 |   2 +-
 arrow-buffer/src/buffer/immutable.rs               |   2 +-
 arrow-cast/src/pretty.rs                           |   7 +-
 arrow-data/src/transform/boolean.rs                |   2 +-
 arrow-data/src/transform/fixed_binary.rs           |   2 +-
 arrow-data/src/transform/fixed_size_list.rs        |   2 +-
 arrow-data/src/transform/list.rs                   |   4 +-
 arrow-data/src/transform/mod.rs                    |   8 +-
 arrow-data/src/transform/null.rs                   |   2 +-
 arrow-data/src/transform/primitive.rs              |   4 +-
 arrow-data/src/transform/run.rs                    |   2 +-
 arrow-data/src/transform/structure.rs              |   2 +-
 arrow-data/src/transform/union.rs                  |   4 +-
 arrow-data/src/transform/variable_size.rs          |   2 +-
 arrow-flight/src/sql/metadata/sql_info.rs          |   2 +-
 arrow-flight/src/sql/metadata/xdbc_info.rs         |   2 +-
 arrow-ipc/src/lib.rs                               |   1 +
 arrow-ipc/src/reader.rs                            |   2 +-
 arrow-row/src/lib.rs                               |  10 +-
 arrow/examples/dynamic_types.rs                    |   2 +-
 parquet-variant-compute/src/cast_to_variant.rs     |  89 +++-
 parquet-variant-compute/src/from_json.rs           |   6 +-
 parquet-variant-compute/src/lib.rs                 |  22 +-
 parquet-variant-compute/src/variant_array.rs       | 317 +++++++++---
 .../src/variant_array_builder.rs                   |   8 +-
 parquet-variant-compute/src/variant_get.rs         | 180 -------
 parquet-variant-compute/src/variant_get/mod.rs     | 430 ++++++++++++++++
 .../src/variant_get/output/mod.rs                  |  87 ++++
 .../src/variant_get/output/primitive.rs            | 166 +++++++
 .../src/variant_get/output/variant.rs              | 146 ++++++
 parquet-variant-json/src/from_json.rs              |   4 +-
 parquet-variant/src/builder.rs                     |  24 +-
 parquet-variant/src/decoder.rs                     |   5 +-
 parquet-variant/src/path.rs                        |   4 +-
 parquet-variant/src/variant.rs                     |   4 +-
 parquet/src/arrow/async_writer/mod.rs              |  44 --
 parquet/src/encryption/decrypt.rs                  |   4 +-
 parquet/src/file/reader.rs                         |   4 +-
 parquet/src/file/serialized_reader.rs              |   4 +-
 parquet/src/record/api.rs                          |   2 +-
 parquet/src/schema/types.rs                        |   7 +-
 48 files changed, 1848 insertions(+), 532 deletions(-)
 delete mode 100644 parquet-variant-compute/src/variant_get.rs
 create mode 100644 parquet-variant-compute/src/variant_get/mod.rs
 create mode 100644 parquet-variant-compute/src/variant_get/output/mod.rs
 create mode 100644 parquet-variant-compute/src/variant_get/output/primitive.rs
 create mode 100644 parquet-variant-compute/src/variant_get/output/variant.rs

Reply via email to