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 588fcaab71 chore(deps): bump the prost group across 1 directory with 3
updates
add dfab9724e4 chore(deps): bump http from 1.4.2 to 1.5.0 in the
all-other-cargo-deps group across 1 directory (#10490)
add e4df827bc1 perf(ipc): benchmark stream encoder (#10447)
add 23e61b694f chore: add sub tags (#10473)
add 6183ac97b1 Add LICENSE.txt and NOTICE.txt to pyarrow crates (#10481)
add 34c7c2b9e0 parquet: Remove explicit `object_store` integration (#10354)
add fd8ead5d3c arrow-avro: Deprecate object_store integration (#10484)
add d1e699f35d 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 (588fcaab71)
\
N -- N -- N refs/heads/dependabot/cargo/main/prost-b2daf72eba
(d1e699f35d)
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/dev_pr/labeler.yml | 135 +++++++++---
Cargo.lock | 4 +-
arrow-avro/Cargo.toml | 8 +
arrow-avro/README.md | 34 +--
arrow-avro/examples/object_store.rs | 133 ++++++++++++
arrow-avro/src/lib.rs | 38 ++--
.../src/reader/async_reader/async_file_reader.rs | 52 ++++-
arrow-avro/src/reader/async_reader/mod.rs | 78 +++++--
arrow-avro/src/reader/async_reader/spawn.rs | 176 ++++++++++++++++
arrow-avro/src/reader/async_reader/store.rs | 11 +
arrow-avro/src/reader/mod.rs | 3 +-
.../LICENSE.txt | 0
.../NOTICE.txt | 0
arrow-ipc/benches/ipc_writer.rs | 59 +++++-
.../LICENSE.txt | 0
.../NOTICE.txt | 0
{arrow-arith => arrow-pyarrow-testing}/LICENSE.txt | 0
{arrow-arith => arrow-pyarrow-testing}/NOTICE.txt | 0
{arrow-arith => arrow-pyarrow}/LICENSE.txt | 0
{arrow-arith => arrow-pyarrow}/NOTICE.txt | 0
parquet/Cargo.toml | 12 +-
parquet/benches/arrow_reader_clickbench.rs | 85 +++++++-
parquet/examples/object_store.rs | 168 +++++++++++++++
parquet/src/arrow/arrow_reader/mod.rs | 38 ++++
parquet/src/arrow/arrow_reader/selection/mod.rs | 4 +-
parquet/src/arrow/async_reader/mod.rs | 117 ++++++++---
parquet/src/arrow/async_reader/spawn.rs | 227 +++++++++++++++++++++
parquet/src/arrow/async_reader/store.rs | 12 ++
parquet/src/arrow/async_writer/mod.rs | 6 +-
parquet/src/arrow/async_writer/store.rs | 19 +-
parquet/src/lib.rs | 11 +-
parquet/tests/encryption/encryption_async.rs | 106 ++++++++--
32 files changed, 1393 insertions(+), 143 deletions(-)
create mode 100644 arrow-avro/examples/object_store.rs
create mode 100644 arrow-avro/src/reader/async_reader/spawn.rs
copy {arrow-arith => arrow-integration-testing}/LICENSE.txt (100%)
copy {arrow-arith => arrow-integration-testing}/NOTICE.txt (100%)
copy {arrow-arith => arrow-pyarrow-integration-testing}/LICENSE.txt (100%)
copy {arrow-arith => arrow-pyarrow-integration-testing}/NOTICE.txt (100%)
copy {arrow-arith => arrow-pyarrow-testing}/LICENSE.txt (100%)
copy {arrow-arith => arrow-pyarrow-testing}/NOTICE.txt (100%)
copy {arrow-arith => arrow-pyarrow}/LICENSE.txt (100%)
copy {arrow-arith => arrow-pyarrow}/NOTICE.txt (100%)
create mode 100644 parquet/examples/object_store.rs
create mode 100644 parquet/src/arrow/async_reader/spawn.rs