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

kszucs pushed a change to annotated tag apache-arrow-4.0.0
in repository https://gitbox.apache.org/repos/asf/arrow.git.


*** WARNING: tag apache-arrow-4.0.0 was modified! ***

    from da089fd  (tag)
      to d9b35dd  (tag)
 tagging eb5f9d6f7a1fefbff4af0c3cabef8dcad9a5360b (commit)
 replaces apache-arrow-3.0.0
      by Krisztián Szűcs
      on Wed Apr 21 14:16:11 2021 +0200

- Log -----------------------------------------------------------------
[Release] Apache Arrow Release 4.0.0
-----------------------------------------------------------------------

    omit 9f0082d  [Release] Update versions for 4.0.0
    omit 683b4f5  [Release] Update .deb/.rpm changelogs for 4.0.0
    omit 8730996  [Release] Update CHANGELOG.md for 4.0.0
     add 2d791b4  ARROW-12395: Create RunInSerialExecutor benchmark
     add 1dc8f94  ARROW-7906: [C++] [Python] Add ORC write support
     add 2b2eeeb  ARROW-12289: [C++] Create basic AsyncScanner implementation
     add 4d3ce2b  ARROW-12423: [Docs] Remove Codecov badge
     add 32e0778  MINOR: [JS] Remove Travis badge (#10105)
     add 930c381  ARROW-12475: [C++] Fix 'warn_unused_result' warning
     add 6b4a4aa  ARROW-12466: [Python] Avoid AttributeError crash when 
comparing with None
     add 893bcc2  ARROW-12477: [Release] Download aarch64 miniforge
     add 3dd6d32  ARROW-12488: [GLib] Use g_memdup2() with GLib 2.68 or later
     add 2ed54db  ARROW-12325: [C++] [CI] Nightly gandiva build failing due to 
failure of compiler to move return value
     add c408048  ARROW-12467: [C++][Gandiva] Add support for LLVM12
     add 7c4a07e  ARROW-12487: [C++][Dataset] Fix ScanBatches() hanging
     add be258f2  ARROW-12485: [C++] Use mimalloc as the default memory 
allocator on macOS
     new 66f11df  [Release] Update CHANGELOG.md for 4.0.0
     new 7790a1b  [Release] Update .deb/.rpm changelogs for 4.0.0
     new eb5f9d6  [Release] Update versions for 4.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   (da089fd)
            \
             N -- N -- N   refs/tags/apache-arrow-4.0.0 (d9b35dd)

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 3 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:
 .env                                               |   2 +-
 .travis.yml                                        |   5 +-
 CHANGELOG.md                                       |  14 +-
 README.md                                          |   1 -
 c_glib/arrow-glib/basic-data-type.cpp              |   3 +
 c_glib/plasma-glib/client.cpp                      |   6 +-
 c_glib/test/helper/buildable.rb                    |  35 +-
 c_glib/test/test-orc-file-reader.rb                |  52 +-
 cpp/CMakeLists.txt                                 |   1 +
 cpp/src/arrow/adapters/orc/adapter.cc              | 188 ++++-
 cpp/src/arrow/adapters/orc/adapter.h               |  35 +-
 cpp/src/arrow/adapters/orc/adapter_test.cc         | 556 ++++++++++++++-
 cpp/src/arrow/adapters/orc/adapter_util.cc         | 787 +++++++++++++++++++--
 cpp/src/arrow/adapters/orc/adapter_util.h          |  18 +-
 cpp/src/arrow/dataset/dataset.cc                   |  55 +-
 cpp/src/arrow/dataset/dataset.h                    |   8 +
 cpp/src/arrow/dataset/file_base.cc                 |  59 +-
 cpp/src/arrow/dataset/file_base.h                  |   8 +-
 cpp/src/arrow/dataset/file_csv.cc                  |   5 +-
 cpp/src/arrow/dataset/file_csv.h                   |   2 +-
 cpp/src/arrow/dataset/file_ipc.cc                  |   4 +-
 cpp/src/arrow/dataset/file_ipc.h                   |   2 +-
 cpp/src/arrow/dataset/file_parquet.cc              |   2 +-
 cpp/src/arrow/dataset/file_parquet.h               |   2 +-
 cpp/src/arrow/dataset/file_test.cc                 |  46 ++
 cpp/src/arrow/dataset/scanner.cc                   | 315 ++++++++-
 cpp/src/arrow/dataset/scanner.h                    |  47 +-
 cpp/src/arrow/dataset/scanner_test.cc              | 295 +++++---
 cpp/src/arrow/dataset/test_util.h                  |  37 +-
 cpp/src/arrow/memory_pool.cc                       |   9 +-
 cpp/src/arrow/testing/random.cc                    |  15 +-
 cpp/src/arrow/testing/random.h                     |  13 +
 cpp/src/arrow/util/async_generator.h               |  19 +-
 cpp/src/arrow/util/thread_pool_benchmark.cc        |  17 +
 cpp/src/arrow/util/vector.h                        |   4 +-
 dev/release/verify-release-candidate.sh            |   2 +
 .../apache-arrow-apt-source/debian/changelog       |   2 +-
 .../yum/apache-arrow-release.spec.in               |   2 +-
 .../apache-arrow/apt/debian-bullseye/Dockerfile    |   4 +-
 .../apache-arrow/apt/debian-buster/Dockerfile      |   4 +-
 .../apache-arrow/apt/ubuntu-focal/Dockerfile       |   4 +-
 .../apache-arrow/apt/ubuntu-groovy/Dockerfile      |   4 +-
 .../linux-packages/apache-arrow/debian/changelog   |   2 +-
 .../linux-packages/apache-arrow/yum/arrow.spec.in  |   2 +-
 js/README.md                                       |   1 -
 python/pyarrow/_orc.pxd                            |  10 +-
 python/pyarrow/_orc.pyx                            |  30 +-
 python/pyarrow/array.pxi                           |   4 +-
 python/pyarrow/orc.py                              |  53 ++
 python/pyarrow/tests/test_array.py                 |   3 +
 python/pyarrow/tests/test_orc.py                   |  77 +-
 ruby/red-arrow/test/test-orc.rb                    |  42 +-
 52 files changed, 2484 insertions(+), 429 deletions(-)

Reply via email to