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

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


    omit fec13a4bfa Update bzip2 requirement from 0.4.4 to 0.6.0
     add 1b8cd9ace2 Update sysinfo requirement from 0.35.0 to 0.36.0 (#7904)
     add 02693827c1 fix: Change panic to error in`take` kernel for 
StringArrary/BinaryArray on overflow (#7793)
     add ba751bf000 Implement arrow-avro Reader and ReaderBuilder (#7834)
     add 6d112327ab add `garbage_collect_dictionary` to `arrow-select` (#7716)
     add 7b219f98c2 perf: speed up StringViewArray gc 1.4 ~5.x faster (#7873)
     add d8b5ef7595 [Variant] Avoid superflous validation checks (#7906)
     add fe77f2fa58 Add `VariantArray` and `VariantArrayBuilder` for 
constructing Arrow Arrays of Variants (#7905)
     add daf31bec63 [Variant] Add `VariantBuilder::new_with_buffers` to write 
to existing buffers (#7912)
     add d51fc4502d feat: support `MapArray` in lexsort (#7882)
     add 5555d30b0b [Parquet] Use `u64` for `SerializedPageReaderState.offset` 
& `remaining_bytes`, instead of `usize` (#7918)
     add 52fd59c9f0 [Variant] Use simdutf8 for UTF-8 validation (#7908)
     add 02e06c51f8 Add arrow-avro support for Duration type and minor fixes 
for UUID decoding (#7889)
     add a653fd9ec1 Restructure compare_greater function used in parquet 
statistics for better performance (#7916)
     add 4022ad3b1e Update bzip2 requirement from 0.4.4 to 0.6.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   (fec13a4bfa)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/bzip2-0.6.0 
(4022ad3b1e)

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:
 Cargo.toml                                         |   2 +
 arrow-array/src/array/byte_view_array.rs           | 214 ++++++-
 arrow-avro/Cargo.toml                              |   7 +-
 arrow-avro/benches/avro_reader.rs                  |  15 +-
 arrow-avro/examples/read_with_utf8view.rs          |  65 +--
 arrow-avro/src/codec.rs                            |  37 +-
 arrow-avro/src/lib.rs                              |   2 -
 arrow-avro/src/reader/mod.rs                       | 645 +++++++++++++++++----
 arrow-avro/src/reader/record.rs                    | 227 ++++++--
 arrow-avro/test/data/duration_uuid.avro            | Bin 0 -> 517 bytes
 arrow-json/Cargo.toml                              |   2 +-
 arrow-ord/src/ord.rs                               | 250 +++++++-
 arrow-schema/src/error.rs                          |   5 +
 arrow-select/src/dictionary.rs                     | 151 ++++-
 arrow-select/src/lib.rs                            |   2 +-
 arrow-select/src/take.rs                           |  58 +-
 parquet-variant-compute/src/from_json.rs           | 126 +---
 parquet-variant-compute/src/lib.rs                 |   5 +
 parquet-variant-compute/src/variant_array.rs       | 286 +++++++++
 .../src/variant_array_builder.rs                   | 223 +++++++
 parquet-variant/Cargo.toml                         |   5 +
 parquet-variant/src/builder.rs                     | 199 ++++++-
 parquet-variant/src/utils.rs                       |  19 +-
 parquet-variant/src/variant.rs                     |  12 +
 parquet-variant/src/variant/list.rs                |  27 +-
 parquet-variant/src/variant/metadata.rs            |  25 +-
 parquet-variant/src/variant/object.rs              |  15 +-
 parquet/Cargo.toml                                 |   4 +-
 parquet/src/column/writer/mod.rs                   |  73 +--
 parquet/src/file/serialized_reader.rs              |  62 +-
 30 files changed, 2301 insertions(+), 462 deletions(-)
 create mode 100644 arrow-avro/test/data/duration_uuid.avro
 create mode 100644 parquet-variant-compute/src/variant_array.rs
 create mode 100644 parquet-variant-compute/src/variant_array_builder.rs

Reply via email to