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 2836aa83b8 Update prost requirement in the prost group across 1 directory add a5afda21fd [Variant] VariantMetadata is allowed to contain the empty string (#7956) add 71dd48e75e [Variant] Add `variant_kernels` benchmark (#7944) add a15f345f85 [Variant] Add ListBuilder::with_value for convenience (#7959) add 4f5ab122e7 [Test] Add tests for VariantList equality (#7953) add 55fbf5c2ba [Variant] remove VariantMetadata::dictionary_size (#7958) add 99eb1bc92b Add missing `parquet-variant-compute` crate to CI jobs (#7963) add 82821e574d arrow-ipc: Remove all abilities to preserve dict IDs (#7940) add 291e6e575c Add arrow-avro support for Impala Nullability (#7954) add e2b660c911 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 (2836aa83b8) \ N -- N -- N refs/heads/dependabot/cargo/main/prost-dfa7aae14e (e2b660c911) 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/parquet-variant.yml | 16 +- arrow-avro/src/codec.rs | 126 ++++++- arrow-avro/src/reader/mod.rs | 391 ++++++++++++++++++++- arrow-avro/src/reader/record.rs | 36 +- arrow-flight/src/encode.rs | 29 +- arrow-flight/src/lib.rs | 4 +- arrow-flight/src/utils.rs | 4 +- .../flight_client_scenarios/integration_test.rs | 4 +- .../flight_server_scenarios/integration_test.rs | 4 +- arrow-ipc/src/convert.rs | 22 +- arrow-ipc/src/reader.rs | 12 +- arrow-ipc/src/reader/stream.rs | 3 +- arrow-ipc/src/writer.rs | 190 ++-------- parquet-variant-compute/Cargo.toml | 7 +- parquet-variant-compute/benches/variant_get.rs | 59 ---- parquet-variant-compute/benches/variant_kernels.rs | 363 +++++++++++++++++++ parquet-variant-compute/src/variant_array.rs | 4 +- parquet-variant-json/src/to_json.rs | 55 ++- parquet-variant/src/builder.rs | 115 ++++-- parquet-variant/src/variant/list.rs | 103 ++++++ parquet-variant/src/variant/metadata.rs | 79 +++-- parquet-variant/src/variant/object.rs | 15 +- parquet/src/arrow/schema/mod.rs | 4 +- 23 files changed, 1219 insertions(+), 426 deletions(-) delete mode 100644 parquet-variant-compute/benches/variant_get.rs create mode 100644 parquet-variant-compute/benches/variant_kernels.rs