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

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


    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

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   (9f0082d)
            \
             N -- N -- N   refs/heads/release-4.0.0 (be258f2)

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:
 .env                                               |   2 +-
 .travis.yml                                        |   5 +-
 CHANGELOG.md                                       | 731 -------------------
 README.md                                          |   1 -
 c_glib/arrow-glib/basic-data-type.cpp              |   3 +
 c_glib/meson.build                                 |   2 +-
 c_glib/plasma-glib/client.cpp                      |   6 +-
 c_glib/test/helper/buildable.rb                    |  35 +-
 c_glib/test/test-orc-file-reader.rb                |  52 +-
 ci/scripts/PKGBUILD                                |   2 +-
 cpp/CMakeLists.txt                                 |   3 +-
 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 +-
 cpp/vcpkg.json                                     |   2 +-
 csharp/Directory.Build.props                       |   2 +-
 dev/release/verify-release-candidate.sh            |   2 +
 dev/tasks/homebrew-formulae/apache-arrow.rb        |   2 +-
 .../homebrew-formulae/autobrew/apache-arrow.rb     |   2 +-
 .../apache-arrow-apt-source/debian/changelog       |   5 -
 .../yum/apache-arrow-release.spec.in               |   3 -
 .../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   |   6 -
 .../linux-packages/apache-arrow/yum/arrow.spec.in  |   3 -
 java/adapter/avro/pom.xml                          |   2 +-
 java/adapter/jdbc/pom.xml                          |   2 +-
 java/adapter/orc/pom.xml                           |   2 +-
 java/algorithm/pom.xml                             |   2 +-
 java/compression/pom.xml                           |   2 +-
 java/dataset/pom.xml                               |   2 +-
 java/flight/flight-core/pom.xml                    |   2 +-
 java/flight/flight-grpc/pom.xml                    |   2 +-
 java/format/pom.xml                                |   2 +-
 java/gandiva/pom.xml                               |   2 +-
 java/memory/memory-core/pom.xml                    |   2 +-
 java/memory/memory-netty/pom.xml                   |   2 +-
 java/memory/memory-unsafe/pom.xml                  |   2 +-
 java/memory/pom.xml                                |   2 +-
 java/performance/pom.xml                           |   4 +-
 java/plasma/pom.xml                                |   2 +-
 java/pom.xml                                       |   2 +-
 java/tools/pom.xml                                 |   2 +-
 java/vector/pom.xml                                |   2 +-
 js/README.md                                       |   1 -
 js/package.json                                    |   2 +-
 matlab/CMakeLists.txt                              |   2 +-
 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 +-
 python/setup.py                                    |   2 +-
 r/DESCRIPTION                                      |   2 +-
 r/NEWS.md                                          |   2 +-
 ruby/red-arrow-cuda/lib/arrow-cuda/version.rb      |   2 +-
 .../red-arrow-dataset/lib/arrow-dataset/version.rb |   2 +-
 ruby/red-arrow/lib/arrow/version.rb                |   2 +-
 ruby/red-arrow/test/test-orc.rb                    |  42 +-
 ruby/red-gandiva/lib/gandiva/version.rb            |   2 +-
 ruby/red-parquet/lib/parquet/version.rb            |   2 +-
 ruby/red-plasma/lib/plasma/version.rb              |   2 +-
 rust/arrow-flight/Cargo.toml                       |   4 +-
 rust/arrow-pyarrow-integration-testing/Cargo.toml  |   4 +-
 rust/arrow/Cargo.toml                              |   2 +-
 rust/benchmarks/Cargo.toml                         |   2 +-
 rust/datafusion-examples/Cargo.toml                |   2 +-
 rust/datafusion/Cargo.toml                         |   6 +-
 rust/datafusion/README.md                          |   2 +-
 rust/integration-testing/Cargo.toml                |   2 +-
 rust/parquet/Cargo.toml                            |   6 +-
 rust/parquet/README.md                             |   4 +-
 rust/parquet_derive/Cargo.toml                     |   4 +-
 rust/parquet_derive/README.md                      |   4 +-
 rust/parquet_derive_test/Cargo.toml                |   6 +-
 101 files changed, 2529 insertions(+), 1234 deletions(-)

Reply via email to