This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/npm_and_yarn/js/eslint-8.52.0
in repository https://gitbox.apache.org/repos/asf/arrow.git
discard 3c27bf0fde MINOR: [JS] Bump eslint from 8.42.0 to 8.52.0 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)
add 0e4d9306ec MINOR: [JS] Bump eslint from 8.42.0 to 8.52.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 (3c27bf0fde)
\
N -- N -- N refs/heads/dependabot/npm_and_yarn/js/eslint-8.52.0
(0e4d9306ec)
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:
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 | 3152 ++++++++++----------
python/pyarrow/ipc.pxi | 2 +-
51 files changed, 2313 insertions(+), 1772 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