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

alamb pushed a change to branch dependabot/cargo/master/pyo3-0.22.2
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


 discard 36e205bf5 Update pyo3 requirement from 0.21.1 to 0.22.2
    omit 9be0eb530 Minor: Improve parquet PageIndex documentation (#6042)
    omit b44497e1c Prepare for object_store `0.10.2` release (#6079)
    omit 41665ea13 Correct timeout in comment from 5s to 30s (#6073)
    omit 94652e5e2 use GCE metadata server env var overrides (#6015)
    omit 4978e3265 Sanitize error message for sensitive requests (#6074)
    omit 62f9e72f7 Reorganize arrow-flight test code (#6065)
    omit 6ab853d38 Do not write `ColumnIndex` for null columns when not writing 
page statistics (#6011)
    omit b72098fee Minor: clarify the relationship between `file::metadata` and 
`format` (#6049)
    omit b2458bd68 StringView support in arrow-csv (#6062)
     add 741bbf685 bump `tonic` to 0.12 and `prost` to 0.13 for `arrow-flight` 
(#6041)
     add 8f7624822 Remove `impl<T: AsRef<[u8]>> From<T> for Buffer`  that 
easily accidentally copies data (#6043)
     add bb5f12bd7 Make display of interval types more pretty (#6006)
     add 756b1fb26 Update snafu (#5930)
     add fe04e09b6 Update Parquet thrift generated structures (#6045)
     add 2e7f7ef9b Revert "Revert "Write Bloom filters between row groups 
instead of the end  (#…" (#5933)
     add effccc13a Revert "Update snafu (#5930)" (#6069)
     add 649d09d0f Update pyo3 requirement from 0.21.1 to 0.22.1 (fixed) (#6075)
     add 05e681d76 remove repeated codes to make the codes more concise. (#6080)
     add e40b31151 Add `unencoded_byte_array_data_bytes` to `ParquetMetaData` 
(#6068)
     add 2c669cf0b Update pyo3 requirement from 0.21.1 to 0.22.2

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   (36e205bf5)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/pyo3-0.22.2 
(2c669cf0b)

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:
 arrow-buffer/src/buffer/immutable.rs              |  33 +-
 arrow-cast/src/cast/mod.rs                        |  26 +-
 arrow-cast/src/display.rs                         | 155 ++++++---
 arrow-cast/src/pretty.rs                          |  54 +--
 arrow-csv/src/reader/mod.rs                       |  94 +----
 arrow-flight/Cargo.toml                           |  16 +-
 arrow-flight/examples/flight_sql_server.rs        |   6 +-
 arrow-flight/gen/Cargo.toml                       |   4 +-
 arrow-flight/src/arrow.flight.protocol.rs         |  36 +-
 arrow-flight/src/sql/arrow.flight.protocol.sql.rs |  12 +-
 arrow-flight/tests/client.rs                      | 108 +++++-
 arrow-flight/tests/common/fixture.rs              | 117 -------
 arrow-flight/tests/common/mod.rs                  |  20 --
 arrow-flight/tests/common/server.rs               |  23 --
 arrow-flight/tests/common/trailers_layer.rs       |  32 +-
 arrow-flight/tests/flight_sql_client.rs           | 119 -------
 arrow-flight/tests/flight_sql_client_cli.rs       | 176 +++++++++-
 arrow-integration-testing/Cargo.toml              |   4 +-
 arrow-pyarrow-integration-testing/Cargo.toml      |   2 +-
 arrow/benches/csv_reader.rs                       |  42 ---
 arrow/src/pyarrow.rs                              |   5 -
 object_store/CHANGELOG-old.md                     |  23 --
 object_store/CHANGELOG.md                         |  46 +--
 object_store/Cargo.toml                           |   2 +-
 object_store/dev/release/update_change_log.sh     |   5 +-
 object_store/src/aws/credential.rs                |   1 -
 object_store/src/client/mod.rs                    |  12 +-
 object_store/src/client/retry.rs                  |  60 ----
 object_store/src/gcp/credential.rs                |  48 +--
 parquet/Cargo.toml                                |   8 +
 parquet/examples/write_parquet.rs                 | 131 +++++++
 parquet/regen.sh                                  |   2 +-
 parquet/src/arrow/arrow_writer/byte_array.rs      |  19 +-
 parquet/src/arrow/arrow_writer/mod.rs             |  28 +-
 parquet/src/arrow/async_reader/metadata.rs        |   8 +-
 parquet/src/arrow/async_reader/mod.rs             |   1 +
 parquet/src/arrow/async_writer/mod.rs             |   4 +-
 parquet/src/column/writer/encoder.rs              |   8 +
 parquet/src/column/writer/mod.rs                  |  86 +++--
 parquet/src/data_type.rs                          |  11 +
 parquet/src/file/metadata/memory.rs               |   1 +
 parquet/src/file/metadata/mod.rs                  | 126 ++++---
 parquet/src/file/mod.rs                           |   2 +-
 parquet/src/file/page_index/index.rs              |  34 +-
 parquet/src/file/page_index/index_reader.rs       |  53 ++-
 parquet/src/file/page_index/mod.rs                |   1 +
 parquet/src/file/page_index/offset_index.rs       |  50 +++
 parquet/src/file/properties.rs                    |  36 ++
 parquet/src/file/serialized_reader.rs             |  15 +-
 parquet/src/file/statistics.rs                    |  16 +-
 parquet/src/file/writer.rs                        | 202 ++++++++---
 parquet/src/format.rs                             | 397 ++++++++++++++++++----
 parquet/src/lib.rs                                |   7 +-
 53 files changed, 1508 insertions(+), 1019 deletions(-)
 delete mode 100644 arrow-flight/tests/common/fixture.rs
 delete mode 100644 arrow-flight/tests/common/mod.rs
 delete mode 100644 arrow-flight/tests/flight_sql_client.rs
 create mode 100644 parquet/examples/write_parquet.rs
 create mode 100644 parquet/src/file/page_index/offset_index.rs

Reply via email to