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 53a35180a8 chore(deps): bump the prost group across 1 directory with 3
updates
add f1ba4352bb fix(arrow-buffer): preserve bits outside the requested
range in in-place bitwise ops (#10444)
add 0d4f469d9b Allow reading and writing more than 32k Parquet row groups
(#10149)
add b9d3b08a49 Use `Metadata` struct instead of `HashMap<String, String>`
for metadata: Ordered; cheap to clone (#10075)
add cc49a83f44 fix(arrow-avro): fix split sync marker assembly and
validate per-block sync markers (#10497)
add f3399269b8 fix(arrow-cast): preserve null dictionary values when
casting to a view (#10510)
add 4a1c655c75 fix(arrow-data): account for view payload buffers in slice
memory size (#10519)
add d1adf58bc6 chore(deps): bump the codeql-actions group with 2 updates
(#10531)
add a712ba3dbd chore(deps): bump clap from 4.6.4 to 4.6.5 in the
all-other-cargo-deps group across 1 directory (#10532)
add aa7cfce828 Remove flight-sql-experimental feature from arrow-flight
(#10335)
add 1042e07e5d Update release schedule on README (#10528)
add 21f021e50c chore: setup dependabot to do `rust-toolchain` updates
(#10461)
add c2b823f63b 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 (53a35180a8)
\
N -- N -- N refs/heads/dependabot/cargo/main/prost-b2daf72eba
(c2b823f63b)
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/dependabot.yml | 8 +-
.github/workflows/codeql.yml | 4 +-
Cargo.lock | 8 +-
README.md | 8 +-
arrow-array/src/record_batch.rs | 8 +-
arrow-avro/src/reader/async_reader/mod.rs | 31 +-
arrow-avro/src/reader/block.rs | 25 +-
arrow-avro/src/reader/header.rs | 5 +-
arrow-avro/src/reader/mod.rs | 62 +--
arrow-avro/src/schema.rs | 13 +-
arrow-avro/src/writer/mod.rs | 4 +-
arrow-buffer/src/util/bit_util.rs | 152 ++++++-
arrow-cast/src/cast/dictionary.rs | 7 +
arrow-cast/src/cast/mod.rs | 44 ++
arrow-csv/src/reader/mod.rs | 4 +-
arrow-data/src/data.rs | 62 ++-
arrow-flight/Cargo.toml | 2 -
arrow-integration-test/src/lib.rs | 16 +-
arrow-integration-test/src/schema.rs | 7 +-
arrow-ipc/src/convert.rs | 12 +-
arrow-ipc/src/writer.rs | 4 +-
arrow-schema/src/datatype_display.rs | 15 +-
arrow-schema/src/extension/canonical/bool8.rs | 29 +-
.../src/extension/canonical/fixed_shape_tensor.rs | 39 +-
arrow-schema/src/extension/canonical/json.rs | 26 +-
arrow-schema/src/extension/canonical/opaque.rs | 37 +-
.../extension/canonical/timestamp_with_offset.rs | 25 +-
arrow-schema/src/extension/canonical/uuid.rs | 27 +-
.../extension/canonical/variable_shape_tensor.rs | 36 +-
arrow-schema/src/extension/mod.rs | 3 +-
arrow-schema/src/ffi.rs | 2 +-
arrow-schema/src/field.rs | 107 ++---
arrow-schema/src/lib.rs | 2 +
arrow-schema/src/metadata.rs | 473 +++++++++++++++++++++
arrow-schema/src/schema.rs | 108 ++---
arrow/src/datatypes/mod.rs | 4 +-
parquet/benches/metadata.rs | 2 +-
parquet/src/arrow/array_reader/row_group_index.rs | 4 +-
parquet/src/arrow/array_reader/row_number.rs | 4 +-
parquet/src/arrow/arrow_reader/mod.rs | 4 +-
parquet/src/arrow/arrow_writer/mod.rs | 6 +-
parquet/src/arrow/schema/complex.rs | 7 +-
parquet/src/arrow/schema/virtual_type.rs | 70 +--
parquet/src/file/metadata/mod.rs | 6 +-
parquet/src/file/metadata/thrift/mod.rs | 21 +-
parquet/src/file/writer.rs | 73 +++-
parquet/src/parquet_thrift.rs | 17 +
47 files changed, 1112 insertions(+), 521 deletions(-)
create mode 100644 arrow-schema/src/metadata.rs