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


    omit e2b660c911 Update prost requirement in the prost group across 1 
directory
     add b726b6face Add additional integration tests to arrow-avro (#7974)
     add ed02131430 arrow-schema: Remove dict_id from being required equal for 
merging (#7968)
     add d4f1cfad79 Implement Improved arrow-avro Reader Zero-Byte Record 
Handling (#7966)
     add 6874ffa14d [Variant] Avoid extra allocation in object builder (#7935)
     add dff67c9b78 GH-7686: [Parquet] Fix int96 min/max stats (#7687)
     add f39461cefc [Variant] Revisit VariantMetadata and Object equality 
(#7961)
     add ec81db35bb Add decimal32 and decimal64 support to Parquet, JSON and 
CSV readers and writers (#7841)
     add 50f556220e Convert JSON to VariantArray without copying (8 - 32% 
faster) (#7911)
     add a7f3ba8f3a Fix panic on lossy decimal to float casting: round to 
saturation for overflows  (#7887)
     add e341493530 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   (e2b660c911)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/prost-dfa7aae14e 
(e341493530)

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:
 arrow-avro/Cargo.toml                              |   1 +
 arrow-avro/src/reader/mod.rs                       | 639 ++++++++++++++++++++-
 arrow-avro/test/data/zero_byte.avro                | Bin 0 -> 210 bytes
 arrow-cast/src/cast/decimal.rs                     |   6 +-
 arrow-cast/src/cast/dictionary.rs                  |  14 +
 arrow-cast/src/cast/mod.rs                         |  37 +-
 arrow-csv/src/reader/mod.rs                        |  64 +++
 arrow-csv/src/writer.rs                            |  51 +-
 arrow-json/src/reader/mod.rs                       |   4 +
 arrow-json/src/writer/encoder.rs                   |   2 +-
 arrow-json/src/writer/mod.rs                       |  48 ++
 arrow-schema/src/field.rs                          |  10 -
 parquet-variant-compute/src/from_json.rs           |   7 +-
 parquet-variant-compute/src/lib.rs                 |   2 +-
 .../src/variant_array_builder.rs                   | 316 +++++++++-
 parquet-variant-json/src/from_json.rs              |  27 +-
 parquet-variant/src/builder.rs                     | 496 ++++++++++++++--
 parquet-variant/src/variant/metadata.rs            |  84 ++-
 parquet-variant/src/variant/object.rs              |  80 ++-
 .../src/arrow/array_reader/fixed_len_byte_array.rs |  30 +-
 parquet/src/arrow/array_reader/primitive_array.rs  |  80 ++-
 parquet/src/arrow/arrow_reader/mod.rs              |  76 ++-
 parquet/src/arrow/arrow_writer/levels.rs           |   2 +
 parquet/src/arrow/arrow_writer/mod.rs              | 118 ++++
 parquet/src/arrow/schema/mod.rs                    |   2 +
 parquet/src/arrow/schema/primitive.rs              |   4 +-
 parquet/src/column/writer/mod.rs                   |   4 +-
 parquet/src/data_type.rs                           |  38 +-
 parquet/src/file/statistics.rs                     |   3 -
 parquet/tests/arrow_reader/mod.rs                  |  85 ++-
 parquet/tests/arrow_reader/statistics.rs           |  92 ++-
 parquet/tests/int96_stats_roundtrip.rs             | 151 +++++
 32 files changed, 2324 insertions(+), 249 deletions(-)
 create mode 100644 arrow-avro/test/data/zero_byte.avro
 create mode 100644 parquet/tests/int96_stats_roundtrip.rs

Reply via email to