This is an automated email from the ASF dual-hosted git repository.
kszucs pushed a change to annotated tag apache-arrow-0.15.0
in repository https://gitbox.apache.org/repos/asf/arrow.git.
*** WARNING: tag apache-arrow-0.15.0 was modified! ***
from 8bf7ed3 (tag)
to d634b60 (tag)
tagging 40d468e162e88e1761b1e80b3ead060f0be927ee (commit)
replaces apache-arrow-0.14.0
by Krisztián Szűcs
on Mon Sep 30 19:29:21 2019 +0200
- Log -----------------------------------------------------------------
[maven-release-plugin] copy for tag apache-arrow-0.15.0
-----------------------------------------------------------------------
discard 77f0918 [maven-release-plugin] prepare release apache-arrow-0.15.0
discard 934e067 [Release] Update versions for 0.15.0
discard 0d7cd9e [Release] Update .deb/.rpm changelogs for 0.15.0
discard b4ea793 [Release] Update CHANGELOG.md for 0.15.0
add dec0cfb ARROW-6606: [C++] Add PathTree tree structure
add df2791c ARROW-6683: [Python] Test for fastparquet <-> pyarrow
cross-compatibility
add 46a14db ARROW-6429: [Integration] Adding patch to fix Spark
compilation for Integrition tests
add fa92fae ARROW-6716: [Rust] Bump nightly to nightly-2019-09-25 to fix
CI
add cf9df14 ARROW-6532 [R] write_parquet() uses writer properties
(general and arrow specific)
add cf3990e ARROW-6701: [C++][R] Lint failing on R cpp code
add 7fb6b75 ARROW-6714: [R] Fix untested RecordBatchWriter case
add ee59650 ARROW-6725: [CI] Disable 3rdparty fuzzit nightly builds
add 6f3a8ef ARROW-6653: [Developer] Add support for auto JIRA link on
pull request
add 9cfb53c ARROW-6115: [Python] Support LargeBinary and LargeString in
conversion to python
add 5fec051 ARROW-6682: [C#] Ensure file footer block lengths are always
8 byte aligned.
add 789a8e5 ARROW-6687: [Rust] [DataFusion] Add regression tests for
np.nan parquet file
add 7128d97 ARROW-6735: [C++] Suppress sign-compare warning with g++ 9.2.1
new fe58137 [Release] Update CHANGELOG.md for 0.15.0
new 4460fe0 [Release] Update .deb/.rpm changelogs for 0.15.0
new 6b13745 [Release] Update versions for 0.15.0
new 40d468e [maven-release-plugin] prepare release apache-arrow-0.15.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 (8bf7ed3)
\
N -- N -- N refs/tags/apache-arrow-0.15.0 (d634b60)
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 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/jira-link.yml | 92 ++++
CHANGELOG.md | 28 +-
cpp/src/arrow/CMakeLists.txt | 1 +
cpp/src/arrow/array/builder_union.cc | 4 +-
cpp/src/arrow/filesystem/CMakeLists.txt | 1 +
cpp/src/arrow/filesystem/filesystem.cc | 4 +
cpp/src/arrow/filesystem/filesystem.h | 6 +
cpp/src/arrow/filesystem/path_tree.cc | 137 ++++++
cpp/src/arrow/filesystem/path_tree.h | 110 +++++
cpp/src/arrow/filesystem/path_tree_test.cc | 179 +++++++
cpp/src/arrow/filesystem/test_util.cc | 14 -
cpp/src/arrow/filesystem/test_util.h | 14 +
cpp/src/arrow/python/arrow_to_pandas.cc | 28 +-
cpp/src/arrow/type_traits.h | 2 +-
cpp/submodules/parquet-testing | 2 +-
csharp/src/Apache.Arrow/BitUtility.cs | 2 +
csharp/src/Apache.Arrow/Ipc/ArrowFileWriter.cs | 10 +-
csharp/src/Apache.Arrow/Ipc/ArrowFooter.cs | 19 +
csharp/src/Apache.Arrow/Ipc/ArrowStreamWriter.cs | 2 +-
.../Apache.Arrow.Tests/ArrowFileWriterTests.cs | 33 ++
dev/release/rat_exclude_files.txt | 1 +
.../linux-packages/debian.ubuntu-xenial/changelog | 2 +-
dev/tasks/linux-packages/debian/changelog | 2 +-
dev/tasks/linux-packages/yum/arrow.spec.in | 2 +-
dev/tasks/tasks.yml | 2 -
integration/spark/ARROW-6429.patch | 31 ++
integration/spark/Dockerfile | 7 +-
integration/spark/runtest.sh | 4 +-
python/pyarrow/tests/test_pandas.py | 14 +
python/pyarrow/tests/test_parquet.py | 39 ++
r/NAMESPACE | 10 +-
r/R/array.R | 3 -
r/R/arrow-package.R | 12 +-
r/R/arrowExports.R | 120 ++++-
r/R/buffer.R | 3 +-
r/R/chunked-array.R | 3 +
r/R/compression.R | 14 +-
r/R/enums.R | 6 +
r/R/feather.R | 24 +-
r/R/field.R | 5 -
r/R/message.R | 3 -
r/R/parquet.R | 308 +++++++++++-
r/R/record-batch-writer.R | 3 +-
r/R/record-batch.R | 5 -
r/R/schema.R | 3 -
r/R/table.R | 5 +
r/R/type.R | 3 -
r/R/write-arrow.R | 18 +-
r/README.Rmd | 18 +
r/README.md | 14 +
r/lint.sh | 5 +-
r/man/enums.Rd | 3 +
r/man/write_arrow.Rd | 4 +-
r/man/write_feather.Rd | 6 +-
r/man/write_parquet.Rd | 70 ++-
r/src/arrowExports.cpp | 517 ++++++++++++++++++++-
r/src/arrow_types.h | 1 +
r/src/buffer.cpp | 6 +
r/src/chunkedarray.cpp | 6 +
r/src/compression.cpp | 5 +
r/src/parquet.cpp | 211 ++++++++-
r/src/table.cpp | 14 +-
.../Gemfile => r/tests/testthat/helper-parquet.R | 11 +-
r/tests/testthat/test-RecordBatch.R | 19 +-
r/tests/testthat/test-Table.R | 38 ++
r/tests/testthat/test-compressed.R | 1 -
r/tests/testthat/test-parquet.R | 43 ++
r/tests/testthat/test-read-write.R | 2 +-
r/tests/testthat/test-record-batch-reader.R | 26 +-
r/tests/testthat/test-type.R | 5 +-
rust/arrow/src/array/builder.rs | 1 -
rust/arrow/src/bitmap.rs | 1 -
rust/datafusion/src/execution/aggregate.rs | 1 -
rust/datafusion/src/execution/context.rs | 1 -
.../src/execution/physical_plan/hash_aggregate.rs | 1 -
.../src/execution/physical_plan/merge.rs | 1 -
.../src/execution/physical_plan/projection.rs | 1 -
.../src/execution/physical_plan/selection.rs | 1 -
rust/datafusion/src/execution/projection.rs | 1 -
rust/datafusion/src/execution/table_impl.rs | 1 -
rust/datafusion/src/logicalplan.rs | 1 -
rust/datafusion/src/sql/planner.rs | 1 -
rust/datafusion/tests/sql.rs | 15 +
rust/rust-toolchain | 2 +-
84 files changed, 2207 insertions(+), 187 deletions(-)
create mode 100644 .github/workflows/jira-link.yml
create mode 100644 cpp/src/arrow/filesystem/path_tree.cc
create mode 100644 cpp/src/arrow/filesystem/path_tree.h
create mode 100644 cpp/src/arrow/filesystem/path_tree_test.cc
create mode 100644 integration/spark/ARROW-6429.patch
copy c_glib/Gemfile => r/tests/testthat/helper-parquet.R (81%)