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

github-bot pushed a change to branch dependabot/npm_and_yarn/js/rollup-3.29.4
in repository https://gitbox.apache.org/repos/asf/arrow.git


    omit cc13adc4fc MINOR: [JS] Bump rollup from 3.25.0 to 3.29.4 in /js
     add 87a1852d35 GH-38511: [Java] Add getTransferPair(Field, 
BufferAllocator, CallBack) for StructVector and MapVector (#38512)
     add c6e62f1fb5 MINOR: [C++][FlightRPC] Add missing app_metadata arguments 
(#38548)
     add fe9030272c MINOR: [Docs][Python] Fix typo on pycapsule and ipc docs 
(#38550)
     add ff762a5878 GH-38339: [C++][CMake] Use transitive dependency for system 
GoogleTest (#38340)
     add cead3dd3f0 GH-37429: [C++] Add arrow::ipc::StreamDecoder::Reset() 
(#37970)
     add 728185119b GH-38542: [C++][Parquet] Faster scalar BYTE_STREAM_SPLIT 
(#38529)
     add d8aeb42709 GH-37657: [JS] Run bin scripts with ts-node (#38500)
     new 1dd5f5f10d MINOR: [JS] Bump rollup from 3.25.0 to 3.29.4 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   (cc13adc4fc)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/js/rollup-3.29.4 
(1dd5f5f10d)

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_test.sh                             |    2 +-
 cpp/CMakeLists.txt                                 |    6 +-
 cpp/cmake_modules/FindGTestAlt.cmake               |    3 +
 cpp/src/arrow/acero/CMakeLists.txt                 |    3 +-
 cpp/src/arrow/adapters/orc/CMakeLists.txt          |   10 +-
 cpp/src/arrow/compute/CMakeLists.txt               |    4 +-
 cpp/src/arrow/compute/kernels/CMakeLists.txt       |    3 +-
 cpp/src/arrow/dataset/CMakeLists.txt               |    3 +-
 cpp/src/arrow/filesystem/CMakeLists.txt            |    2 +-
 cpp/src/arrow/flight/CMakeLists.txt                |    1 -
 .../arrow/flight/integration_tests/CMakeLists.txt  |    7 +-
 cpp/src/arrow/flight/perf_server.cc                |    2 +-
 cpp/src/arrow/gpu/CMakeLists.txt                   |    9 +-
 cpp/src/arrow/ipc/read_write_test.cc               |   37 +
 cpp/src/arrow/ipc/reader.cc                        |   79 +-
 cpp/src/arrow/ipc/reader.h                         |    8 +
 cpp/src/arrow/util/CMakeLists.txt                  |    1 +
 ...stream_split.h => byte_stream_split_internal.h} |  148 +-
 cpp/src/arrow/util/byte_stream_split_test.cc       |  172 ++
 cpp/src/parquet/CMakeLists.txt                     |   37 +-
 cpp/src/parquet/encoding.cc                        |    6 +-
 cpp/src/parquet/encoding_benchmark.cc              |    2 +-
 dev/archery/archery/integration/tester.py          |    5 +-
 dev/archery/archery/integration/tester_js.py       |   26 +-
 dev/archery/archery/integration/util.py            |    5 +-
 .../format/CDataInterface/PyCapsuleInterface.rst   |    2 +-
 .../org/apache/arrow/vector/complex/MapVector.java |    5 +
 .../apache/arrow/vector/complex/StructVector.java  |    9 +
 .../org/apache/arrow/vector/TestMapVector.java     |   23 +
 .../org/apache/arrow/vector/TestStructVector.java  |   12 +
 js/.vscode/launch.json                             |   57 +-
 js/bin/{arrow2csv.js => arrow2csv.cjs}             |    0
 js/bin/{file-to-stream.js => file-to-stream.ts}    |   17 +-
 js/bin/{integration.js => integration.ts}          |   79 +-
 js/bin/{json-to-arrow.js => json-to-arrow.ts}      |   26 +-
 js/bin/package.json                                |    3 -
 ...ffer-alignment.js => print-buffer-alignment.ts} |   26 +-
 js/bin/{stream-to-file.js => stream-to-file.ts}    |   13 +-
 js/gulp/closure-task.js                            |    3 +-
 js/index.mjs                                       |    2 +-
 js/index.ts                                        |    2 +-
 js/package.json                                    |   25 +-
 js/perf/index.ts                                   |   15 +-
 js/src/io/adapters.ts                              |    8 +-
 js/src/recordbatch.ts                              |    2 +-
 js/tsconfig.json                                   |   15 +-
 js/tsconfig/tsconfig.es2015.cls.json               |    2 -
 js/tsconfig/tsconfig.es5.cls.json                  |    2 -
 js/tsconfig/tsconfig.esnext.cls.json               |    2 -
 js/yarn.lock                                       | 3207 ++++++++++----------
 python/pyarrow/ipc.pxi                             |    2 +-
 51 files changed, 2343 insertions(+), 1797 deletions(-)
 rename cpp/src/arrow/util/{byte_stream_split.h => 
byte_stream_split_internal.h} (84%)
 create mode 100644 cpp/src/arrow/util/byte_stream_split_test.cc
 rename js/bin/{arrow2csv.js => arrow2csv.cjs} (100%)
 rename js/bin/{file-to-stream.js => file-to-stream.ts} (73%)
 rename js/bin/{integration.js => integration.ts} (76%)
 rename js/bin/{json-to-arrow.js => json-to-arrow.ts} (82%)
 delete mode 100644 js/bin/package.json
 rename js/bin/{print-buffer-alignment.js => print-buffer-alignment.ts} (86%)
 rename js/bin/{stream-to-file.js => stream-to-file.ts} (80%)
 mode change 100644 => 100755 js/perf/index.ts

Reply via email to