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

dependabot[bot] pushed a change to branch dependabot/cargo/main/rand-0.10.1
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


    omit 05ab9790ee chore(deps): bump rand from 0.9.4 to 0.10.1
     add 7616e10f12 chore: Make clippy::question_mark happy (#10231)
     add 7a64f83c26 feat(parquet): add 
ParquetPushDecoder::peek_next_row_group() (#10158)
     add e625a3f562 fix: casting list to fixedsizelist didn't respect input 
length (#10228)
     add ea71b0a223 [arrow-flight encode path]re-use flatbufferbuilder (#10220)
     add 9b190c9794 perf(arrow-ord): Avoid full index materialization for 
small-limit lexsorts (#9991)
     add f7ea295db3 chore(deps): bump actions/cache from 6.0.0 to 6.1.0 (#10240)
     add ae21c899ac Replace `ArrayData` with direct `Array` construction in 
`arrow-row` (#10229)
     add 80546fdb81 fix: Rename parquet feature flag 'flate2-rust_backened' to 
'flate2-rust_backend' (#10239)
     add fbe75a3bd9 arrow-cast: Add optimized path for unnesting a dict (#10248)
     add d8d3fa32c1 refactor: add `take_n_true` method to `BooleanArray` (#9823)
     add 38230b014b [10125] arrow-flight decode path optimizations (add 
`skip_validation` to arrow-flight) (#10206)
     add 32bba5ad27 rename Compression struct (#10221)
     add 6ffeea9d3d feat: support uuid from fixed type of length 16 (#10241)
     add d3d7ae83e7 fix(ipc): reject dictionary-encoded dictionary values 
(#10230)
     add a2bb4c90dc feat(parquet): selective null padding for list child 
readers  (#9848)
     add 4ff867b507 chore: update workspace Rust toolchain to 1.96.1 (#10257)
     add 8c7df18f05 reduce noise in flight benchmarks [tokio-threads] [# of 
columns in benchmarks] (#10242)
     add 7095ce437c Replace conversion of binary->string in arrow-row from 
arraydata to direct construction (#10261)
     add af1c24a48d minor: drive-by refactors for dicts in substring & filter 
(#10264)
     add 73077404cd fix: write error for dbg output of out of range timestamps 
(#10130)
     add c7dc6b8bae Add validated row decode benchmark (#10259)
     add d96902565a fix main: parquet test compilation failure (#10266)
     add ddef6cfc9f chore: Fix audit CI run by ignore quick-xml audit 
advisories (#10267)
     add d2519a1b72 fix(arrow-row): allow to convert non empty fixed size 
binary/list array with size length 0 and no nulls (#10271)
     add c36e926c0c feat: Add support for `MapArray` in `arrow_row` (#9486)
     add b1de629ae8 Prepare for `59.1.0` release (#10274)
     add d9919194ee chore(deps): bump num-bigint from 0.4.6 to 0.5.0 (#10279)
     add 9d34289f9d chore(deps): bump rand from 0.9.4 to 0.10.1

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   (05ab9790ee)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/rand-0.10.1 
(9d34289f9d)

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/arrow.yml                        |    1 +
 .github/workflows/arrow_flight.yml                 |    1 +
 .github/workflows/audit.yml                        |    6 +-
 .github/workflows/integration.yml                  |    5 +-
 .github/workflows/miri.yaml                        |    1 +
 .github/workflows/parquet-geospatial.yml           |    1 +
 .github/workflows/parquet-variant.yml              |    1 +
 .github/workflows/parquet.yml                      |    5 +-
 .github/workflows/parquet_derive.yml               |    1 +
 CHANGELOG-old.md                                   |  131 +++
 CHANGELOG.md                                       |  230 ++--
 Cargo.lock                                         |   83 +-
 Cargo.toml                                         |   42 +-
 arrow-array/src/array/boolean_array.rs             |  109 +-
 arrow-array/src/array/fixed_size_binary_array.rs   |  146 ++-
 arrow-array/src/array/primitive_array.rs           |   79 +-
 arrow-array/src/array/run_array.rs                 |    2 +-
 arrow-avro/Cargo.toml                              |    2 +-
 arrow-avro/src/codec.rs                            |   45 +
 arrow-avro/src/reader/mod.rs                       |   20 +-
 arrow-buffer/Cargo.toml                            |    2 +-
 arrow-buffer/src/builder/boolean.rs                |  136 +++
 arrow-buffer/src/util/bit_iterator.rs              |   12 +-
 arrow-cast/src/cast/dictionary.rs                  |   18 +
 arrow-cast/src/cast/list.rs                        |   31 +-
 arrow-cast/src/cast/mod.rs                         |   69 +-
 arrow-flight/Cargo.toml                            |    4 +-
 arrow-flight/benches/flight.rs                     |   20 +-
 arrow-flight/src/decode.rs                         |   29 +-
 arrow-flight/src/encode.rs                         |   12 +-
 arrow-flight/src/sql/metadata/mod.rs               |    2 +-
 arrow-flight/src/utils.rs                          |    6 +-
 arrow-integration-test/Cargo.toml                  |    2 +-
 arrow-integration-testing/Cargo.toml               |    1 +
 .../flight_client_scenarios/integration_test.rs    |   12 +-
 arrow-ipc/src/compression.rs                       |   31 +-
 arrow-ipc/src/reader.rs                            |   66 +-
 arrow-ipc/src/writer.rs                            |  220 ++--
 arrow-json/src/reader/tape.rs                      |    2 +-
 arrow-ord/src/sort.rs                              |  181 +++-
 arrow-row/src/fixed.rs                             |  103 +-
 arrow-row/src/lib.rs                               | 1109 ++++++++++++++++++--
 arrow-row/src/list.rs                              |  257 +++--
 arrow-row/src/variable.rs                          |   68 +-
 arrow-select/src/filter.rs                         |   18 +-
 arrow-string/src/substring.rs                      |   80 +-
 arrow/benches/cast_kernels.rs                      |   28 +
 arrow/benches/lexsort.rs                           |    2 +-
 arrow/benches/row_format.rs                        |   23 +
 dev/release/update_change_log.sh                   |    4 +-
 parquet/Cargo.toml                                 |   11 +-
 parquet/benches/arrow_reader.rs                    |   34 +-
 parquet/benches/arrow_reader_peak_memory.rs        |   42 +-
 parquet/src/arrow/array_reader/builder.rs          |   86 +-
 parquet/src/arrow/array_reader/byte_array.rs       |   20 +-
 .../arrow/array_reader/byte_array_dictionary.rs    |   21 +-
 parquet/src/arrow/array_reader/byte_view_array.rs  |   18 +-
 .../src/arrow/array_reader/cached_array_reader.rs  |    4 +
 .../src/arrow/array_reader/fixed_len_byte_array.rs |   56 +-
 .../arrow/array_reader/fixed_size_list_array.rs    |  266 +++--
 parquet/src/arrow/array_reader/list_array.rs       |  367 +++++--
 parquet/src/arrow/array_reader/list_view_array.rs  |   21 +-
 parquet/src/arrow/array_reader/map_array.rs        |   15 +-
 parquet/src/arrow/array_reader/mod.rs              |   13 +
 parquet/src/arrow/array_reader/null_array.rs       |   16 +-
 parquet/src/arrow/array_reader/primitive_array.rs  |   27 +-
 parquet/src/arrow/array_reader/struct_array.rs     |  142 ++-
 parquet/src/arrow/array_reader/test_util.rs        |   19 +-
 parquet/src/arrow/arrow_reader/mod.rs              |    8 +-
 parquet/src/arrow/arrow_reader/read_plan.rs        |  126 ++-
 parquet/src/arrow/arrow_writer/mod.rs              |   12 +-
 parquet/src/arrow/buffer/dictionary_buffer.rs      |    7 +
 parquet/src/arrow/buffer/offset_buffer.rs          |    4 +
 parquet/src/arrow/buffer/view_buffer.rs            |    4 +
 parquet/src/arrow/in_memory_row_group.rs           |    2 +-
 parquet/src/arrow/push_decoder/mod.rs              |  244 +++++
 parquet/src/arrow/push_decoder/remaining.rs        |   41 +-
 parquet/src/arrow/record_reader/buffer.rs          |   15 +-
 .../src/arrow/record_reader/definition_levels.rs   |   99 ++
 parquet/src/arrow/record_reader/mod.rs             |  300 +++++-
 parquet/src/column/reader.rs                       |   27 +-
 parquet/src/encryption/decrypt.rs                  |    2 +-
 parquet/src/file/page_index/column_index.rs        |   52 +-
 parquet/src/lib.rs                                 |    4 +-
 parquet/src/util/bit_util.rs                       |   76 ++
 parquet/src/util/push_buffers.rs                   |    2 +-
 parquet/tests/encryption/encryption.rs             |    4 +-
 rust-toolchain.toml                                |    2 +-
 88 files changed, 4368 insertions(+), 1300 deletions(-)

Reply via email to