You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by gi...@apache.org on 2022/12/20 18:19:24 UTC

[arrow-rs] branch dependabot/cargo/master/multiversion-0.7.0 updated (ea60e30ce -> 38b04361b)

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

github-bot pushed a change to branch dependabot/cargo/master/multiversion-0.7.0
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


 discard ea60e30ce Update multiversion requirement from 0.6.1 to 0.7.0
     add 225ea9327 feat(object_store): add PrefixObjectStore (#3329)
     add 75ef138c2 Support UnionArray in ffi (#3305)
     add 19f8e8cb0 feat(object_store): parse well-known storage urls (#3327)
     add b2a12836d Update base64 to 0.20 (#3335)
     add a973d39a6 Update prost-build 0.11.4 (#3334)
     add 2ad0705a5 Support casting from String to Decimal (#3281)
     add 31d5706ee Minor: Update release instructions for new crates (#3337)
     add 46b284859 Experiment (#3333)
     add 2749dcca5 Optimize bulk writing of all blocks of bloom filter (#3340)
     add a93859b07 add map array to pretty print (#3339)
     add a0a588066 feat: configure null value in arrow csv writer (#3342)
     add 915115a9f Update AWS SDK (#3349)
     add 3a48242e3 Add UnionArray test to arrow-pyarrow integration test (#3343)
     add 5ecb0e075 Fix clippy errors (#3352)
     add 6d5f02439 Upstream newline_delimited_stream and ChunkedStore from DataFusion (#3341)
     add 309cf5cd2 Use ArrayData::ptr_eq in DictionaryTracker (#3354)
     add 3039633d5 Deprecate flight_data_from_arrow_batch (#3353)
     add 89354ca7c More clippy lint fixes (#3355)
     add 07284c551 Add CSV reader benchmark (#3338) (#3357)
     add 491b0239a Fix unary_dyn for decimal scalar arithmetic computation (#3345)
     add a8c968584 Fix incorrect output string from try_to_type (#3351)
     add c3444334c Add csv-core based reader (#3338) (#3365)
     add 5e4789402 add support for content-type in `ClientOptions` (#3358)
     add 2cf4abb0f Update proc-macro2 requirement from =1.0.47 to =1.0.49 (#3369)
     add e2abb4bf5 Put BufWriter into TrackedWrite (#3361)
     add e664208b7 Add parquet ObjectStore integration (#3370)
     add 8cab7a2b4 Add CSV build_buffered (#3338) (#3368)
     add 0f196b8da Use custom Any instead of prost_types (#3360)
     add f521e11dc feat: add append_key_value_metadata (#3367)
     add 8b84d4d59 Use bytes in arrow-flight (#3359)
     add c1c97f134 Don't flush in the middle (#3374)
     add 9cdc1c1e1 Document all features (#3377)
     add 38b04361b Update multiversion requirement from 0.6.1 to 0.7.0

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   (ea60e30ce)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/multiversion-0.7.0 (38b04361b)

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/arrow_flight.yml                 |   2 +-
 arrow-array/src/builder/union_builder.rs           |   2 +-
 arrow-array/src/types.rs                           |   2 +-
 arrow-buffer/src/bigint.rs                         |  15 +-
 arrow-cast/src/cast.rs                             | 537 ++++++++++++++++++++-
 arrow-cast/src/display.rs                          |  77 +++
 arrow-csv/Cargo.toml                               |   1 +
 arrow-csv/src/{reader.rs => reader/mod.rs}         | 417 ++++++++--------
 arrow-csv/src/reader/records.rs                    | 266 ++++++++++
 arrow-csv/src/writer.rs                            |  23 +-
 arrow-data/src/data.rs                             |   4 +-
 arrow-flight/Cargo.toml                            |  14 +-
 arrow-flight/build.rs                              |  10 +-
 arrow-flight/examples/flight_sql_server.rs         |  35 +-
 arrow-flight/src/arrow.flight.protocol.rs          |  68 ++-
 arrow-flight/src/lib.rs                            |  29 +-
 arrow-flight/src/sql/arrow.flight.protocol.sql.rs  |  47 +-
 arrow-flight/src/sql/client.rs                     |  37 +-
 arrow-flight/src/sql/mod.rs                        |  67 ++-
 arrow-flight/src/sql/server.rs                     |  32 +-
 arrow-flight/src/utils.rs                          |  20 +-
 .../flight_client_scenarios/auth_basic_proto.rs    |   6 +-
 .../flight_client_scenarios/integration_test.rs    |   2 +-
 .../src/flight_client_scenarios/middleware.rs      |   5 +-
 .../src/flight_server_scenarios.rs                 |   2 +-
 .../flight_server_scenarios/auth_basic_proto.rs    |   4 +-
 .../flight_server_scenarios/integration_test.rs    |   4 +-
 .../src/flight_server_scenarios/middleware.rs      |   3 +-
 arrow-ipc/src/convert.rs                           |   4 +-
 arrow-ipc/src/writer.rs                            |  13 +-
 arrow-ord/Cargo.toml                               |   3 +
 arrow-ord/src/comparison.rs                        |  20 +-
 .../tests/test_sql.py                              |  43 +-
 arrow-string/Cargo.toml                            |   3 +
 arrow/Cargo.toml                                   |   7 +-
 arrow/benches/{row_format.rs => csv_reader.rs}     | 106 ++--
 arrow/src/array/ffi.rs                             |   8 +-
 arrow/src/compute/kernels/arithmetic.rs            |  20 +-
 arrow/src/compute/kernels/arity.rs                 |  17 +-
 arrow/src/compute/kernels/temporal.rs              |  20 +-
 arrow/src/datatypes/ffi.rs                         |  56 +++
 arrow/src/ffi.rs                                   | 166 ++++++-
 arrow/src/util/data_gen.rs                         |   2 +-
 arrow/src/util/pretty.rs                           |   4 +-
 arrow/src/util/test_util.rs                        |   2 +-
 arrow/tests/array_validation.rs                    |  14 +-
 dev/release/README.md                              |   2 +
 object_store/Cargo.toml                            |   6 +-
 object_store/src/aws/client.rs                     |  10 +-
 object_store/src/aws/mod.rs                        |  97 +++-
 object_store/src/azure/client.rs                   |   7 +-
 object_store/src/azure/credential.rs               |   2 +-
 object_store/src/azure/mod.rs                      | 111 ++++-
 object_store/src/chunked.rs                        | 247 ++++++++++
 object_store/src/client/mod.rs                     |  39 ++
 object_store/src/delimited.rs                      | 270 +++++++++++
 object_store/src/gcp/credential.rs                 |  10 +-
 object_store/src/gcp/mod.rs                        | 111 ++++-
 object_store/src/lib.rs                            |  19 +-
 object_store/src/local.rs                          |   4 +-
 object_store/src/path/mod.rs                       |  45 ++
 object_store/src/prefix.rs                         | 281 +++++++++++
 parquet/Cargo.toml                                 |   7 +-
 parquet/benches/arrow_writer.rs                    |   9 +-
 parquet/src/arrow/arrow_reader/mod.rs              |  22 +-
 parquet/src/arrow/arrow_writer/byte_array.rs       |   4 +-
 parquet/src/arrow/arrow_writer/mod.rs              |   9 +-
 parquet/src/arrow/async_reader/metadata.rs         | 159 ++++++
 .../arrow/{async_reader.rs => async_reader/mod.rs} |  10 +-
 parquet/src/arrow/async_reader/store.rs            | 158 ++++++
 parquet/src/bloom_filter/mod.rs                    | 133 +++--
 parquet/src/column/writer/mod.rs                   |  16 +-
 parquet/src/encodings/decoding.rs                  |   2 +-
 parquet/src/encodings/encoding/dict_encoder.rs     |   4 +-
 parquet/src/encodings/rle.rs                       |   2 +-
 parquet/src/file/writer.rs                         | 124 ++++-
 parquet/src/schema/types.rs                        |   2 +-
 parquet/src/util/bit_util.rs                       |   8 +-
 78 files changed, 3560 insertions(+), 609 deletions(-)
 rename arrow-csv/src/{reader.rs => reader/mod.rs} (90%)
 create mode 100644 arrow-csv/src/reader/records.rs
 copy arrow/benches/{row_format.rs => csv_reader.rs} (51%)
 create mode 100644 object_store/src/chunked.rs
 create mode 100644 object_store/src/delimited.rs
 create mode 100644 object_store/src/prefix.rs
 create mode 100644 parquet/src/arrow/async_reader/metadata.rs
 rename parquet/src/arrow/{async_reader.rs => async_reader/mod.rs} (99%)
 create mode 100644 parquet/src/arrow/async_reader/store.rs