This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch dependabot/cargo/main/tonic-5bf6a488fd
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
discard 5b0e23acff chore(deps): bump the tonic group across 1 directory with 3
updates
add f8a57f83f0 bench(parquet): cover DELTA_BYTE_ARRAY large values in the
arrow_writer benchmark (#10512)
add feb687ddf9 chore: remove unused env vars in `dev.yml` worflow (#10498)
add 4a62a8aa1b Add codeql scanning github action (#10487)
add cf744a6c94 perf(parquet): reuse `MaskSelection`'s cached selectors
when converting to selectors (#10443)
add f5c0d1c218 chore: remove rust label from infra yaml (#10456)
add f8510f03f4 chore: remove pre-commit scripts (#10463)
add 0f526f912d chore: remove unused `header` file (#10466)
add 30ca5d1305 chore: fix typo in release email template (#10530)
add efb6d1816e Implement PARQUET-2249: Introduce IEEE 754 total order
(#9619)
add 380f902918 chore(deps): bump the tonic 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 (5b0e23acff)
\
N -- N -- N refs/heads/dependabot/cargo/main/tonic-5bf6a488fd
(380f902918)
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:
.asf.yaml | 1 -
.github/dependabot.yml | 4 +
.github/workflows/{stale.yml => codeql.yml} | 47 ++-
.github/workflows/dev.yml | 4 -
.pre-commit-config.yaml | 69 ----
CONTRIBUTING.md | 25 --
dev/release/create-tarball.sh | 2 +-
header | 16 -
parquet/Cargo.toml | 5 +
parquet/benches/arrow_writer.rs | 76 +++-
parquet/benches/row_selector.rs | 68 +++-
parquet/src/arrow/arrow_reader/read_plan.rs | 4 +-
.../src/arrow/arrow_reader/selection/boolean.rs | 100 ++++-
parquet/src/arrow/arrow_reader/selection/mod.rs | 39 +-
parquet/src/arrow/arrow_reader/statistics.rs | 80 ++++
parquet/src/arrow/arrow_writer/byte_array.rs | 2 +
parquet/src/arrow/arrow_writer/mod.rs | 115 +++++-
parquet/src/basic.rs | 126 ++++--
parquet/src/column/writer/encoder.rs | 103 +++--
parquet/src/column/writer/mod.rs | 432 +++++++++++++++-----
parquet/src/file/metadata/mod.rs | 82 +++-
parquet/src/file/metadata/thrift/mod.rs | 50 ++-
parquet/src/file/metadata/writer.rs | 9 +-
parquet/src/file/page_index/column_index.rs | 58 ++-
parquet/src/file/page_index/index_reader.rs | 1 +
parquet/src/file/statistics.rs | 218 +++++++++-
parquet/src/file/writer.rs | 16 +-
parquet/src/schema/types.rs | 42 +-
parquet/tests/arrow_reader/statistics.rs | 10 +-
parquet/tests/ieee754_nan_interop.rs | 448 +++++++++++++++++++++
pre-commit.sh | 86 ----
31 files changed, 1839 insertions(+), 499 deletions(-)
copy .github/workflows/{stale.yml => codeql.yml} (53%)
delete mode 100644 .pre-commit-config.yaml
delete mode 100644 header
create mode 100644 parquet/tests/ieee754_nan_interop.rs
delete mode 100755 pre-commit.sh