This is an automated email from the ASF dual-hosted git repository.
raulcd pushed a change to branch maint-13.0.0
in repository https://gitbox.apache.org/repos/asf/arrow.git
from 0f747311a4 GH-36311: [C++] Fix integer overflows in
`utf8_slice_codeunits` (#36575)
new dc6954a50c GH-36271: [R] Split out R6 classes and convenience
functions (#36394)
new a7a603422d GH-36598: [C++][MinGW] Fix build failure with Protobuf 23.4
(#36606)
new f5a4f12ffb GH-36482: [C++][CI] Fix sporadic test failures in
AsofJoinBasicTest (#36499)
new e77e13ae25 GH-36629: [CI][Python] Skip dask tests due to our
non-nanosecond changes in arrow->pandas conversion (#36630)
The 4 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:
.github/workflows/cpp.yml | 1 +
.github/workflows/ruby.yml | 1 +
ci/scripts/integration_dask.sh | 5 +++-
cpp/cmake_modules/FindProtobufAlt.cmake | 7 +++++
cpp/cmake_modules/ThirdpartyToolchain.cmake | 14 ++++++++--
cpp/src/arrow/acero/asof_join_node.cc | 6 ++---
cpp/src/gandiva/precompiled/CMakeLists.txt | 4 ++-
r/R/buffer.R | 7 +++--
r/R/chunked-array.R | 25 ++++++++++++++---
r/R/field.R | 5 +++-
r/R/record-batch.R | 6 +++--
r/R/schema.R | 7 ++---
r/R/table.R | 8 +++---
r/R/type.R | 5 ++--
r/_pkgdown.yml | 17 +++++++-----
r/man/{buffer.Rd => Buffer-class.Rd} | 12 +--------
r/man/{ChunkedArray.Rd => ChunkedArray-class.Rd} | 9 -------
r/man/{DataType.Rd => DataType-class.Rd} | 0
r/man/{Field.Rd => Field-class.Rd} | 16 -----------
r/man/Field.Rd | 21 +++++----------
r/man/{RecordBatch.Rd => RecordBatch-class.Rd} | 22 ---------------
r/man/{schema-class.Rd => Schema-class.Rd} | 0
r/man/{Table.Rd => Table-class.Rd} | 22 ---------------
r/man/buffer.Rd | 30 +++------------------
r/man/chunked_array.Rd | 34 ++++++++++++++++++++++++
r/man/data-type.Rd | 2 +-
r/man/read_schema.Rd | 4 +--
r/man/record_batch.Rd | 29 ++++++++++++++++++++
r/man/schema.Rd | 2 +-
r/man/table.Rd | 32 ++++++++++++++++++++++
30 files changed, 196 insertions(+), 157 deletions(-)
copy r/man/{buffer.Rd => Buffer-class.Rd} (77%)
rename r/man/{ChunkedArray.Rd => ChunkedArray-class.Rd} (95%)
rename r/man/{DataType.Rd => DataType-class.Rd} (100%)
copy r/man/{Field.Rd => Field-class.Rd} (64%)
rename r/man/{RecordBatch.Rd => RecordBatch-class.Rd} (82%)
rename r/man/{schema-class.Rd => Schema-class.Rd} (100%)
rename r/man/{Table.Rd => Table-class.Rd} (82%)
create mode 100644 r/man/chunked_array.Rd
create mode 100644 r/man/record_batch.Rd
create mode 100644 r/man/table.Rd