This is an automated email from the ASF dual-hosted git repository.
kszucs pushed a change to annotated tag apache-arrow-7.0.0
in repository https://gitbox.apache.org/repos/asf/arrow.git.
*** WARNING: tag apache-arrow-7.0.0 was modified! ***
from 2254b17 (tag)
to 4918f6f (tag)
tagging cc809bd98a04f562a38107858cab669db0768cc1 (commit)
replaces apache-arrow-3.0.0
by Krisztián Szűcs
on Mon Jan 24 12:02:59 2022 +0100
- Log -----------------------------------------------------------------
[Release] Apache Arrow Release 7.0.0
-----------------------------------------------------------------------
omit b370308 [Release] Update versions for 7.0.0
omit 6da9c55 [Release] Update .deb/.rpm changelogs for 7.0.0
omit 493ed86 [Release] Update CHANGELOG.md for 7.0.0
omit a16635e ARROW-15392: [JS] Disable flaky javascript unittest
omit 599d1e6 Revert "ARROW-12735: [C++] Write GDB plugin"
add 3fa2d21 ARROW-14816: [R] Implement bindings for lubridate::mday
add e291d0f ARROW-15154: [R] Expose ReferencedBufferSize to R
add 664a158 MINOR: [Release] Correctly detect staging flag during binary
upload step (#12226)
add 7f0867e ARROW-15416: [Python] Add option to skip gdb tests
add 54460d9 ARROW-15420: [Python] Skip if GDB script is not found
add 8e34b64 ARROW-12880: [C++][Gandiva] Add castTIME(int32),
castTIMESTAMP(int64) and castTIME(utf8) functions
add a8c0b1f ARROW-15417: [Python][Packaging] Use vcpkg manifest to
install wheel dependencies; downgrade AWS SDK by building the bundled version
add 83041c8 ARROW-15392: [JS] Disable flaky javascript unittest
add 78ff253 [Release] Update CHANGELOG.md for 7.0.0
add e87ca23 [Release] Update .deb/.rpm changelogs for 7.0.0
add cc809bd [Release] Update versions for 7.0.0
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
annotated tag 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 (2254b17)
\
N -- N -- N refs/tags/apache-arrow-7.0.0 (4918f6f)
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:
CHANGELOG.md | 9 +-
ci/docker/java-jni-manylinux-201x.dockerfile | 23 +-
ci/docker/python-wheel-manylinux-201x.dockerfile | 54 +-
ci/docker/python-wheel-windows-vs2017.dockerfile | 66 +-
ci/scripts/java_jni_manylinux_build.sh | 3 -
ci/scripts/python_test.sh | 1 +
ci/scripts/python_wheel_macos_build.sh | 10 +-
ci/scripts/python_wheel_manylinux_build.sh | 7 +-
ci/scripts/python_wheel_windows_build.bat | 6 +-
ci/scripts/python_wheel_windows_test.bat | 18 +-
ci/vcpkg/ports.patch | 20 +-
ci/vcpkg/vcpkg.json | 133 ++
cpp/cmake_modules/ThirdpartyToolchain.cmake | 32 +-
cpp/gdb_arrow.py | 1894 ++++++++++++++++++++
cpp/src/arrow/ipc/json_simple.cc | 14 +
cpp/src/arrow/ipc/json_simple.h | 6 +
cpp/src/arrow/ipc/json_simple_test.cc | 19 +
cpp/src/arrow/python/CMakeLists.txt | 1 +
cpp/src/arrow/python/gdb.cc | 449 +++++
cpp/src/arrow/python/{init.h => gdb.h} | 11 +-
cpp/src/arrow/testing/gtest_util.cc | 8 +-
cpp/src/gandiva/function_registry_datetime.cc | 7 +
cpp/src/gandiva/precompiled/time.cc | 97 +
cpp/src/gandiva/precompiled/time_test.cc | 68 +-
cpp/src/gandiva/precompiled/types.h | 2 +
cpp/src/gandiva/tests/date_time_test.cc | 56 +-
dev/release/binary-task.rb | 2 +-
dev/tasks/java-jars/github.yml | 2 +-
.../apache-arrow-apt-source/debian/changelog | 2 +-
.../yum/apache-arrow-release.spec.in | 2 +-
.../linux-packages/apache-arrow/debian/changelog | 2 +-
.../linux-packages/apache-arrow/yum/arrow.spec.in | 2 +-
dev/tasks/python-wheels/github.osx.amd64.yml | 44 +-
dev/tasks/python-wheels/github.osx.arm64.yml | 32 +-
docker-compose.yml | 1 +
python/pyarrow/includes/libarrow.pxd | 4 +
python/pyarrow/lib.pyx | 4 +
python/pyarrow/tests/conftest.py | 12 +-
python/pyarrow/tests/test_gdb.py | 861 +++++++++
r/R/array.R | 2 +
r/R/arrowExports.R | 16 +
r/R/chunked-array.R | 2 +
r/R/expression.R | 1 +
r/R/record-batch.R | 2 +
r/R/table.R | 2 +
r/src/array.cpp | 6 +
r/src/arrowExports.cpp | 66 +-
r/src/chunkedarray.cpp | 7 +
r/src/recordbatch.cpp | 9 +
r/src/table.cpp | 6 +
r/tests/testthat/test-dplyr-funcs-datetime.R | 18 +
51 files changed, 3915 insertions(+), 206 deletions(-)
create mode 100644 ci/vcpkg/vcpkg.json
create mode 100644 cpp/gdb_arrow.py
create mode 100644 cpp/src/arrow/python/gdb.cc
copy cpp/src/arrow/python/{init.h => gdb.h} (89%)
create mode 100644 python/pyarrow/tests/test_gdb.py