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 7abb93f918 Update prost requirement in the prost group across 1 directory add edd691b357 Remove deprecated Arrow functions (#7830) add c3e3c031b5 [Variant] Follow up nits and uncomment test cases (#7846) add a99f027747 [Minor] Add Benchmark for RowConverter::append (#7853) add 91199c7190 CSV error message has values transposed (#7851) add 81ab1475c6 [VARIANT] Add support for the json_to_variant API (#7783) add e6cb61f6f8 Speedup sorting for inline views: 1.4x - 1.7x improvement (#7856) add 32caf764a7 Add features to configure flate2 (#7827) add 53236b4690 chore: update link for `row_filter.rs` (#7866) add 0de83985f2 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 (7abb93f918) \ N -- N -- N refs/heads/dependabot/cargo/main/prost-dfa7aae14e (0de83985f2) 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.yml | 7 + .../src/builder/generic_bytes_view_builder.rs | 7 - arrow-array/src/builder/null_builder.rs | 12 - arrow-array/src/types.rs | 12 +- arrow-csv/src/lib.rs | 2 +- arrow-csv/src/reader/mod.rs | 2 +- arrow-flight/src/decode.rs | 6 - arrow-ord/src/cmp.rs | 64 --- arrow-ord/src/ord.rs | 6 - arrow-ord/src/sort.rs | 100 ++-- arrow-schema/src/schema.rs | 7 - arrow-string/src/regexp.rs | 29 -- arrow/benches/row_format.rs | 10 + arrow/src/array/mod.rs | 4 +- arrow/src/compute/kernels.rs | 3 - parquet-variant/benches/variant_builder.rs | 4 +- .../examples/variant_from_json_examples.rs | 50 ++ parquet-variant/src/builder.rs | 38 ++ parquet-variant/src/decoder.rs | 2 +- parquet-variant/src/from_json.rs | 151 ++++++ parquet-variant/src/lib.rs | 2 + parquet-variant/src/variant.rs | 2 +- parquet-variant/src/variant/decimal.rs | 8 +- parquet-variant/src/variant/list.rs | 4 +- parquet-variant/src/variant/metadata.rs | 4 +- parquet-variant/src/variant/object.rs | 25 +- parquet-variant/tests/test_json_to_variant.rs | 552 +++++++++++++++++++++ parquet/Cargo.toml | 8 +- parquet/examples/async_read_parquet.rs | 2 +- parquet/src/lib.rs | 6 + 30 files changed, 912 insertions(+), 217 deletions(-) create mode 100644 parquet-variant/examples/variant_from_json_examples.rs create mode 100644 parquet-variant/src/from_json.rs create mode 100644 parquet-variant/tests/test_json_to_variant.rs