This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch dependabot/cargo/main/prost-b2daf72eba
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
discard aef9a2b63d chore(deps): bump the prost group across 1 directory with 3
updates
add 44f377284e Fix deprecate `MutableArrayData::extend` and
`MutableArrayData::extend_nulls` in favour of fallible `try_extend` /
`try_extend_nulls` (#9710)
add b737f99245 [arrow-select] perf: Replace `ArrayData` with direct
`Array` construction in take kernels (#10176)
add 40e897a89b chore: Fix clippy::byte_char_slices (use byte strings
instead of explicit arrays) (#10225)
add 078cf60f40 nit: arrow-pyarrow: Use string interning (#10224)
add 8de5640254 feat(ipc): Supports compression level configuration (#10133)
add c1f99af1dd Support concatenation of mixed FixedSizeBinary via
`concat_elements_dyn` (#10222)
add da07bced95 chore(deps): bump the all-other-cargo-deps group across 1
directory with 16 updates (#10218)
add 7616e10f12 chore: Make clippy::question_mark happy (#10231)
add cf48cbaa5c chore(deps): bump the prost group across 1 directory with 3
updates
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 (aef9a2b63d)
\
N -- N -- N refs/heads/dependabot/cargo/main/prost-b2daf72eba
(cf48cbaa5c)
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.lock | 70 ++++-----
arrow-array/src/array/binary_array.rs | 16 +-
arrow-array/src/array/fixed_size_binary_array.rs | 10 +-
arrow-array/src/array/null_array.rs | 2 +-
arrow-array/src/array/string_array.rs | 4 +-
arrow-array/src/ffi.rs | 2 +-
arrow-buffer/src/util/bit_iterator.rs | 12 +-
arrow-cast/src/cast/list.rs | 20 ++-
arrow-data/src/transform/boolean.rs | 7 +-
arrow-data/src/transform/fixed_binary.rs | 7 +-
arrow-data/src/transform/fixed_size_list.rs | 20 +--
arrow-data/src/transform/list.rs | 15 +-
arrow-data/src/transform/list_view.rs | 19 ++-
arrow-data/src/transform/mod.rs | 78 ++++++++--
arrow-data/src/transform/null.rs | 9 +-
arrow-data/src/transform/primitive.rs | 8 +-
arrow-data/src/transform/run.rs | 139 +++++++++++------
arrow-data/src/transform/structure.rs | 35 +++--
arrow-data/src/transform/union.rs | 38 +++--
arrow-data/src/transform/utils.rs | 74 +++++++--
arrow-data/src/transform/variable_size.rs | 13 +-
arrow-ipc/src/compression.rs | 39 +++--
arrow-ipc/src/lib.rs | 2 +-
arrow-ipc/src/writer.rs | 83 ++++++++++-
arrow-pyarrow/src/lib.rs | 72 ++++++---
arrow-select/src/concat.rs | 2 +-
arrow-select/src/filter.rs | 10 +-
arrow-select/src/interleave.rs | 6 +-
arrow-select/src/merge.rs | 20 +--
arrow-select/src/take.rs | 136 ++++++++---------
arrow-select/src/zip.rs | 16 +-
arrow-string/src/concat_elements.rs | 166 +++++++++++----------
arrow-string/src/substring.rs | 4 +-
arrow/benches/mutable_array.rs | 2 +-
arrow/examples/builders.rs | 6 +-
arrow/tests/array_transform.rs | 134 ++++++++---------
arrow/tests/array_validation.rs | 4 +-
parquet-variant/src/decoder.rs | 8 +-
.../arrow/array_reader/fixed_size_list_array.rs | 12 +-
parquet/src/arrow/array_reader/list_array.rs | 8 +-
parquet/src/file/mod.rs | 4 +-
41 files changed, 834 insertions(+), 498 deletions(-)