This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/npm_and_yarn/js/esbuild-0.19.0
in repository https://gitbox.apache.org/repos/asf/arrow.git
omit 64dd80e6f9 MINOR: [JS] Bump esbuild from 0.18.0 to 0.19.0 in /js
add 56b6051c46 MINOR: [C#] Bump System.Runtime.CompilerServices.Unsafe
from 4.5.3 to 4.7.1 in /csharp (#37074)
add af94a42df8 MINOR: [C#] Bump ZstdSharp.Port from 0.6.7 to 0.7.2 in
/csharp (#37075)
add f8a4548282 MINOR: [C#] Bump Google.Protobuf from 3.19.3 to 3.24.0 in
/csharp (#37077)
add f2b1c145da MINOR: [JS] Bump memfs from 3.5.3 to 4.2.1 in /js (#37078)
add b668595dda GH-35176: [C++] Add support for disabling threading for
emscripten (#35672)
add 2972e494ff GH-37019: [R] Documentation for read_parquet() et al needs
updating (#37020)
add d3ccc833a6 GH-36867: [C++] Add a struct_ and schema overload taking a
vector of (name, type) pairs (#36915)
add 1a00fecf7d GH-36674: [C++] Use anonymous namespace in
arrow/ipc/reader.cc (#36937)
add 9f183fc3e3 GH-36512: [C++][FlightRPC] Add async GetFlightInfo client
call (#36517)
add 6e6e6f0340 GH-36931: [C++] Add cumulative_mean function (#36932)
add 7c8f398f32 GH-35273: [C++] Add integer round kernels (#36289)
add 10df380573 MINOR: [JS] Bump eslint-plugin-jest from 27.2.1 to 27.2.3
in /js (#37079)
new 5bdad738dd MINOR: [JS] Bump esbuild from 0.18.0 to 0.19.0 in /js
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 (64dd80e6f9)
\
N -- N -- N refs/heads/dependabot/npm_and_yarn/js/esbuild-0.19.0
(5bdad738dd)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
ci/scripts/cpp_build.sh | 1 +
cpp/cmake_modules/DefineOptions.cmake | 2 +
cpp/src/arrow/acero/CMakeLists.txt | 21 +-
cpp/src/arrow/acero/asof_join_node.cc | 5 +
cpp/src/arrow/acero/bloom_filter.cc | 4 +
cpp/src/arrow/acero/bloom_filter_test.cc | 7 +-
cpp/src/arrow/acero/plan_test.cc | 4 +
cpp/src/arrow/acero/task_util.cc | 5 +
cpp/src/arrow/acero/task_util.h | 1 +
cpp/src/arrow/acero/task_util_test.cc | 7 +
cpp/src/arrow/compute/api_vector.cc | 5 +
cpp/src/arrow/compute/api_vector.h | 11 +
cpp/src/arrow/compute/kernels/codegen_internal.h | 5 +
cpp/src/arrow/compute/kernels/scalar_round.cc | 758 ++++++++++++++-------
.../kernels/scalar_round_arithmetic_test.cc | 344 +++++++++-
.../arrow/compute/kernels/vector_cumulative_ops.cc | 195 ++++--
.../compute/kernels/vector_cumulative_ops_test.cc | 100 ++-
cpp/src/arrow/dataset/dataset_writer_test.cc | 10 +
cpp/src/arrow/engine/substrait/function_test.cc | 2 +-
cpp/src/arrow/engine/substrait/serde_test.cc | 11 +
cpp/src/arrow/engine/substrait/type_internal.cc | 7 +-
cpp/src/arrow/flight/CMakeLists.txt | 5 +
cpp/src/arrow/flight/api.h | 1 +
cpp/src/arrow/flight/client.cc | 58 ++
cpp/src/arrow/flight/client.h | 28 +
cpp/src/arrow/flight/flight_internals_test.cc | 6 +-
cpp/src/arrow/flight/flight_test.cc | 25 +-
cpp/src/arrow/flight/serialization_internal.cc | 24 +-
cpp/src/arrow/flight/serialization_internal.h | 2 +-
cpp/src/arrow/flight/test_definitions.cc | 267 +++++++-
cpp/src/arrow/flight/test_definitions.h | 26 +
cpp/src/arrow/flight/transport.cc | 16 +
cpp/src/arrow/flight/transport.h | 50 +-
cpp/src/arrow/flight/transport/grpc/grpc_client.cc | 194 +++++-
.../arrow/flight/transport/grpc/util_internal.cc | 107 ++-
.../arrow/flight/transport/grpc/util_internal.h | 8 +
cpp/src/arrow/flight/type_fwd.h | 5 +
cpp/src/arrow/flight/types.cc | 92 ++-
cpp/src/arrow/flight/types.h | 82 ++-
cpp/src/arrow/flight/types_async.h | 80 +++
cpp/src/arrow/io/memory_test.cc | 4 +
cpp/src/arrow/ipc/reader.cc | 81 ++-
cpp/src/arrow/testing/gtest_util.cc | 89 +++
cpp/src/arrow/type.cc | 28 +
cpp/src/arrow/type_fwd.h | 29 +
cpp/src/arrow/type_test.cc | 13 +
cpp/src/arrow/util/async_generator_test.cc | 11 +
cpp/src/arrow/util/config.h.cmake | 1 +
cpp/src/arrow/util/future.cc | 33 +-
cpp/src/arrow/util/future_test.cc | 7 +-
cpp/src/arrow/util/iterator_test.cc | 2 +
cpp/src/arrow/util/task_group.cc | 8 +
cpp/src/arrow/util/thread_pool.cc | 257 ++++++-
cpp/src/arrow/util/thread_pool.h | 103 ++-
cpp/src/arrow/util/thread_pool_test.cc | 41 ++
cpp/src/parquet/arrow/schema.cc | 2 +-
cpp/src/parquet/encryption/key_management_test.cc | 6 +
.../Apache.Arrow.Compression.csproj | 2 +-
.../Apache.Arrow.Flight/Apache.Arrow.Flight.csproj | 2 +-
csharp/src/Apache.Arrow/Apache.Arrow.csproj | 2 +-
dev/tasks/tasks.yml | 9 +
docs/source/cpp/compute.rst | 76 ++-
js/package.json | 4 +-
js/yarn.lock | 47 +-
python/pyarrow/tests/test_compute.py | 4 +-
r/R/csv.R | 6 +-
r/R/dplyr-funcs-doc.R | 2 +-
r/R/feather.R | 2 +-
r/R/ipc-stream.R | 4 +-
r/R/json.R | 2 +-
r/R/parquet.R | 4 +-
r/man/acero.Rd | 2 +-
r/man/read_delim_arrow.Rd | 6 +-
r/man/read_feather.Rd | 4 +-
r/man/read_ipc_stream.Rd | 4 +-
r/man/read_json_arrow.Rd | 4 +-
r/man/read_parquet.Rd | 6 +-
77 files changed, 2969 insertions(+), 519 deletions(-)
create mode 100644 cpp/src/arrow/flight/types_async.h