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 e878e71  (tag)
      to 00fc119  (tag)
 tagging 1b0c91b02de5e920bfaccca4bc86a856acd6c336 (commit)
 replaces apache-arrow-3.0.0
      by Krisztián Szűcs
      on Thu Jan 20 23:08:18 2022 +0100

- Log -----------------------------------------------------------------
[Release] Apache Arrow Release 7.0.0
-----------------------------------------------------------------------

    omit ce5d4d1  [Release] Update versions for 7.0.0
    omit 55de16e  [Release] Update .deb/.rpm changelogs for 7.0.0
    omit f2f6383  [Release] Update CHANGELOG.md for 7.0.0
     add c39caed  ARROW-11297: [C++][Python] Add ORC writer options
     add b1b8728  ARROW-14609 [R] left_join by argument error message mismatch
     add a3efe72  ARROW-12735: [C++] Write GDB plugin
     add 22dc537  ARROW-15388: [C++] Avoid including absl from flatbuffers
     add 33f89f6  ARROW-15399: [Release][JS] Increase minimum NodeJS version to 
16
     add d49e216  ARROW-15394: [CI][Docs] Fix env variable to ensure doxygen is 
used in doc build
     add 6b0ce27  ARROW-15393: [Release][Crossbow] Fall back to <version>dev0 
when the generated scm version number doesn't have a distance
     add cba3ee6  MINOR: [CI] Skip matlab builds if the pull request has WIP in 
its title (#12205)
     add 203fabf  [Release] Update CHANGELOG.md for 7.0.0
     add 55f1e09  [Release] Update .deb/.rpm changelogs for 7.0.0
     add 1b0c91b  [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   (e878e71)
            \
             N -- N -- N   refs/tags/apache-arrow-7.0.0 (00fc119)

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:
 .github/workflows/comment_bot.yml                  |    2 +
 .github/workflows/matlab.yml                       |    1 +
 CHANGELOG.md                                       |    9 +
 ci/scripts/cpp_build.sh                            |    2 +-
 ci/scripts/python_test.sh                          |    1 +
 cpp/gdb_arrow.py                                   | 1894 ++++++++++++++++++++
 cpp/src/arrow/CMakeLists.txt                       |    6 +-
 cpp/src/arrow/adapters/orc/CMakeLists.txt          |    3 +-
 cpp/src/arrow/adapters/orc/adapter.cc              |  184 +-
 cpp/src/arrow/adapters/orc/adapter.h               |   95 +-
 cpp/src/arrow/adapters/orc/adapter_test.cc         |   63 +-
 .../{util/launder.h => adapters/orc/options.cc}    |   23 +-
 cpp/src/arrow/adapters/orc/options.h               |  119 ++
 .../adapters/orc/{adapter_util.cc => util.cc}      |    2 +-
 .../arrow/adapters/orc/{adapter_util.h => util.h}  |    0
 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/thirdparty/flatbuffers/README.md               |   42 +
 .../flatbuffers/include/flatbuffers/base.h         |    7 -
 dev/archery/archery/crossbow/core.py               |    2 +-
 dev/release/verify-release-candidate.sh            |    3 +-
 .../apache-arrow-apt-source/debian/changelog       |    2 +-
 .../linux-packages/apache-arrow/debian/changelog   |    2 +-
 dev/tasks/verify-rc/github.linux.amd64.yml         |    2 +-
 docs/source/cpp/api/formats.rst                    |   17 +-
 docs/source/python/api/formats.rst                 |    3 +
 python/pyarrow/_orc.pxd                            |   77 +-
 python/pyarrow/_orc.pyx                            |  287 ++-
 python/pyarrow/includes/libarrow.pxd               |    4 +
 python/pyarrow/lib.pyx                             |    4 +
 python/pyarrow/orc.py                              |  285 ++-
 python/pyarrow/tests/parquet/test_basic.py         |    2 +-
 python/pyarrow/tests/test_dataset.py               |    8 +-
 python/pyarrow/tests/test_gdb.py                   |  854 +++++++++
 python/pyarrow/tests/test_orc.py                   |  284 +++
 r/R/dplyr-join.R                                   |   30 +-
 r/R/util.R                                         |    7 +-
 r/tests/testthat/_snaps/dplyr-join.md              |   46 +
 r/tests/testthat/test-dplyr-join.R                 |   52 +-
 r/tests/testthat/test-parquet.R                    |    2 +-
 45 files changed, 4763 insertions(+), 171 deletions(-)
 create mode 100644 cpp/gdb_arrow.py
 copy cpp/src/arrow/{util/launder.h => adapters/orc/options.cc} (76%)
 create mode 100644 cpp/src/arrow/adapters/orc/options.h
 rename cpp/src/arrow/adapters/orc/{adapter_util.cc => util.cc} (99%)
 rename cpp/src/arrow/adapters/orc/{adapter_util.h => util.h} (100%)
 create mode 100644 cpp/src/arrow/python/gdb.cc
 copy cpp/src/arrow/python/{init.h => gdb.h} (89%)
 create mode 100644 cpp/thirdparty/flatbuffers/README.md
 create mode 100644 python/pyarrow/tests/test_gdb.py
 create mode 100644 r/tests/testthat/_snaps/dplyr-join.md

Reply via email to