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

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new cd46303  ARROW-5075: [Release] Add 0.13.0 release note
cd46303 is described below

commit cd46303b166702e7729589d9f546f0de7b2352a1
Author: Kouhei Sutou <[email protected]>
AuthorDate: Mon Apr 1 10:28:49 2019 -0500

    ARROW-5075: [Release] Add 0.13.0 release note
    
    This change is generated by dev/release/post-03-website.sh.
    
    Author: Kouhei Sutou <[email protected]>
    
    Closes #4085 from kou/website-add-0.13.0 and squashes the following commits:
    
    869368c0c <Kouhei Sutou>  Add 0.13.0 release note
---
 dev/release/post-03-website.sh                   | 228 ++++++++
 dev/release/{post-03-ruby.sh => post-04-ruby.sh} |   0
 dev/release/{post-04-js.sh => post-05-js.sh}     |   0
 site/_data/versions.yml                          |  29 +-
 site/_release/0.13.0.md                          | 715 +++++++++++++++++++++++
 site/_release/index.md                           |  62 +-
 6 files changed, 989 insertions(+), 45 deletions(-)

diff --git a/dev/release/post-03-website.sh b/dev/release/post-03-website.sh
new file mode 100755
index 0000000..86a806c
--- /dev/null
+++ b/dev/release/post-03-website.sh
@@ -0,0 +1,228 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+set -e
+set -u
+
+SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+
+if [ "$#" -ne 2 ]; then
+  echo "Usage: $0 <previous-version> <version>"
+  exit 1
+fi
+
+previous_version=$1
+version=$2
+
+site_dir="${SOURCE_DIR}/../../site"
+release_dir="${site_dir}/_release"
+announce_file="${release_dir}/${version}.md"
+versions_yml="${site_dir}/_data/versions.yml"
+
+release_date=$(LANG=C date "+%-d %B %Y")
+
+previous_tag_date=$(git log -n 1 --pretty=%aI apache-arrow-${previous_version})
+rough_previous_release_date=$(date --date "${previous_tag_date}" +%s)
+rough_release_date=$(date +%s)
+rough_n_development_months=$((
+  (${rough_release_date} - ${rough_previous_release_date}) / (60 * 60 * 24 * 
30)
+))
+
+git_tag=apache-arrow-${version}
+git_range=apache-arrow-${previous_version}..${git_tag}
+n_commits=$(git log --pretty=oneline ${git_range} | wc -l)
+contributors_command_line="git shortlog -sn ${git_range}"
+n_contributors=$(${contributors_command_line} | wc -l)
+committers_command_line="git shortlog -csn ${git_range}"
+git_tag_hash=$(git log -n 1 --pretty=%H ${git_tag})
+
+# Add announce for the current version
+cat <<ANNOUNCE > "${announce_file}"
+---
+layout: default
+title: Apache Arrow ${version} Release
+permalink: /release/${version}.html
+---
+<!--
+{% comment %}
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+{% endcomment %}
+-->
+
+# Apache Arrow ${version} (${release_date})
+
+This is a major release covering more than ${rough_n_development_months} 
months of development.
+
+## Download
+
+* [**Source Artifacts**][1]
+* **Binary Artifacts**
+  * [For CentOS][2]
+  * [For Debian][3]
+  * [For Python][4]
+  * [For Ubuntu][5]
+* [Git tag][6]
+
+## Contributors
+
+This release includes ${n_commits} commits from ${n_contributors} distinct 
contributors.
+
+\`\`\`console
+$ ${contributors_command_line}
+ANNOUNCE
+
+${contributors_command_line} >> "${announce_file}"
+
+cat <<ANNOUNCE >> "${announce_file}"
+\`\`\`
+
+## Patch Committers
+
+The following Apache committers merged contributed patches to the repository.
+
+\`\`\`console
+$ ${committers_command_line}
+ANNOUNCE
+
+${committers_command_line} >> "${announce_file}"
+
+cat <<ANNOUNCE >> "${announce_file}"
+\`\`\`
+
+## Changelog
+
+ANNOUNCE
+
+${PYTHON:-python} "${SOURCE_DIR}/changelog.py" ${version} 1 | \
+  sed -e 's/^#/##/g' >> "${announce_file}"
+
+cat <<ANNOUNCE >> "${announce_file}"
+[1]: https://www.apache.org/dyn/closer.cgi/arrow/arrow-${version}/
+[2]: https://bintray.com/apache/arrow/centos/${version}/
+[3]: https://bintray.com/apache/arrow/debian/${version}/
+[4]: https://bintray.com/apache/arrow/python/${version}/
+[5]: https://bintray.com/apache/arrow/ubuntu/${version}/
+[6]: https://github.com/apache/arrow/releases/tag/apache-arrow-${version}
+ANNOUNCE
+
+
+# Update index
+pushd "${release_dir}"
+
+index_file=index.md
+rm -f ${index_file}
+announce_files="$(ls | sort --version-sort --reverse)"
+cat <<INDEX > ${index_file}
+---
+layout: default
+title: Releases
+permalink: /release/index.html
+---
+<!--
+{% comment %}
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+{% endcomment %}
+-->
+
+# Apache Arrow Releases
+
+Navigate to the release page for downloads and the changelog.
+
+INDEX
+
+i=0
+for md_file in ${announce_files}; do
+  i=$((i + 1))
+  title=$(grep '^# Apache Arrow' ${md_file} | sed -e 's/^# Apache Arrow //')
+  echo "* [${title}][${i}]" >> ${index_file}
+done
+echo >> ${index_file}
+
+i=0
+for md_file in ${announce_files}; do
+  i=$((i + 1))
+  html_file=$(echo ${md_file} | sed -e 's/md$/html/')
+  echo "[${i}]: {{ site.baseurl }}/release/${html_file}" >> ${index_file}
+done
+
+popd
+
+
+# Update versions.yml
+pinned_version=$(echo ${version} | sed -e 's/\.[^.]*$/.*/')
+
+cat <<YAML > "${versions_yml}"
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to you under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# Database of the current verion
+#
+current:
+  number: '${version}'
+  pinned_number: '${pinned_version}'
+  date: '${release_date}'
+  git-tag: '${git_tag_hash}'
+  github-tag-link: 'https://github.com/apache/arrow/releases/tag/${git_tag}'
+  release-notes: 'https://arrow.apache.org/release/${version}.html'
+  mirrors: 'https://www.apache.org/dyn/closer.cgi/arrow/arrow-${version}/'
+  tarball_name: 'apache-arrow-${version}.tar.gz'
+  mirrors-tar: 
'https://www.apache.org/dyn/closer.cgi/arrow/arrow-${version}/apache-arrow-${version}.tar.gz'
+  java-artifacts: 
'http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.arrow%22%20AND%20v%3A%22${version}%22'
+  asc: 
'https://www.apache.org/dist/arrow/arrow-${version}/apache-arrow-${version}.tar.gz.asc'
+  sha256: 
'https://www.apache.org/dist/arrow/arrow-${version}/apache-arrow-${version}.tar.gz.sha256'
+  sha512: 
'https://www.apache.org/dist/arrow/arrow-${version}/apache-arrow-${version}.tar.gz.sha512'
+YAML
diff --git a/dev/release/post-03-ruby.sh b/dev/release/post-04-ruby.sh
similarity index 100%
rename from dev/release/post-03-ruby.sh
rename to dev/release/post-04-ruby.sh
diff --git a/dev/release/post-04-js.sh b/dev/release/post-05-js.sh
similarity index 100%
rename from dev/release/post-04-js.sh
rename to dev/release/post-05-js.sh
diff --git a/site/_data/versions.yml b/site/_data/versions.yml
index 39c8e5d..7fb1fef 100644
--- a/site/_data/versions.yml
+++ b/site/_data/versions.yml
@@ -13,20 +13,19 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-# Database of contributors to Apache Arrow (WIP)
-# Blogs and other pages use this data
+# Database of the current verion
 #
 current:
-  number: '0.12.0'
-  pinned_number: '0.12.*'
-  date: '20 January 2019'
-  git-tag: '8ca41384b5324bfd0ef3d3ed3f728e1d10ed73f0'
-  github-tag-link: 
'https://github.com/apache/arrow/releases/tag/apache-arrow-0.12.0'
-  release-notes: 'http://arrow.apache.org/release/0.12.0.html'
-  mirrors: 'https://www.apache.org/dyn/closer.cgi/arrow/arrow-0.12.0/'
-  tarball_name: 'apache-arrow-0.12.0.tar.gz'
-  mirrors-tar: 
'https://www.apache.org/dyn/closer.cgi/arrow/arrow-0.12.0/apache-arrow-0.12.0.tar.gz'
-  java-artifacts: 
'http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.arrow%22%20AND%20v%3A%220.12.0%22'
-  asc: 
'https://www.apache.org/dist/arrow/arrow-0.12.0/apache-arrow-0.12.0.tar.gz.asc'
-  sha256: 
'https://www.apache.org/dist/arrow/arrow-0.12.0/apache-arrow-0.12.0.tar.gz.sha256'
-  sha512: 
'https://www.apache.org/dist/arrow/arrow-0.12.0/apache-arrow-0.12.0.tar.gz.sha512'
+  number: '0.13.0'
+  pinned_number: '0.13.*'
+  date: '1 April 2019'
+  git-tag: 'dfb9e7af3cd92722893a3819b6676dfdef08f896'
+  github-tag-link: 
'https://github.com/apache/arrow/releases/tag/apache-arrow-0.13.0'
+  release-notes: 'https://arrow.apache.org/release/0.13.0.html'
+  mirrors: 'https://www.apache.org/dyn/closer.cgi/arrow/arrow-0.13.0/'
+  tarball_name: 'apache-arrow-0.13.0.tar.gz'
+  mirrors-tar: 
'https://www.apache.org/dyn/closer.cgi/arrow/arrow-0.13.0/apache-arrow-0.13.0.tar.gz'
+  java-artifacts: 
'http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.arrow%22%20AND%20v%3A%220.13.0%22'
+  asc: 
'https://www.apache.org/dist/arrow/arrow-0.13.0/apache-arrow-0.13.0.tar.gz.asc'
+  sha256: 
'https://www.apache.org/dist/arrow/arrow-0.13.0/apache-arrow-0.13.0.tar.gz.sha256'
+  sha512: 
'https://www.apache.org/dist/arrow/arrow-0.13.0/apache-arrow-0.13.0.tar.gz.sha512'
diff --git a/site/_release/0.13.0.md b/site/_release/0.13.0.md
new file mode 100644
index 0000000..5a61a17
--- /dev/null
+++ b/site/_release/0.13.0.md
@@ -0,0 +1,715 @@
+---
+layout: default
+title: Apache Arrow 0.13.0 Release
+permalink: /release/0.13.0.html
+---
+<!--
+{% comment %}
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+{% endcomment %}
+-->
+
+# Apache Arrow 0.13.0 (1 April 2019)
+
+This is a major release covering more than 2 months of development.
+
+## Download
+
+* [**Source Artifacts**][1]
+* **Binary Artifacts**
+  * [For CentOS][2]
+  * [For Debian][3]
+  * [For Python][4]
+  * [For Ubuntu][5]
+* [Git tag][6]
+
+## Contributors
+
+This release includes 550 commits from 81 distinct contributors.
+
+```console
+$ git shortlog -sn apache-arrow-0.12.0..apache-arrow-0.13.0
+    56 Wes McKinney
+    55 Kouhei Sutou
+    31 Antoine Pitrou
+    31 François Saint-Jacques
+    31 Korn, Uwe
+    30 Krisztián Szűcs
+    28 Andy Grove
+    27 Uwe L. Korn
+    21 Micah Kornfield
+    17 Benjamin Kietzman
+    17 Kenta Murata
+    17 Pindikura Ravindra
+    15 ptaylor
+    13 David Li
+    12 Paddy Horan
+    11 Neville Dipale
+     9 Philipp Moritz
+     8 Chao Sun
+     8 Romain Francois
+     7 Eric Erhardt
+     7 Yosuke Shiro
+     6 Nicolas Trinquier
+     5 Javier Luraschi
+     4 Anson Qian
+     4 Brian Hulette
+     4 Yuhong Guo
+     3 Anurag Khandelwal
+     3 Bryan Cutler
+     3 Dominik Moritz
+     3 Mike Pigott
+     3 Pearu Peterson
+     3 Sebastien Binet
+     2 Hatem Helal
+     2 Jeroen Ooms
+     2 Owen Nelson
+     2 Peter
+     2 Praveen
+     2 Renat Valiullin
+     2 Renjie Liu
+     2 emkornfield
+     2 tigerchen
+     1 Alexandre Crayssac
+     1 Areg Melik-Adamyan
+     1 Brandon Greenwell
+     1 Bruno P. Kinoshita
+     1 Christian Thiel
+     1 Christopher Hutchinson
+     1 Daniel Bast
+     1 Felix
+     1 Gene Novark
+     1 George Sakkis
+     1 Gidon Gershinsky
+     1 Ildar Musin
+     1 Ilya Tocar
+     1 Laurent Goujon
+     1 Matthias Vallentin
+     1 Maxim Novikov
+     1 Michael Pigott
+     1 Michael Vilim
+     1 Mike Bostock
+     1 P. Taylor Goetz
+     1 Paul Kernfeld
+     1 Paul Taylor
+     1 Prashanth Govindarajan
+     1 Robert Nishihara
+     1 Ross Smith II
+     1 Ryan Mackenzie White
+     1 Rylan Dmello
+     1 Stephen Toub
+     1 Steven Fackler
+     1 Suvayu Ali
+     1 Tanya Schlusser
+     1 Todd A. Anderson
+     1 Yu Ding
+     1 Yurui Zhou
+     1 alexandreyc
+     1 dsisnero
+     1 fjetter
+     1 praveenbingo
+     1 praveenkrishna
+     1 yl187661
+```
+
+## Patch Committers
+
+The following Apache committers merged contributed patches to the repository.
+
+```console
+$ git shortlog -csn apache-arrow-0.12.0..apache-arrow-0.13.0
+   193 Wes McKinney
+    95 Krisztián Szűcs
+    66 Uwe L. Korn
+    53 Kouhei Sutou
+    40 Antoine Pitrou
+    22 Andy Grove
+    21 Korn, Uwe
+    11 Pindikura Ravindra
+     9 Yosuke Shiro
+     8 Brian Hulette
+     7 Chao Sun
+     5 Philipp Moritz
+     5 Sebastien Binet
+     4 Bryan Cutler
+     2 GitHub
+     2 Paddy Horan
+     2 Robert Nishihara
+     2 Sidd
+     2 ptaylor
+     1 Micah Kornfield
+```
+
+## Changelog
+
+### New Features and Improvements
+
+* [ARROW-1425](https://issues.apache.org/jira/browse/ARROW-1425) - [Python] 
Document semantic differences between Spark timestamps and Arrow timestamps
+* [ARROW-1572](https://issues.apache.org/jira/browse/ARROW-1572) - [C++] 
Implement "value counts" kernels for tabulating value frequencies
+* [ARROW-1639](https://issues.apache.org/jira/browse/ARROW-1639) - [Python] 
More efficient serialization for RangeIndex in serialize\_pandas
+* [ARROW-1807](https://issues.apache.org/jira/browse/ARROW-1807) - [JAVA] 
Reduce Heap Usage (Phase 3): consolidate buffers
+* [ARROW-1896](https://issues.apache.org/jira/browse/ARROW-1896) - [C++] Do 
not allocate memory for primitive outputs in CastKernel::Call implementation
+* [ARROW-2015](https://issues.apache.org/jira/browse/ARROW-2015) - [Java] Use 
Java Time and Date APIs instead of JodaTime
+* [ARROW-2022](https://issues.apache.org/jira/browse/ARROW-2022) - [Format] 
Add custom metadata field specific to a RecordBatch message
+* [ARROW-2112](https://issues.apache.org/jira/browse/ARROW-2112) - [C++] 
Enable cpplint to be run on Windows
+* [ARROW-2409](https://issues.apache.org/jira/browse/ARROW-2409) - [Rust] Test 
for build warnings, remove current warnings
+* [ARROW-2627](https://issues.apache.org/jira/browse/ARROW-2627) - [Python] 
Add option (or some equivalent) to toggle memory mapping functionality when 
using parquet.ParquetFile or other read entry points
+* [ARROW-3107](https://issues.apache.org/jira/browse/ARROW-3107) - [C++] 
arrow::PrettyPrint for Column instances
+* [ARROW-3121](https://issues.apache.org/jira/browse/ARROW-3121) - [C++]  Mean 
kernel aggregate
+* [ARROW-3123](https://issues.apache.org/jira/browse/ARROW-3123) - [C++] 
Incremental Count, Count Not Null aggregator
+* [ARROW-3135](https://issues.apache.org/jira/browse/ARROW-3135) - [C++] Add 
helper functions for validity bitmap propagation in kernel context
+* [ARROW-3149](https://issues.apache.org/jira/browse/ARROW-3149) - [C++] Use 
gRPC (when it exists) from conda-forge for CI builds
+* [ARROW-3162](https://issues.apache.org/jira/browse/ARROW-3162) - [Python] 
Enable Flight servers to be implemented in pure Python
+* [ARROW-3239](https://issues.apache.org/jira/browse/ARROW-3239) - [C++] 
Improve random data generation functions
+* [ARROW-3289](https://issues.apache.org/jira/browse/ARROW-3289) - [C++] 
Implement DoPut command for Flight on client and server side  
+* [ARROW-3292](https://issues.apache.org/jira/browse/ARROW-3292) - [C++] Test 
Flight RPC in Travis CI
+* [ARROW-3297](https://issues.apache.org/jira/browse/ARROW-3297) - [Python] 
Python bindings for Flight C++ client
+* [ARROW-331](https://issues.apache.org/jira/browse/ARROW-331) - [Python] 
Timeline for dropping Python 2.7 support
+* [ARROW-3311](https://issues.apache.org/jira/browse/ARROW-3311) - [R] 
Functions for deserializing IPC components from arrow::Buffer or from IO 
interface
+* [ARROW-3361](https://issues.apache.org/jira/browse/ARROW-3361) - [R] Run 
cpp/build-support/cpplint.py on C++ source files
+* [ARROW-3364](https://issues.apache.org/jira/browse/ARROW-3364) - [Doc] 
Document docker compose setup
+* [ARROW-3367](https://issues.apache.org/jira/browse/ARROW-3367) - 
[INTEGRATION] Port Spark integration test to the docker-compose setup
+* [ARROW-3422](https://issues.apache.org/jira/browse/ARROW-3422) - [C++] Add 
"toolchain" target to ensure that all required toolchain libraries are built
+* [ARROW-3434](https://issues.apache.org/jira/browse/ARROW-3434) - [Packaging] 
Add Apache ORC C++ library to conda-forge
+* [ARROW-3511](https://issues.apache.org/jira/browse/ARROW-3511) - [Gandiva] 
support input selection vectors for both projector and filter
+* [ARROW-3532](https://issues.apache.org/jira/browse/ARROW-3532) - [Python] 
Schema, StructType, StructArray field retrieval by name should raise warning or 
exception for multiple matches
+* [ARROW-3550](https://issues.apache.org/jira/browse/ARROW-3550) - [C++] Use 
kUnknownNullCount in NumericArray constructor
+* [ARROW-3554](https://issues.apache.org/jira/browse/ARROW-3554) - [C++] 
Reverse traits for C++
+* [ARROW-3596](https://issues.apache.org/jira/browse/ARROW-3596) - [Packaging] 
Build gRPC in conda-forge
+* [ARROW-3619](https://issues.apache.org/jira/browse/ARROW-3619) - [R] Expose 
global thread pool optins
+* [ARROW-3631](https://issues.apache.org/jira/browse/ARROW-3631) - [C#] Add 
Appveyor build for C#
+* [ARROW-3653](https://issues.apache.org/jira/browse/ARROW-3653) - 
[Python/C++] Support data copying between different GPU devices
+* [ARROW-3735](https://issues.apache.org/jira/browse/ARROW-3735) - [Python] 
Proper error handling in \_ensure\_type
+* [ARROW-3761](https://issues.apache.org/jira/browse/ARROW-3761) - [R] 
Bindings for CompressedInputStream, CompressedOutputStream
+* [ARROW-3769](https://issues.apache.org/jira/browse/ARROW-3769) - [C++] 
Support reading non-dictionary encoded binary Parquet columns directly as 
DictionaryArray
+* [ARROW-3770](https://issues.apache.org/jira/browse/ARROW-3770) - [C++] 
Validate or add option to validate arrow::Table schema in 
parquet::arrow::FileWriter::WriteTable
+* [ARROW-3816](https://issues.apache.org/jira/browse/ARROW-3816) - [R] 
nrow.RecordBatch method
+* [ARROW-3824](https://issues.apache.org/jira/browse/ARROW-3824) - [R] 
Document developer workflow for building project, running unit tests in 
r/README.md
+* [ARROW-3838](https://issues.apache.org/jira/browse/ARROW-3838) - [Rust] 
Implement CSV Writer
+* [ARROW-3846](https://issues.apache.org/jira/browse/ARROW-3846) - [Gandiva] 
Build on Windows
+* [ARROW-3882](https://issues.apache.org/jira/browse/ARROW-3882) - [Rust] 
PrimitiveArray<T> should support cast operations
+* [ARROW-3903](https://issues.apache.org/jira/browse/ARROW-3903) - [Python] 
Random array generator for Arrow conversion and Parquet testing
+* [ARROW-3926](https://issues.apache.org/jira/browse/ARROW-3926) - [Python] 
Add Gandiva bindings to Python wheels
+* [ARROW-3951](https://issues.apache.org/jira/browse/ARROW-3951) - [Go] 
implement a CSV writer
+* [ARROW-3954](https://issues.apache.org/jira/browse/ARROW-3954) - [Rust] Add 
Slice to Array and ArrayData
+* [ARROW-3965](https://issues.apache.org/jira/browse/ARROW-3965) - [Java] 
JDBC-to-Arrow Conversion: Configuration Object
+* [ARROW-3966](https://issues.apache.org/jira/browse/ARROW-3966) - [Java] 
JDBC-to-Arrow Conversion: JDBC Metadata in Schema Fields
+* [ARROW-3972](https://issues.apache.org/jira/browse/ARROW-3972) - [C++] 
Update to LLVM and Clang bits to 7.0
+* [ARROW-3981](https://issues.apache.org/jira/browse/ARROW-3981) - [C++] 
Rename json.h
+* [ARROW-3985](https://issues.apache.org/jira/browse/ARROW-3985) - [C++] Pass 
-C option when compiling with ccache to avoid some warnings
+* [ARROW-4012](https://issues.apache.org/jira/browse/ARROW-4012) - 
[Documentation][C++] Document how to install Apache Arrow on MSYS2
+* [ARROW-4014](https://issues.apache.org/jira/browse/ARROW-4014) - [C++] Fix 
"LIBCMT" warnings on MSVC
+* [ARROW-4024](https://issues.apache.org/jira/browse/ARROW-4024) - [Python] 
Cython compilation error on cython==0.27.3
+* [ARROW-4031](https://issues.apache.org/jira/browse/ARROW-4031) - [C++] 
Refactor ArrayBuilder bitmap logic into TypedBufferBuilder<bool>
+* [ARROW-4056](https://issues.apache.org/jira/browse/ARROW-4056) - [C++] 
Upgrade to boost-cpp 1.69.0 again
+* [ARROW-4061](https://issues.apache.org/jira/browse/ARROW-4061) - [Rust] 
[Parquet] Implement "spaced" version for non-dictionary encoding/decoding
+* [ARROW-4071](https://issues.apache.org/jira/browse/ARROW-4071) - [Rust] Add 
rustfmt as a pre-commit hook
+* [ARROW-4072](https://issues.apache.org/jira/browse/ARROW-4072) - [Rust] Set 
default value for PARQUET\_TEST\_DATA
+* [ARROW-4094](https://issues.apache.org/jira/browse/ARROW-4094) - [Python] 
Store RangeIndex in Parquet files as metadata rather than a physical data column
+* [ARROW-4110](https://issues.apache.org/jira/browse/ARROW-4110) - [C++] Do 
not generate distinct cast kernels when input and output type are the same
+* [ARROW-4123](https://issues.apache.org/jira/browse/ARROW-4123) - [C++] 
Improve linting workflow and documentation for Windows-based developers
+* [ARROW-4124](https://issues.apache.org/jira/browse/ARROW-4124) - [C++] 
Abstract aggregation kernel API
+* [ARROW-4142](https://issues.apache.org/jira/browse/ARROW-4142) - [Java] 
JDBC-to-Arrow: JDBC Arrays
+* [ARROW-4165](https://issues.apache.org/jira/browse/ARROW-4165) - [C++] Port 
cpp/apidoc/Windows.md and other files to Sphinx / rst
+* [ARROW-4180](https://issues.apache.org/jira/browse/ARROW-4180) - [Java] 
Reduce verbose logging of ArrowBuf creation events?
+* [ARROW-4196](https://issues.apache.org/jira/browse/ARROW-4196) - [Rust] Add 
explicit SIMD vectorization for arithmetic ops in "array\_ops"
+* [ARROW-4198](https://issues.apache.org/jira/browse/ARROW-4198) - [Gandiva] 
Add support to cast timestamp
+* [ARROW-4204](https://issues.apache.org/jira/browse/ARROW-4204) - [Gandiva] 
implement decimal subtract
+* [ARROW-4205](https://issues.apache.org/jira/browse/ARROW-4205) - [Gandiva] 
Implement decimal multiply
+* [ARROW-4206](https://issues.apache.org/jira/browse/ARROW-4206) - [Gandiva] 
Implement decimal divide
+* [ARROW-4212](https://issues.apache.org/jira/browse/ARROW-4212) - [Python] 
[CUDA] Creating a CUDA buffer from Numba device array should be easier
+* [ARROW-4230](https://issues.apache.org/jira/browse/ARROW-4230) - [C++] 
Enable building flight against system gRPC
+* [ARROW-4234](https://issues.apache.org/jira/browse/ARROW-4234) - [C++] Add 
memory bandwidth benchmarks to arrow/util/machine-benchmark.cc
+* [ARROW-4235](https://issues.apache.org/jira/browse/ARROW-4235) - [GLib] Use 
"column\_builder" in GArrowRecordBatchBuilder
+* [ARROW-4236](https://issues.apache.org/jira/browse/ARROW-4236) - [JAVA] 
Distinct plasma client create exceptions
+* [ARROW-4245](https://issues.apache.org/jira/browse/ARROW-4245) - [Rust] Add 
Rustdoc header to each source file
+* [ARROW-4247](https://issues.apache.org/jira/browse/ARROW-4247) - [Packaging] 
Update verify script for 0.12.0
+* [ARROW-4251](https://issues.apache.org/jira/browse/ARROW-4251) - [C++] Add 
option to use vendored Boost in verify-release-candidate.sh
+* [ARROW-4262](https://issues.apache.org/jira/browse/ARROW-4262) - [Website] 
Blog post to give preview into using R and Arrow with Apache Spark
+* [ARROW-4263](https://issues.apache.org/jira/browse/ARROW-4263) - [Rust] 
Donate DataFusion
+* [ARROW-4265](https://issues.apache.org/jira/browse/ARROW-4265) - [C++] 
Automatic conversion between Table and std::vector<std::tuple<..>>
+* [ARROW-4268](https://issues.apache.org/jira/browse/ARROW-4268) - [C++] Add C 
primitive to Arrow:Type compile time in TypeTraits
+* [ARROW-4271](https://issues.apache.org/jira/browse/ARROW-4271) - [Rust] Move 
Parquet specific info to Parquet Readme
+* [ARROW-4273](https://issues.apache.org/jira/browse/ARROW-4273) - [Release] 
Fix verification script to use cf201901 conda-forge label
+* [ARROW-4277](https://issues.apache.org/jira/browse/ARROW-4277) - [C++] Add 
gmock to toolchain
+* [ARROW-4281](https://issues.apache.org/jira/browse/ARROW-4281) - [CI] Use 
Ubuntu Xenial (16.04) VMs on Travis-CI
+* [ARROW-4285](https://issues.apache.org/jira/browse/ARROW-4285) - [Python] 
Use proper builder interface for serialization
+* [ARROW-4287](https://issues.apache.org/jira/browse/ARROW-4287) - [C++] 
Ensure minimal bison version on OSX for Thrift
+* [ARROW-4289](https://issues.apache.org/jira/browse/ARROW-4289) - [C++] 
Forward AR and RANLIB to thirdparty builds
+* [ARROW-4290](https://issues.apache.org/jira/browse/ARROW-4290) - 
[C++/Gandiva] Support detecting correct LLVM version in Homebrew
+* [ARROW-4291](https://issues.apache.org/jira/browse/ARROW-4291) - [Dev] 
Support selecting features in release scripts
+* [ARROW-4294](https://issues.apache.org/jira/browse/ARROW-4294) - [Plasma] 
Add support for evicting objects to external store
+* [ARROW-4297](https://issues.apache.org/jira/browse/ARROW-4297) - [C++] Fix 
build for 32-bit MSYS2
+* [ARROW-4298](https://issues.apache.org/jira/browse/ARROW-4298) - [Java] 
Building Flight fails with OpenJDK 11
+* [ARROW-4299](https://issues.apache.org/jira/browse/ARROW-4299) - [Ruby] 
Depend on the same version as Red Arrow
+* [ARROW-4300](https://issues.apache.org/jira/browse/ARROW-4300) - [C++] 
Restore apache-arrow Homebrew recipe and define process for maintaining and 
updating for releases
+* [ARROW-4303](https://issues.apache.org/jira/browse/ARROW-4303) - 
[Gandiva/Python] Build LLVM with RTTI in manylinux1 container
+* [ARROW-4305](https://issues.apache.org/jira/browse/ARROW-4305) - [Rust] Fix 
parquet version number in README
+* [ARROW-4307](https://issues.apache.org/jira/browse/ARROW-4307) - [C++] FIx 
doxygen warnings, include doxygen warning checks in CI linting
+* [ARROW-4310](https://issues.apache.org/jira/browse/ARROW-4310) - [Website] 
Update install document for 0.12.0
+* [ARROW-4313](https://issues.apache.org/jira/browse/ARROW-4313) - Define 
general benchmark database schema
+* [ARROW-4315](https://issues.apache.org/jira/browse/ARROW-4315) - [Website] 
Home page of https://arrow.apache.org/ does not mention Go or Rust
+* [ARROW-4318](https://issues.apache.org/jira/browse/ARROW-4318) - [C++] Add 
Tensor::CountNonZero
+* [ARROW-4321](https://issues.apache.org/jira/browse/ARROW-4321) - [CI] Setup 
conda-forge channel globally in docker containers
+* [ARROW-4330](https://issues.apache.org/jira/browse/ARROW-4330) - [C++] Use 
FindThreads.cmake to handle -pthread compiler/link options
+* [ARROW-4332](https://issues.apache.org/jira/browse/ARROW-4332) - [Website] 
Instructions and scripts for publishing web site appear to be incorrect
+* [ARROW-4334](https://issues.apache.org/jira/browse/ARROW-4334) - [CI] Setup 
conda-forge channel globally in travis builds
+* [ARROW-4335](https://issues.apache.org/jira/browse/ARROW-4335) - [C++] 
Better document sparse tensor support
+* [ARROW-4336](https://issues.apache.org/jira/browse/ARROW-4336) - [C++] 
Default BUILD\_WARNING\_LEVEL to CHECKIN
+* [ARROW-4339](https://issues.apache.org/jira/browse/ARROW-4339) - [C++] 
rewrite cpp/README shorter, with a separate contribution guide
+* [ARROW-4340](https://issues.apache.org/jira/browse/ARROW-4340) - [C++] 
Update IWYU version in the \`lint\` dockerfile
+* [ARROW-4341](https://issues.apache.org/jira/browse/ARROW-4341) - [C++] Use 
TypedBufferBuilder<bool> in BooleanBuilder
+* [ARROW-4344](https://issues.apache.org/jira/browse/ARROW-4344) - [Java] 
Further cleanup maven output
+* [ARROW-4345](https://issues.apache.org/jira/browse/ARROW-4345) - [C++] Add 
Apache 2.0 license file to the Parquet-testing repository
+* [ARROW-4346](https://issues.apache.org/jira/browse/ARROW-4346) - [C++] Fix 
compiler warnings with gcc 8.2.0
+* [ARROW-4352](https://issues.apache.org/jira/browse/ARROW-4352) - [C++] Add 
support for system Google Test
+* [ARROW-4353](https://issues.apache.org/jira/browse/ARROW-4353) - [CI] Add 
jobs for 32-bit and 64-bit MinGW
+* [ARROW-4358](https://issues.apache.org/jira/browse/ARROW-4358) - 
[Gandiva][Crossbow] Trusty build broken
+* [ARROW-4361](https://issues.apache.org/jira/browse/ARROW-4361) - [Website] 
Update commiters list
+* [ARROW-4362](https://issues.apache.org/jira/browse/ARROW-4362) - [Java] Test 
OpenJDK 11 in CI
+* [ARROW-4363](https://issues.apache.org/jira/browse/ARROW-4363) - [C++] Add 
CMake format checks
+* [ARROW-4372](https://issues.apache.org/jira/browse/ARROW-4372) - [C++] Embed 
precompiled bitcode in the gandiva library
+* [ARROW-4373](https://issues.apache.org/jira/browse/ARROW-4373) - [Packaging] 
Travis fails to deploy conda packages on OSX
+* [ARROW-4375](https://issues.apache.org/jira/browse/ARROW-4375) - [CI] Sphinx 
dependencies were removed from docs conda environment
+* [ARROW-4376](https://issues.apache.org/jira/browse/ARROW-4376) - [Rust] 
Implement from\_buf\_reader for csv::Reader
+* [ARROW-4377](https://issues.apache.org/jira/browse/ARROW-4377) - [Rust] 
Implement std::fmt::Debug for all PrimitiveArrays
+* [ARROW-4379](https://issues.apache.org/jira/browse/ARROW-4379) - Register 
pyarrow serializers for collections.Counter and collections.deque.
+* [ARROW-4383](https://issues.apache.org/jira/browse/ARROW-4383) - [C++] Use 
the CMake's standard find features
+* [ARROW-4386](https://issues.apache.org/jira/browse/ARROW-4386) - [Rust] 
Implement Date and Time Arrays
+* [ARROW-4388](https://issues.apache.org/jira/browse/ARROW-4388) - [Go] add 
DimNames() method to tensor Interface?
+* [ARROW-4393](https://issues.apache.org/jira/browse/ARROW-4393) - [Rust] 
coding style: apply 90 characters per line limit
+* [ARROW-4396](https://issues.apache.org/jira/browse/ARROW-4396) - Update 
Typedoc to support TypeScript 3.2
+* [ARROW-4397](https://issues.apache.org/jira/browse/ARROW-4397) - [C++] 
dim\_names in Tensor and SparseTensor
+* [ARROW-4399](https://issues.apache.org/jira/browse/ARROW-4399) - [C++] 
Remove usage of "extern template class" from NumericArray<T>
+* [ARROW-4401](https://issues.apache.org/jira/browse/ARROW-4401) - [Python] 
Alpine dockerfile fails to build because pandas requires numpy as build 
dependency
+* [ARROW-4406](https://issues.apache.org/jira/browse/ARROW-4406) - Ignore 
"\*\_$folder$" files on S3
+* [ARROW-4408](https://issues.apache.org/jira/browse/ARROW-4408) - [CPP/Doc] 
Remove outdated Parquet documentation
+* [ARROW-4422](https://issues.apache.org/jira/browse/ARROW-4422) - [Plasma] 
Enforce memory limit in plasma, rather than relying on 
dlmalloc\_set\_footprint\_limit
+* [ARROW-4423](https://issues.apache.org/jira/browse/ARROW-4423) - [C++] 
Update version of vendored gtest to 1.8.1
+* [ARROW-4424](https://issues.apache.org/jira/browse/ARROW-4424) - [Python] 
Manylinux CI builds failing
+* [ARROW-4425](https://issues.apache.org/jira/browse/ARROW-4425) - Add link to 
'Contributing' page in the top-level Arrow README
+* [ARROW-4430](https://issues.apache.org/jira/browse/ARROW-4430) - [C++] add 
unit test for currently unused append method
+* [ARROW-4431](https://issues.apache.org/jira/browse/ARROW-4431) - [C++] Build 
gRPC as ExternalProject without allowing it to build its vendored dependencies
+* [ARROW-4435](https://issues.apache.org/jira/browse/ARROW-4435) - [C#] Add 
.sln file and minor .csproj fix ups
+* [ARROW-4436](https://issues.apache.org/jira/browse/ARROW-4436) - 
[Documentation] Clarify instructions for building documentation
+* [ARROW-4442](https://issues.apache.org/jira/browse/ARROW-4442) - [JS] Overly 
broad type annotation for Chunked typeId leading to type mismatches in 
generated typing
+* [ARROW-4444](https://issues.apache.org/jira/browse/ARROW-4444) - [Testing] 
Add DataFusion test files to arrow-testing repo
+* [ARROW-4445](https://issues.apache.org/jira/browse/ARROW-4445) - 
[C++][Gandiva] Run Gandiva-LLVM tests in Appveyor
+* [ARROW-4446](https://issues.apache.org/jira/browse/ARROW-4446) - [Python] 
Run Gandiva tests on Windows and Appveyor
+* [ARROW-4448](https://issues.apache.org/jira/browse/ARROW-4448) - 
[JAVA][Flight] Flaky Flight java test
+* [ARROW-4449](https://issues.apache.org/jira/browse/ARROW-4449) - [Rust] 
Convert File to T: Read + Seek for schema inference
+* [ARROW-4454](https://issues.apache.org/jira/browse/ARROW-4454) - [C++] fix 
unused parameter warnings
+* [ARROW-4455](https://issues.apache.org/jira/browse/ARROW-4455) - [Plasma] 
g++ 8 reports class-memaccess warnings
+* [ARROW-4459](https://issues.apache.org/jira/browse/ARROW-4459) - [Testing] 
Add git submodule for arrow-testing data files
+* [ARROW-4460](https://issues.apache.org/jira/browse/ARROW-4460) - [Website] 
Write blog post to announce DataFusion donation
+* [ARROW-4461](https://issues.apache.org/jira/browse/ARROW-4461) - [C++] 
Expose bit-util methods for binary boolean operations that don't allocate
+* [ARROW-4462](https://issues.apache.org/jira/browse/ARROW-4462) - [C++] 
Upgrade LZ4 v1.7.5 to v1.8.3 to compile with VS2017
+* [ARROW-4464](https://issues.apache.org/jira/browse/ARROW-4464) - [Rust] 
[DataFusion] Add support for LIMIT
+* [ARROW-4466](https://issues.apache.org/jira/browse/ARROW-4466) - [Rust] 
[DataFusion] Add support for Parquet data sources
+* [ARROW-4468](https://issues.apache.org/jira/browse/ARROW-4468) - [Rust] 
Implement BitAnd/BitOr for &Buffer (with SIMD)
+* [ARROW-4472](https://issues.apache.org/jira/browse/ARROW-4472) - 
[Website][Python] Blog post about Python string memory use improvements in 0.12
+* [ARROW-4475](https://issues.apache.org/jira/browse/ARROW-4475) - [Python] 
Serializing objects that contain themselves
+* [ARROW-4476](https://issues.apache.org/jira/browse/ARROW-4476) - [Rust] 
[DataFusion] Post donation clean up tasks
+* [ARROW-4481](https://issues.apache.org/jira/browse/ARROW-4481) - [Website] 
Instructions for publishing web site are missing a step
+* [ARROW-4483](https://issues.apache.org/jira/browse/ARROW-4483) - [Website] 
Fix broken link (author) in DataFusion blog post
+* [ARROW-4485](https://issues.apache.org/jira/browse/ARROW-4485) - [CI] 
Determine maintenance approach to pinned conda-forge binutils package
+* [ARROW-4486](https://issues.apache.org/jira/browse/ARROW-4486) - 
[Python][CUDA] pyarrow.cuda.Context.foreign\_buffer should have a \`base=None\` 
argument
+* [ARROW-4488](https://issues.apache.org/jira/browse/ARROW-4488) - [Rust] From 
AsRef<[u8]> for Buffer does not ensure correct padding
+* [ARROW-4489](https://issues.apache.org/jira/browse/ARROW-4489) - [Rust] 
PrimitiveArray.value\_slice performs bounds checking when it should not
+* [ARROW-4490](https://issues.apache.org/jira/browse/ARROW-4490) - [Rust] Add 
explicit SIMD vectorization for boolean ops in "array\_ops"
+* [ARROW-4491](https://issues.apache.org/jira/browse/ARROW-4491) - [Python] 
Remove usage of std::to\_string and std::stoi
+* [ARROW-4499](https://issues.apache.org/jira/browse/ARROW-4499) - 
[Python][CI] Upgrade to latest flake8 3.7.5 in travis\_lint.sh
+* [ARROW-4502](https://issues.apache.org/jira/browse/ARROW-4502) - [C#] Add 
support for zero-copy reads
+* [ARROW-4506](https://issues.apache.org/jira/browse/ARROW-4506) - [Ruby] Add 
Arrow::RecordBatch#raw\_records
+* [ARROW-4513](https://issues.apache.org/jira/browse/ARROW-4513) - [Rust] 
Implement BitAnd/BitOr for &Bitmap
+* [ARROW-4518](https://issues.apache.org/jira/browse/ARROW-4518) - [JS] add 
jsdelivr to package.json
+* [ARROW-4528](https://issues.apache.org/jira/browse/ARROW-4528) - [C++] 
Update lint docker container to LLVM-7
+* [ARROW-4529](https://issues.apache.org/jira/browse/ARROW-4529) - [C++] Add 
test coverage for BitUtils::RoundDown
+* [ARROW-4531](https://issues.apache.org/jira/browse/ARROW-4531) - [C++] 
Handling of non-aligned slices in Sum kernel
+* [ARROW-4537](https://issues.apache.org/jira/browse/ARROW-4537) - [CI] 
Suppress shell warning on travis-ci
+* [ARROW-4539](https://issues.apache.org/jira/browse/ARROW-4539) - [Java]List 
vector child value count not set correctly
+* [ARROW-4540](https://issues.apache.org/jira/browse/ARROW-4540) - [Rust] Add 
basic JSON reader
+* [ARROW-4543](https://issues.apache.org/jira/browse/ARROW-4543) - [C#] Update 
Flat Buffers code to latest version
+* [ARROW-4547](https://issues.apache.org/jira/browse/ARROW-4547) - 
[Python][Documentation] Update python/development.rst with instructions for 
CUDA-enabled builds
+* [ARROW-4556](https://issues.apache.org/jira/browse/ARROW-4556) - [Rust] 
Preserve order of JSON inferred schema
+* [ARROW-4558](https://issues.apache.org/jira/browse/ARROW-4558) - 
[C++][Flight] Avoid undefined behavior with gRPC memory optimizations
+* [ARROW-4560](https://issues.apache.org/jira/browse/ARROW-4560) - [R] array() 
needs to take single input, not ...
+* [ARROW-4562](https://issues.apache.org/jira/browse/ARROW-4562) - 
[C++][Flight] Create outgoing composite grpc::ByteBuffer instead of allocating 
contiguous slice and copying IpcPayload into it
+* [ARROW-4565](https://issues.apache.org/jira/browse/ARROW-4565) - [R] Reading 
records with all non-null decimals SEGFAULTs
+* [ARROW-4568](https://issues.apache.org/jira/browse/ARROW-4568) - [C++] Add 
version macros to headers
+* [ARROW-4572](https://issues.apache.org/jira/browse/ARROW-4572) - [C++] 
Remove memory zeroing from PrimitiveAllocatingUnaryKernel
+* [ARROW-4583](https://issues.apache.org/jira/browse/ARROW-4583) - [Plasma] 
There are bugs reported by code scan tool
+* [ARROW-4586](https://issues.apache.org/jira/browse/ARROW-4586) - [Rust] 
Remove arrow/mod.rs as it is not needed
+* [ARROW-4590](https://issues.apache.org/jira/browse/ARROW-4590) - [Rust] Add 
explicit SIMD vectorization for comparison ops in "array\_ops"
+* [ARROW-4592](https://issues.apache.org/jira/browse/ARROW-4592) - [GLib] Stop 
configure immediately when GLib isn't available
+* [ARROW-4593](https://issues.apache.org/jira/browse/ARROW-4593) - [Ruby] 
Arrow::Array#[out\_of\_range] returns nil
+* [ARROW-4594](https://issues.apache.org/jira/browse/ARROW-4594) - [Ruby] 
Arrow::StructArray#[] returns Arrow::Struct instead of Arrow::Array
+* [ARROW-4595](https://issues.apache.org/jira/browse/ARROW-4595) - [Rust] 
[DataFusion] Implement DataFrame style API
+* [ARROW-4598](https://issues.apache.org/jira/browse/ARROW-4598) - [CI] Remove 
needless LLVM\_DIR for macOS
+* [ARROW-4599](https://issues.apache.org/jira/browse/ARROW-4599) - [C++] Add 
support for system GFlags
+* [ARROW-4602](https://issues.apache.org/jira/browse/ARROW-4602) - [Rust][ 
[DataFusion] Integrate query optimizer with ExecutionContext
+* [ARROW-4605](https://issues.apache.org/jira/browse/ARROW-4605) - [Rust] Move 
filter and limit code from DataFusion into compute module
+* [ARROW-4609](https://issues.apache.org/jira/browse/ARROW-4609) - [C++] Use 
google benchmark from toolchain
+* [ARROW-4610](https://issues.apache.org/jira/browse/ARROW-4610) - [Plasma] 
Avoid JNI from crashing
+* [ARROW-4611](https://issues.apache.org/jira/browse/ARROW-4611) - [C++] 
Rework CMake third-party logic
+* [ARROW-4612](https://issues.apache.org/jira/browse/ARROW-4612) - [Python] 
Use cython from PyPI for windows wheels build
+* [ARROW-4613](https://issues.apache.org/jira/browse/ARROW-4613) - [C++] 
Alpine build failing as libgtestd.so is not found
+* [ARROW-4614](https://issues.apache.org/jira/browse/ARROW-4614) - [C++/CI] 
Activate flight build in ci/docker\_build\_cpp.sh
+* [ARROW-4615](https://issues.apache.org/jira/browse/ARROW-4615) - [C++] Add 
checked\_pointer\_cast
+* [ARROW-4616](https://issues.apache.org/jira/browse/ARROW-4616) - [C++] Log 
message in BuildUtils as STATUS
+* [ARROW-4618](https://issues.apache.org/jira/browse/ARROW-4618) - [Docker] 
Makefile to build dependent docker images
+* [ARROW-4619](https://issues.apache.org/jira/browse/ARROW-4619) - [R]: Fix 
the autobrew script
+* [ARROW-4620](https://issues.apache.org/jira/browse/ARROW-4620) - [C#] Add 
unit tests for "Types" in arrow/csharp
+* [ARROW-4623](https://issues.apache.org/jira/browse/ARROW-4623) - [R] update 
Rcpp dependency
+* [ARROW-4628](https://issues.apache.org/jira/browse/ARROW-4628) - [Rust] 
[DataFusion] Implement type coercion query optimizer rule
+* [ARROW-4632](https://issues.apache.org/jira/browse/ARROW-4632) - [Ruby] Add 
BigDecimal#to\_arrow
+* [ARROW-4634](https://issues.apache.org/jira/browse/ARROW-4634) - [Rust] 
[Parquet] Reorganize test\_common mod to allow more test util codes.
+* [ARROW-4637](https://issues.apache.org/jira/browse/ARROW-4637) - [Python] 
Avoid importing Pandas unless necessary
+* [ARROW-4638](https://issues.apache.org/jira/browse/ARROW-4638) - [R] install 
instructions using brew
+* [ARROW-4640](https://issues.apache.org/jira/browse/ARROW-4640) - [Python] 
Add docker-compose configuration to build and test the project without pandas 
installed
+* [ARROW-4643](https://issues.apache.org/jira/browse/ARROW-4643) - [C++] Add 
compiler diagnostic color when using Ninja
+* [ARROW-4644](https://issues.apache.org/jira/browse/ARROW-4644) - 
[C++/Docker] Build Gandiva in the docker containers
+* [ARROW-4645](https://issues.apache.org/jira/browse/ARROW-4645) - 
[C++/Packaging] Ship Gandiva with OSX and Windows wheels
+* [ARROW-4646](https://issues.apache.org/jira/browse/ARROW-4646) - 
[C++/Packaging] Ship gandiva with the conda-forge packages
+* [ARROW-4655](https://issues.apache.org/jira/browse/ARROW-4655) - [Packaging] 
Parallelize binary upload
+* [ARROW-4662](https://issues.apache.org/jira/browse/ARROW-4662) - [Python] 
Add type\_codes property in UnionType
+* [ARROW-4667](https://issues.apache.org/jira/browse/ARROW-4667) - [C++] 
Suppress unused function warnings with MinGW
+* [ARROW-4670](https://issues.apache.org/jira/browse/ARROW-4670) - [Rust] 
compute::sum performance issue
+* [ARROW-4671](https://issues.apache.org/jira/browse/ARROW-4671) - [C++] 
MakeBuilder doesn't support Type::DICTIONARY
+* [ARROW-4673](https://issues.apache.org/jira/browse/ARROW-4673) - [C++] 
Implement AssertDatumEquals
+* [ARROW-4676](https://issues.apache.org/jira/browse/ARROW-4676) - [C++] Add 
support for debug build with MinGW
+* [ARROW-4678](https://issues.apache.org/jira/browse/ARROW-4678) - [Rust] 
Minimize unstable feature usage
+* [ARROW-4679](https://issues.apache.org/jira/browse/ARROW-4679) - [Rust] 
[DataFusion] Implement in-memory DataSource
+* [ARROW-4681](https://issues.apache.org/jira/browse/ARROW-4681) - [Rust] 
[DataFusion] Implement parallel query execution using threads
+* [ARROW-4686](https://issues.apache.org/jira/browse/ARROW-4686) - Only accept 
'y' or 'n' in merge\_arrow\_pr.py prompts
+* [ARROW-4689](https://issues.apache.org/jira/browse/ARROW-4689) - [Go] add 
support for WASM
+* [ARROW-4690](https://issues.apache.org/jira/browse/ARROW-4690) - [Python] 
Building TensorFlow compatible wheels for Arrow
+* [ARROW-4692](https://issues.apache.org/jira/browse/ARROW-4692) - 
[Format][Documentation] Add more details about "sidecar" to flight proto
+* [ARROW-4693](https://issues.apache.org/jira/browse/ARROW-4693) - [CI] Build 
boost library with multi precision  
+* [ARROW-4697](https://issues.apache.org/jira/browse/ARROW-4697) - [C++] Add 
URI parsing facility
+* [ARROW-47](https://issues.apache.org/jira/browse/ARROW-47) - [C++] Consider 
adding a scalar type object model
+* [ARROW-4705](https://issues.apache.org/jira/browse/ARROW-4705) - [Rust] CSV 
reader should show line number and error message when failing to parse a line
+* [ARROW-4707](https://issues.apache.org/jira/browse/ARROW-4707) - [C++] move 
BitsetStack to bit-util.h
+* [ARROW-4718](https://issues.apache.org/jira/browse/ARROW-4718) - Add 
ArrowStreamWriter/Reader ctors that leave open the underlying Stream
+* [ARROW-4727](https://issues.apache.org/jira/browse/ARROW-4727) - [Rust] 
Implement ability to check if two schemas are the same
+* [ARROW-4730](https://issues.apache.org/jira/browse/ARROW-4730) - [C++] Add 
docker-compose entry for testing Fedora build with system packages
+* [ARROW-4731](https://issues.apache.org/jira/browse/ARROW-4731) - [C++] Add 
docker-compose entry for testing Ubuntu Xenial build with system packages
+* [ARROW-4732](https://issues.apache.org/jira/browse/ARROW-4732) - [C++] Add 
docker-compose entry for testing Debian Testing build with system packages
+* [ARROW-4733](https://issues.apache.org/jira/browse/ARROW-4733) - [C++] Add 
CI entry that builds without the conda-forge toolchain but with system packages
+* [ARROW-4734](https://issues.apache.org/jira/browse/ARROW-4734) - [Go] Add 
option to write a header for CSV writer
+* [ARROW-4735](https://issues.apache.org/jira/browse/ARROW-4735) - [Go] 
Benchmark strconv.Format vs. fmt.Sprintf for CSV writer
+* [ARROW-4739](https://issues.apache.org/jira/browse/ARROW-4739) - [Rust] 
[DataFusion] It should be possible to share a logical plan between threads
+* [ARROW-4740](https://issues.apache.org/jira/browse/ARROW-4740) - [Java] 
Upgrade to JUnit 5 
+* [ARROW-4743](https://issues.apache.org/jira/browse/ARROW-4743) - [Java] Fix 
documentation in arrow memory module
+* [ARROW-4745](https://issues.apache.org/jira/browse/ARROW-4745) - 
[C++][Documentation] Document process for replicating static\_crt builds on 
windows
+* [ARROW-4749](https://issues.apache.org/jira/browse/ARROW-4749) - [Rust] 
RecordBatch::new() should return result instead of panicking
+* [ARROW-4751](https://issues.apache.org/jira/browse/ARROW-4751) - [C++] Add 
pkg-config to conda\_env\_cpp.yml
+* [ARROW-4754](https://issues.apache.org/jira/browse/ARROW-4754) - [CI][Java] 
Flaky TestAuth Flight test
+* [ARROW-4756](https://issues.apache.org/jira/browse/ARROW-4756) - [CI] 
document the procedure to update docker image for manylinux1 builds
+* [ARROW-4758](https://issues.apache.org/jira/browse/ARROW-4758) - [Flight] 
Build fails on Mac due to missing Schema\_generated.h
+* [ARROW-4769](https://issues.apache.org/jira/browse/ARROW-4769) - [Rust] 
Improve array limit function where max records > len
+* [ARROW-4772](https://issues.apache.org/jira/browse/ARROW-4772) - Provide new 
ORC adapter interface that allow user to specify row number
+* [ARROW-4776](https://issues.apache.org/jira/browse/ARROW-4776) - [C++] 
DictionaryBuilder should support bootstrapping from an existing dict type
+* [ARROW-4777](https://issues.apache.org/jira/browse/ARROW-4777) - 
[C++/Python] manylinux1: Update lz4 to 1.8.3
+* [ARROW-4778](https://issues.apache.org/jira/browse/ARROW-4778) - 
[C++/Python] manylinux1: Update Thrift to 0.12.0
+* [ARROW-4782](https://issues.apache.org/jira/browse/ARROW-4782) - [C++] 
Prototype scalar and array expression types for developing deferred operator 
algebra
+* [ARROW-4786](https://issues.apache.org/jira/browse/ARROW-4786) - 
[C++/Python] Support better parallelisation in manylinux1 base build
+* [ARROW-4789](https://issues.apache.org/jira/browse/ARROW-4789) - [C++] 
Deprecate and and later remove arrow::io::ReadableFileInterface
+* [ARROW-4790](https://issues.apache.org/jira/browse/ARROW-4790) - 
[Python/Packaging] Update manylinux docker image in crossbow task
+* [ARROW-4791](https://issues.apache.org/jira/browse/ARROW-4791) - Unused 
dependencies in arrow and datafusion
+* [ARROW-4794](https://issues.apache.org/jira/browse/ARROW-4794) - [Python] 
Make pandas an optional test dependency
+* [ARROW-4797](https://issues.apache.org/jira/browse/ARROW-4797) - [Plasma] 
Avoid store crash if not enough memory is available
+* [ARROW-4801](https://issues.apache.org/jira/browse/ARROW-4801) - [GLib] 
Suppress pkgconfig.generate() warnings
+* [ARROW-4808](https://issues.apache.org/jira/browse/ARROW-4808) - 
[Java][Vector] Convenience methods for setting decimal vector
+* [ARROW-4817](https://issues.apache.org/jira/browse/ARROW-4817) - [Rust] 
[DataFusion] Small re-org of modules
+* [ARROW-4826](https://issues.apache.org/jira/browse/ARROW-4826) - [Go] export 
Flush method for CSV writer
+* [ARROW-4831](https://issues.apache.org/jira/browse/ARROW-4831) - [C++] 
CMAKE\_AR is not passed to ZSTD thirdparty dependency 
+* [ARROW-4833](https://issues.apache.org/jira/browse/ARROW-4833) - [Release] 
Document how to update the brew formula in the release management guide
+* [ARROW-4834](https://issues.apache.org/jira/browse/ARROW-4834) - [R] Feature 
flag to disable parquet
+* [ARROW-4835](https://issues.apache.org/jira/browse/ARROW-4835) - [GLib] Add 
boolean operations
+* [ARROW-4837](https://issues.apache.org/jira/browse/ARROW-4837) - [C++] 
Support c++filt on a custom path in the run-test.sh script
+* [ARROW-4839](https://issues.apache.org/jira/browse/ARROW-4839) - [C#] Add 
NuGet support
+* [ARROW-4846](https://issues.apache.org/jira/browse/ARROW-4846) - [Java] 
Update Jackson to 2.9.8
+* [ARROW-4849](https://issues.apache.org/jira/browse/ARROW-4849) - [C++] Add 
docker-compose entry for testing Ubuntu Bionic build with system packages
+* [ARROW-4854](https://issues.apache.org/jira/browse/ARROW-4854) - [Rust] Use 
Array Slice for limit kernel
+* [ARROW-4855](https://issues.apache.org/jira/browse/ARROW-4855) - [Packaging] 
Generate default package version based on cpp tags in crossbow.py
+* [ARROW-4858](https://issues.apache.org/jira/browse/ARROW-4858) - 
[Flight][Python] Enable custom FlightDataStream in Python
+* [ARROW-4859](https://issues.apache.org/jira/browse/ARROW-4859) - [GLib] Add 
garrow\_numeric\_array\_mean()
+* [ARROW-4862](https://issues.apache.org/jira/browse/ARROW-4862) - [GLib] Add 
GArrowCastOptions::allow-invalid-utf8 property
+* [ARROW-4865](https://issues.apache.org/jira/browse/ARROW-4865) - [Rust] 
Support casting lists and primitives to lists
+* [ARROW-4873](https://issues.apache.org/jira/browse/ARROW-4873) - [C++] 
Clarify documentation about how to use external ARROW\_PACKAGE\_PREFIX while 
also using CONDA dependency resolution
+* [ARROW-4878](https://issues.apache.org/jira/browse/ARROW-4878) - [C++] 
ARROW\_DEPENDENCY\_SOURCE=CONDA does not work properly with MSVC
+* [ARROW-4882](https://issues.apache.org/jira/browse/ARROW-4882) - [GLib] Add 
"Sum" functions
+* [ARROW-4887](https://issues.apache.org/jira/browse/ARROW-4887) - [GLib] Add 
garrow\_array\_count()
+* [ARROW-4889](https://issues.apache.org/jira/browse/ARROW-4889) - [C++] Add 
STATUS messages for Protobuf in CMake
+* [ARROW-4891](https://issues.apache.org/jira/browse/ARROW-4891) - [C++] ZLIB 
include directories not added
+* [ARROW-4892](https://issues.apache.org/jira/browse/ARROW-4892) - [Rust] 
[DataFusion] Move SQL parser and planner into sql package
+* [ARROW-4893](https://issues.apache.org/jira/browse/ARROW-4893) - [C++] conda 
packages should use $PREFIX inside of conda-build
+* [ARROW-4894](https://issues.apache.org/jira/browse/ARROW-4894) - [Rust] 
[DataFusion] Remove all uses of panic! from aggregate.rs
+* [ARROW-4895](https://issues.apache.org/jira/browse/ARROW-4895) - [Rust] 
[DataFusion] Move error.rs to top level package
+* [ARROW-4896](https://issues.apache.org/jira/browse/ARROW-4896) - [Rust] 
[DataFusion] Remove all uses of panic! from tests
+* [ARROW-4897](https://issues.apache.org/jira/browse/ARROW-4897) - [Rust] 
[DataFusion] Improve Rustdoc
+* [ARROW-4898](https://issues.apache.org/jira/browse/ARROW-4898) - [C++] Old 
versions of FindProtobuf.cmake use ALL-CAPS for variables
+* [ARROW-4899](https://issues.apache.org/jira/browse/ARROW-4899) - [Rust] 
[DataFusion] Remove all uses of panic! from expression.rs
+* [ARROW-4901](https://issues.apache.org/jira/browse/ARROW-4901) - [Go] Run 
tests in Appveyor
+* [ARROW-4905](https://issues.apache.org/jira/browse/ARROW-4905) - 
[C++][Plasma] Remove dlmalloc from client library
+* [ARROW-4907](https://issues.apache.org/jira/browse/ARROW-4907) - [CI] Add 
docker container to inspect docker context
+* [ARROW-4908](https://issues.apache.org/jira/browse/ARROW-4908) - [Rust] 
[DataFusion] Add support for parquet date/time in int32/64 encoding
+* [ARROW-4909](https://issues.apache.org/jira/browse/ARROW-4909) - [CI] Use 
hadolint to lint Dockerfiles
+* [ARROW-4910](https://issues.apache.org/jira/browse/ARROW-4910) - [Rust] 
[DataFusion] Remove all uses of unimplemented!
+* [ARROW-4915](https://issues.apache.org/jira/browse/ARROW-4915) - [GLib] Add 
support for arrow::NullBuilder
+* [ARROW-4922](https://issues.apache.org/jira/browse/ARROW-4922) - [Packaging] 
Use system libraris for .deb and .rpm
+* [ARROW-4924](https://issues.apache.org/jira/browse/ARROW-4924) - [Ruby] Add 
Decimal128#to\_s(scale=nil)
+* [ARROW-4926](https://issues.apache.org/jira/browse/ARROW-4926) - [Rust] 
[DataFusion] Update README for 0.13.0 release
+* [ARROW-4929](https://issues.apache.org/jira/browse/ARROW-4929) - [GLib] Add 
garrow\_array\_count\_values()
+* [ARROW-4932](https://issues.apache.org/jira/browse/ARROW-4932) - [GLib] Use 
G\_DECLARE\_DERIVABLE\_TYPE macro
+* [ARROW-4933](https://issues.apache.org/jira/browse/ARROW-4933) - [R] 
Autodetect Parquet support using pkg-config
+* [ARROW-4937](https://issues.apache.org/jira/browse/ARROW-4937) - [R] Clean 
pkg-config related logic
+* [ARROW-4939](https://issues.apache.org/jira/browse/ARROW-4939) - [Python] 
Add wrapper for "sum" kernel
+* [ARROW-4940](https://issues.apache.org/jira/browse/ARROW-4940) - [Rust] 
Enhance documentation for datafusion
+* [ARROW-4944](https://issues.apache.org/jira/browse/ARROW-4944) - [C++] Raise 
minimal required thrift-cpp to 0.11 in conda environment
+* [ARROW-4946](https://issues.apache.org/jira/browse/ARROW-4946) - [C++] 
Support detection of flatbuffers without FlatbuffersConfig.cmake 
+* [ARROW-4947](https://issues.apache.org/jira/browse/ARROW-4947) - 
[Flight][C++/Python] Remove redundant schema parameter in DoGet
+* [ARROW-4951](https://issues.apache.org/jira/browse/ARROW-4951) - [C++] Turn 
off cpp benchmarks in cpp docker images
+* [ARROW-4955](https://issues.apache.org/jira/browse/ARROW-4955) - [GLib] Add 
garrow\_file\_is\_closed()
+* [ARROW-4964](https://issues.apache.org/jira/browse/ARROW-4964) - [Ruby] Add 
closed check if available on auto close
+* [ARROW-4969](https://issues.apache.org/jira/browse/ARROW-4969) - [C++] Set 
RPATH in correct order for test executables on OSX
+* [ARROW-4977](https://issues.apache.org/jira/browse/ARROW-4977) - [Ruby] Add 
support for building on Windows
+* [ARROW-4978](https://issues.apache.org/jira/browse/ARROW-4978) - [Ruby] Fix 
wrong internal variable name for table data
+* [ARROW-4979](https://issues.apache.org/jira/browse/ARROW-4979) - [GLib] Add 
missing lock to garrow::GIOInputStream
+* [ARROW-4980](https://issues.apache.org/jira/browse/ARROW-4980) - [GLib] Use 
GInputStream as the parent of GArrowInputStream
+* [ARROW-4981](https://issues.apache.org/jira/browse/ARROW-4981) - [Ruby] Add 
support for CSV data encoding conversion
+* [ARROW-4983](https://issues.apache.org/jira/browse/ARROW-4983) - [Plasma] 
Unmap memory when the client is destroyed
+* [ARROW-4994](https://issues.apache.org/jira/browse/ARROW-4994) - [website] 
Update Details for ptgoetz
+* [ARROW-4995](https://issues.apache.org/jira/browse/ARROW-4995) - [R] Make 
sure winbuilder tests pass for package
+* [ARROW-4996](https://issues.apache.org/jira/browse/ARROW-4996) - [Plasma] 
There are many log files in /tmp
+* [ARROW-5003](https://issues.apache.org/jira/browse/ARROW-5003) - [R] remove 
dependency on withr
+* [ARROW-5006](https://issues.apache.org/jira/browse/ARROW-5006) - [R] 
parquet.cpp does not include enough Rcpp
+* [ARROW-5011](https://issues.apache.org/jira/browse/ARROW-5011) - [Release] 
Add support in the source release script for custom hash
+* [ARROW-5013](https://issues.apache.org/jira/browse/ARROW-5013) - [Rust] 
[DataFusion] Refactor runtime expression support
+* [ARROW-5014](https://issues.apache.org/jira/browse/ARROW-5014) - [Java] Fix 
typos in Flight module
+* [ARROW-5018](https://issues.apache.org/jira/browse/ARROW-5018) - [Release] 
Include JavaScript implementation
+* [ARROW-5032](https://issues.apache.org/jira/browse/ARROW-5032) - [C++] 
Headers in vendored/datetime directory aren't installed
+* [ARROW-5041](https://issues.apache.org/jira/browse/ARROW-5041) - 
[Release][C++] use bundled gtest and gmock in verify-release-candidate.bat
+* [ARROW-549](https://issues.apache.org/jira/browse/ARROW-549) - [C++] Add 
function to concatenate like-typed arrays
+* [ARROW-572](https://issues.apache.org/jira/browse/ARROW-572) - [C++] Apply 
visitor pattern in IPC metadata
+* [ARROW-585](https://issues.apache.org/jira/browse/ARROW-585) - [C++] Define 
public API for user-defined data types
+* [ARROW-694](https://issues.apache.org/jira/browse/ARROW-694) - [C++] Build 
JSON "scanner" for reading record batches from line-delimited JSON files
+
+### Bug Fixes
+
+* [ARROW-2392](https://issues.apache.org/jira/browse/ARROW-2392) - [Python] 
pyarrow RecordBatchStreamWriter allows writing batches with different schemas
+* [ARROW-295](https://issues.apache.org/jira/browse/ARROW-295) - Create DOAP 
File
+* [ARROW-3086](https://issues.apache.org/jira/browse/ARROW-3086) - [Glib] 
GISCAN fails due to conda-shipped openblas
+* [ARROW-3096](https://issues.apache.org/jira/browse/ARROW-3096) - [Python] 
Update Python source build instructions given Anaconda/conda-forge toolchain 
migration
+* [ARROW-3133](https://issues.apache.org/jira/browse/ARROW-3133) - [C++] 
Logical boolean kernels in kernels/boolean.cc cannot write into preallocated 
memory
+* [ARROW-3208](https://issues.apache.org/jira/browse/ARROW-3208) - [C++] 
Segmentation fault when casting dictionary to numeric with nullptr 
valid\_bitmap 
+* [ARROW-3564](https://issues.apache.org/jira/browse/ARROW-3564) - [Python] 
writing version 2.0 parquet format with dictionary encoding enabled
+* [ARROW-3578](https://issues.apache.org/jira/browse/ARROW-3578) - [Release] 
Address spurious Apache RAT failures in source release script
+* [ARROW-3593](https://issues.apache.org/jira/browse/ARROW-3593) - [R] CI 
builds failing due to GitHub API rate limits
+* [ARROW-3606](https://issues.apache.org/jira/browse/ARROW-3606) - [Python] 
flake8 fails on Crossbow
+* [ARROW-3669](https://issues.apache.org/jira/browse/ARROW-3669) - [Python] 
Convert big-endian numbers or raise error in pyarrow.array
+* [ARROW-3843](https://issues.apache.org/jira/browse/ARROW-3843) - [Python] 
Writing Parquet file from empty table created with Table.from\_pandas(..., 
preserve\_index=False) fails
+* [ARROW-3923](https://issues.apache.org/jira/browse/ARROW-3923) - [Java] 
JDBC-to-Arrow Conversion: Unnecessary Calendar Requirement
+* [ARROW-4081](https://issues.apache.org/jira/browse/ARROW-4081) - [Go] Sum 
methods on Mac OS X panic when the array is empty
+* [ARROW-4104](https://issues.apache.org/jira/browse/ARROW-4104) - [Java] race 
in AllocationManager during release
+* [ARROW-4117](https://issues.apache.org/jira/browse/ARROW-4117) - [Python] 
"asv dev" command fails with latest revision
+* [ARROW-4181](https://issues.apache.org/jira/browse/ARROW-4181) - [Python] 
TestConvertStructTypes.test\_from\_numpy\_large failing
+* [ARROW-4192](https://issues.apache.org/jira/browse/ARROW-4192) - 
"./dev/run\_docker\_compose.sh" is out of date
+* [ARROW-4213](https://issues.apache.org/jira/browse/ARROW-4213) - [Flight] 
C++ and Java implementations are incompatible
+* [ARROW-4244](https://issues.apache.org/jira/browse/ARROW-4244) - Clarify 
language around padding/alignment
+* [ARROW-4250](https://issues.apache.org/jira/browse/ARROW-4250) - 
[C++][Gandiva] Use approximate comparisons for floating point numbers in 
gandiva-projector-test
+* [ARROW-4252](https://issues.apache.org/jira/browse/ARROW-4252) - [C++] 
Status error context strings missing lines of code
+* [ARROW-4253](https://issues.apache.org/jira/browse/ARROW-4253) - [GLib] 
Cannot use non-system Boost specified with $BOOST\_ROOT
+* [ARROW-4254](https://issues.apache.org/jira/browse/ARROW-4254) - [C++] 
Gandiva tests fail to compile with Boost in Ubuntu 14.04 apt
+* [ARROW-4255](https://issues.apache.org/jira/browse/ARROW-4255) - [C++] 
Schema::GetFieldIndex is not thread-safe
+* [ARROW-4261](https://issues.apache.org/jira/browse/ARROW-4261) - [C++] CMake 
paths for IPC, Flight, Thrift, and Plasma don't support using Arrow as a 
subproject
+* [ARROW-4264](https://issues.apache.org/jira/browse/ARROW-4264) - [C++] 
Document why DCHECKs are used in kernels
+* [ARROW-4267](https://issues.apache.org/jira/browse/ARROW-4267) - 
[Python/C++][Parquet] Segfault when reading rowgroups with duplicated columns
+* [ARROW-4274](https://issues.apache.org/jira/browse/ARROW-4274) - [Gandiva] 
static jni library broken after decimal changes
+* [ARROW-4275](https://issues.apache.org/jira/browse/ARROW-4275) - [C++] 
gandiva-decimal\_single\_test extremely slow
+* [ARROW-4280](https://issues.apache.org/jira/browse/ARROW-4280) - 
[C++][Documentation] It looks like flex and bison are required for parquet
+* [ARROW-4282](https://issues.apache.org/jira/browse/ARROW-4282) - [Rust] 
builder benchmark is broken
+* [ARROW-4284](https://issues.apache.org/jira/browse/ARROW-4284) - [C#] File / 
Stream serialization fails due to type mismatch / missing footer
+* [ARROW-4295](https://issues.apache.org/jira/browse/ARROW-4295) - [Plasma] 
Incorrect log message when evicting objects
+* [ARROW-4296](https://issues.apache.org/jira/browse/ARROW-4296) - [Plasma] 
Starting Plasma store with use\_one\_memory\_mapped\_file enabled crashes due 
to improper memory alignment
+* [ARROW-4312](https://issues.apache.org/jira/browse/ARROW-4312) - [C++] Lint 
doesn't work anymore ("[Errno 24] Too many open files")
+* [ARROW-4319](https://issues.apache.org/jira/browse/ARROW-4319) - 
plasma/store.h pulls ins flatbuffer dependency
+* [ARROW-4320](https://issues.apache.org/jira/browse/ARROW-4320) - [C++] Add 
tests for non-contiguous tensors
+* [ARROW-4322](https://issues.apache.org/jira/browse/ARROW-4322) - [CI] docker 
nightlies fails after conda-forge compiler migration
+* [ARROW-4323](https://issues.apache.org/jira/browse/ARROW-4323) - [Packaging] 
Fix failing OSX clang conda forge builds
+* [ARROW-4326](https://issues.apache.org/jira/browse/ARROW-4326) - [C++] 
Development instructions in python/development.rst will not work for many Linux 
distros with new conda-forge toolchain
+* [ARROW-4327](https://issues.apache.org/jira/browse/ARROW-4327) - [Python] 
Add requirements-build.txt file to simplify setting up Python build environment
+* [ARROW-4328](https://issues.apache.org/jira/browse/ARROW-4328) - Make R 
build compatible with DARROW\_TENSORFLOW=ON
+* [ARROW-4329](https://issues.apache.org/jira/browse/ARROW-4329) - Python 
should include the parquet headers
+* [ARROW-4342](https://issues.apache.org/jira/browse/ARROW-4342) - 
[Gandiva][Java] spurious failures in projector cache test
+* [ARROW-4347](https://issues.apache.org/jira/browse/ARROW-4347) - [Python] 
Run Python Travis CI unit tests on Linux when Java codebase changed
+* [ARROW-4349](https://issues.apache.org/jira/browse/ARROW-4349) - [C++] Build 
all benchmarks on Windows without failing
+* [ARROW-4351](https://issues.apache.org/jira/browse/ARROW-4351) - [C++] Fail 
to build with static parquet
+* [ARROW-4355](https://issues.apache.org/jira/browse/ARROW-4355) - [C++] 
test-util functions are no longer part of libarrow
+* [ARROW-4360](https://issues.apache.org/jira/browse/ARROW-4360) - [C++] Query 
homebrew for Thrift
+* [ARROW-4364](https://issues.apache.org/jira/browse/ARROW-4364) - [C++] Fix 
-weverything -wextra compilation errors
+* [ARROW-4366](https://issues.apache.org/jira/browse/ARROW-4366) - [Docs] 
Change extension from format/README.md to format/README.rst
+* [ARROW-4367](https://issues.apache.org/jira/browse/ARROW-4367) - [C++] 
StringDictionaryBuilder segfaults on Finish with only null entries
+* [ARROW-4368](https://issues.apache.org/jira/browse/ARROW-4368) - Bintray 
repository signature verification fails
+* [ARROW-4370](https://issues.apache.org/jira/browse/ARROW-4370) - [Python] 
Table to pandas conversion fails for list of bool
+* [ARROW-4374](https://issues.apache.org/jira/browse/ARROW-4374) - [C++] 
DictionaryBuilder does not correctly report length and null\_count
+* [ARROW-4381](https://issues.apache.org/jira/browse/ARROW-4381) - [Docker] 
docker-compose build lint fails
+* [ARROW-4385](https://issues.apache.org/jira/browse/ARROW-4385) - [Python] 
default\_version of a release should not include SNAPSHOT
+* [ARROW-4389](https://issues.apache.org/jira/browse/ARROW-4389) - [R] 
Installing clang-tools in CI is failing on trusty
+* [ARROW-4395](https://issues.apache.org/jira/browse/ARROW-4395) - ts-node 
throws type error running \`bin/arrow2csv.js\`
+* [ARROW-4400](https://issues.apache.org/jira/browse/ARROW-4400) - [CI] 
install of clang tools failing
+* [ARROW-4403](https://issues.apache.org/jira/browse/ARROW-4403) - [Rust] CI 
fails due to formatting errors
+* [ARROW-4404](https://issues.apache.org/jira/browse/ARROW-4404) - [CI] 
AppVeyor toolchain build does not build anything
+* [ARROW-4407](https://issues.apache.org/jira/browse/ARROW-4407) - [C++] 
ExternalProject\_Add does not capture CC/CXX correctly
+* [ARROW-4410](https://issues.apache.org/jira/browse/ARROW-4410) - [C++] Fix 
InvertKernel edge cases
+* [ARROW-4413](https://issues.apache.org/jira/browse/ARROW-4413) - [Python] 
pyarrow.hdfs.connect() failing
+* [ARROW-4414](https://issues.apache.org/jira/browse/ARROW-4414) - [C++] Stop 
using cmake COMMAND\_EXPAND\_LISTS because it breaks package builds for older 
distros
+* [ARROW-4417](https://issues.apache.org/jira/browse/ARROW-4417) - [C++] Doc 
build broken
+* [ARROW-4420](https://issues.apache.org/jira/browse/ARROW-4420) - 
[INTEGRATION] Make spark integration test pass and test against spark's master 
branch
+* [ARROW-4421](https://issues.apache.org/jira/browse/ARROW-4421) - 
[Flight][C++] Handle large Flight data messages
+* [ARROW-4434](https://issues.apache.org/jira/browse/ARROW-4434) - [Python] 
Cannot create empty StructArray via pa.StructArray.from\_arrays
+* [ARROW-4440](https://issues.apache.org/jira/browse/ARROW-4440) - [C++] Fix 
flatbuffers build using msvc
+* [ARROW-4457](https://issues.apache.org/jira/browse/ARROW-4457) - [Python] 
Cannot create Decimal128 array using integers
+* [ARROW-4469](https://issues.apache.org/jira/browse/ARROW-4469) - 
[Python][C++] CI Failing for Python 2.7 and 3.6 with valgrind
+* [ARROW-4471](https://issues.apache.org/jira/browse/ARROW-4471) - [C++] Pass 
AR and RANLIB to all external projects
+* [ARROW-4474](https://issues.apache.org/jira/browse/ARROW-4474) - [Flight] 
FlightInfo should use signed integer types for payload size
+* [ARROW-4496](https://issues.apache.org/jira/browse/ARROW-4496) - [CI] CI 
failing for python Xcode 7.3
+* [ARROW-4498](https://issues.apache.org/jira/browse/ARROW-4498) - [Plasma] 
Plasma fails building with CUDA enabled
+* [ARROW-4500](https://issues.apache.org/jira/browse/ARROW-4500) - [C++] librt 
and pthread hacks can cause linking problems
+* [ARROW-4501](https://issues.apache.org/jira/browse/ARROW-4501) - [C++] 
Unique returns non-unique strings
+* [ARROW-4525](https://issues.apache.org/jira/browse/ARROW-4525) - [Rust] 
[Parquet] Convert ArrowError to ParquetError
+* [ARROW-4527](https://issues.apache.org/jira/browse/ARROW-4527) - [Packaging] 
Update linux packaging tasks to align with the LLVM 7 migration
+* [ARROW-4532](https://issues.apache.org/jira/browse/ARROW-4532) - [Java] 
varchar value buffer much larger than expected
+* [ARROW-4533](https://issues.apache.org/jira/browse/ARROW-4533) - [Python] 
Document how to run hypothesis tests
+* [ARROW-4535](https://issues.apache.org/jira/browse/ARROW-4535) - [C++] Fix 
MakeBuilder to preserve ListType's field name
+* [ARROW-4536](https://issues.apache.org/jira/browse/ARROW-4536) - Add 
data\_type argument in garrow\_list\_array\_new
+* [ARROW-4538](https://issues.apache.org/jira/browse/ARROW-4538) - [PYTHON] 
Remove index column from subschema in write\_to\_dataframe
+* [ARROW-4549](https://issues.apache.org/jira/browse/ARROW-4549) - [C++] Can't 
build benchmark code on CUDA enabled build
+* [ARROW-4550](https://issues.apache.org/jira/browse/ARROW-4550) - [JS] Fix 
AMD pattern
+* [ARROW-4559](https://issues.apache.org/jira/browse/ARROW-4559) - [Python] 
pyarrow can't read/write filenames with special characters
+* [ARROW-4563](https://issues.apache.org/jira/browse/ARROW-4563) - [Python] 
pa.decimal128 should validate inputs
+* [ARROW-4571](https://issues.apache.org/jira/browse/ARROW-4571) - [Format] 
Tensor.fbs file has multiple root\_type declarations
+* [ARROW-4576](https://issues.apache.org/jira/browse/ARROW-4576) - [Python] 
Benchmark failures
+* [ARROW-4577](https://issues.apache.org/jira/browse/ARROW-4577) - [C++] 
Interface link libraries declared on arrow\_shared target that are actually 
non-interface
+* [ARROW-4581](https://issues.apache.org/jira/browse/ARROW-4581) - [C++] 
gbenchmark\_ep is a dependency of unit tests when ARROW\_BUILD\_BENCHMARKS=ON
+* [ARROW-4582](https://issues.apache.org/jira/browse/ARROW-4582) - 
[C++/Python] Memory corruption on Pandas->Arrow conversion
+* [ARROW-4584](https://issues.apache.org/jira/browse/ARROW-4584) - [Python] 
Add built wheel to manylinux1 dockerignore.
+* [ARROW-4585](https://issues.apache.org/jira/browse/ARROW-4585) - [C++] 
Dependency of Flight C++ sources on generated protobuf is not respected
+* [ARROW-4587](https://issues.apache.org/jira/browse/ARROW-4587) - Flight C++ 
DoPut segfaults
+* [ARROW-4597](https://issues.apache.org/jira/browse/ARROW-4597) - [C++] 
Targets for system Google Mock shared library are missing
+* [ARROW-4601](https://issues.apache.org/jira/browse/ARROW-4601) - [Python] 
Master build is broken due to missing licence for .dockerignore
+* [ARROW-4608](https://issues.apache.org/jira/browse/ARROW-4608) - [C++] cmake 
script assumes that double-conversion installs static libs
+* [ARROW-4617](https://issues.apache.org/jira/browse/ARROW-4617) - [C++] 
Support double-conversion<3.1
+* [ARROW-4624](https://issues.apache.org/jira/browse/ARROW-4624) - [C++] 
Linker errors when building benchmarks
+* [ARROW-4629](https://issues.apache.org/jira/browse/ARROW-4629) - [Python] 
Pandas to arrow conversion slowed down by local imports
+* [ARROW-4639](https://issues.apache.org/jira/browse/ARROW-4639) - [CI] 
Crossbow build failing for Gandiva jars
+* [ARROW-4641](https://issues.apache.org/jira/browse/ARROW-4641) - [C++] 
Flight builds complain of -Wstrict-aliasing 
+* [ARROW-4642](https://issues.apache.org/jira/browse/ARROW-4642) - [R] Change 
\`f\` to \`file\` in \`read\_parquet\_file()\`
+* [ARROW-4654](https://issues.apache.org/jira/browse/ARROW-4654) - [C++] 
Implicit Flight target dependencies cause compilation failure
+* [ARROW-4657](https://issues.apache.org/jira/browse/ARROW-4657) - [Release] 
gbenchmark should not be needed for verification
+* [ARROW-4658](https://issues.apache.org/jira/browse/ARROW-4658) - [C++] 
Shared gflags is also a run-time conda requirement
+* [ARROW-4659](https://issues.apache.org/jira/browse/ARROW-4659) - [CI] 
ubuntu/debian nightlies fail because of missing gandiva files
+* [ARROW-4660](https://issues.apache.org/jira/browse/ARROW-4660) - [C++] 
gflags fails to build due to CMake error
+* [ARROW-4664](https://issues.apache.org/jira/browse/ARROW-4664) - [C++] 
DCHECK macro conditions are evaluated in release builds
+* [ARROW-4669](https://issues.apache.org/jira/browse/ARROW-4669) - [Java] No 
Bounds checking on ArrowBuf.slice
+* [ARROW-4672](https://issues.apache.org/jira/browse/ARROW-4672) - [C++] 
clang-7 matrix entry is build using gcc
+* [ARROW-4680](https://issues.apache.org/jira/browse/ARROW-4680) - [CI] [Rust] 
Travis CI builds fail with latest Rust 1.34.0-nightly (2019-02-25)
+* [ARROW-4684](https://issues.apache.org/jira/browse/ARROW-4684) - [Python] CI 
failures in test\_cython.py
+* [ARROW-4687](https://issues.apache.org/jira/browse/ARROW-4687) - [Python] 
FlightServerBase.run should exit on Ctrl-C
+* [ARROW-4688](https://issues.apache.org/jira/browse/ARROW-4688) - 
[C++][Parquet] 16MB limit on (nested) column chunk prevents tuning 
row\_group\_size
+* [ARROW-4696](https://issues.apache.org/jira/browse/ARROW-4696) - Verify 
release script is over optimist with CUDA detection
+* [ARROW-4699](https://issues.apache.org/jira/browse/ARROW-4699) - [C++] json 
parser should not rely on null terminated buffers
+* [ARROW-4704](https://issues.apache.org/jira/browse/ARROW-4704) - [CI][GLib] 
Plasma test is flaky
+* [ARROW-4710](https://issues.apache.org/jira/browse/ARROW-4710) - [C++][R] 
New linting script skip files with "cpp" extension
+* [ARROW-4712](https://issues.apache.org/jira/browse/ARROW-4712) - [C++][CI] 
Clang7 Valgrind complains when not move shared\_ptr
+* [ARROW-4721](https://issues.apache.org/jira/browse/ARROW-4721) - [Rust] 
[DataFusion] Propagate schema in filter
+* [ARROW-4724](https://issues.apache.org/jira/browse/ARROW-4724) - [C++] 
Python not being built nor test under MinGW builds
+* [ARROW-4728](https://issues.apache.org/jira/browse/ARROW-4728) - [JS] 
Failing test Table#assign with a zero-length Null column round-trips through 
serialization
+* [ARROW-4737](https://issues.apache.org/jira/browse/ARROW-4737) - [C#] tests 
are not running in CI
+* [ARROW-4744](https://issues.apache.org/jira/browse/ARROW-4744) - [CI][C++] 
Mingw32 builds failing
+* [ARROW-4750](https://issues.apache.org/jira/browse/ARROW-4750) - [C++] 
RapidJSON triggers Wclass-memaccess on GCC 8+
+* [ARROW-4760](https://issues.apache.org/jira/browse/ARROW-4760) - [C++] 
protobuf 3.7 defines EXPECT\_OK that clashes with Arrow's macro
+* [ARROW-4766](https://issues.apache.org/jira/browse/ARROW-4766) - [C++] 
Casting empty boolean array causes segfault
+* [ARROW-4767](https://issues.apache.org/jira/browse/ARROW-4767) - [C#] 
ArrowStreamReader crashes while reading the end of a stream
+* [ARROW-4768](https://issues.apache.org/jira/browse/ARROW-4768) - [C++][CI] 
arrow-test-array sometimes gets stuck in MinGW build
+* [ARROW-4774](https://issues.apache.org/jira/browse/ARROW-4774) - 
[C++][Parquet] Call Table::Validate when writing a table
+* [ARROW-4775](https://issues.apache.org/jira/browse/ARROW-4775) - [Website] 
Site navbar cannot be expanded
+* [ARROW-4783](https://issues.apache.org/jira/browse/ARROW-4783) - [C++][CI] 
Mingw32 builds sometimes timeout
+* [ARROW-4793](https://issues.apache.org/jira/browse/ARROW-4793) - [Ruby] 
Suppress unused variable warning
+* [ARROW-4796](https://issues.apache.org/jira/browse/ARROW-4796) - 
[Flight][Python] segfault in simple server implementation
+* [ARROW-4802](https://issues.apache.org/jira/browse/ARROW-4802) - [Python] 
Hadoop classpath discovery broken HADOOP\_HOME is a symlink
+* [ARROW-4807](https://issues.apache.org/jira/browse/ARROW-4807) - [Rust] Fix 
csv\_writer benchmark
+* [ARROW-4811](https://issues.apache.org/jira/browse/ARROW-4811) - [C++] An 
incorrect dependency leads "ninja" to re-evaluate steps unnecessarily on 
subsequent calls
+* [ARROW-4813](https://issues.apache.org/jira/browse/ARROW-4813) - [Ruby] Add 
tests for #== and #!=
+* [ARROW-4820](https://issues.apache.org/jira/browse/ARROW-4820) - [Python] 
hadoop class path derived not correct
+* [ARROW-4822](https://issues.apache.org/jira/browse/ARROW-4822) - 
[C++/Python] pyarrow.Table.equals segmentation fault on None
+* [ARROW-4828](https://issues.apache.org/jira/browse/ARROW-4828) - [Python] 
manylinux1 docker-compose context should be python/manylinux1
+* [ARROW-4850](https://issues.apache.org/jira/browse/ARROW-4850) - [CI] 
Integration test failures do not fail the Travis CI build
+* [ARROW-4853](https://issues.apache.org/jira/browse/ARROW-4853) - [Rust] 
Array slice doesn't work on ListArray and StructArray
+* [ARROW-4857](https://issues.apache.org/jira/browse/ARROW-4857) - 
[C++/Python/CI] docker-compose in manylinux1 crossbow jobs too old
+* [ARROW-4866](https://issues.apache.org/jira/browse/ARROW-4866) - [C++] zstd 
ExternalProject failing on Windows
+* [ARROW-4867](https://issues.apache.org/jira/browse/ARROW-4867) - [Python] 
Table.from\_pandas() column order not respected
+* [ARROW-4869](https://issues.apache.org/jira/browse/ARROW-4869) - [C++] Use 
of gmock fails in compute/kernels/util-internal-test.cc 
+* [ARROW-4870](https://issues.apache.org/jira/browse/ARROW-4870) - [Ruby] 
gemspec has wrong msys2 dependency listed
+* [ARROW-4871](https://issues.apache.org/jira/browse/ARROW-4871) - 
[Flight][Java] Handle large Flight messages
+* [ARROW-4872](https://issues.apache.org/jira/browse/ARROW-4872) - [Python] 
Keep backward compatibility for ParquetDatasetPiece
+* [ARROW-4881](https://issues.apache.org/jira/browse/ARROW-4881) - [Python] 
bundle\_zlib CMake function still uses ARROW\_BUILD\_TOOLCHAIN
+* [ARROW-4900](https://issues.apache.org/jira/browse/ARROW-4900) - mingw-w64 < 
5 does not have \_\_cpuidex
+* [ARROW-4903](https://issues.apache.org/jira/browse/ARROW-4903) - [C++] 
Building tests using only static libs not possible
+* [ARROW-4906](https://issues.apache.org/jira/browse/ARROW-4906) - [Format] 
Fix document to describe that SparseMatrixIndexCSR assumes indptr is sorted for 
each row
+* [ARROW-4918](https://issues.apache.org/jira/browse/ARROW-4918) - [C++] Add 
cmake-format to pre-commit
+* [ARROW-4928](https://issues.apache.org/jira/browse/ARROW-4928) - [Python] 
Hypothesis test failures
+* [ARROW-4931](https://issues.apache.org/jira/browse/ARROW-4931) - [C++] CMake 
fails on gRPC ExternalProject
+* [ARROW-4942](https://issues.apache.org/jira/browse/ARROW-4942) - [Ruby] 
Remove needless omits
+* [ARROW-4948](https://issues.apache.org/jira/browse/ARROW-4948) - [JS] 
Nightly test failing with "Cannot assign to read only property"
+* [ARROW-4950](https://issues.apache.org/jira/browse/ARROW-4950) - [C++] 
Thirdparty CMake error get\_target\_property() called with non-existent target 
LZ4::lz4
+* [ARROW-4952](https://issues.apache.org/jira/browse/ARROW-4952) - [C++] 
Equals / ApproxEquals behaviour undefined on FP NaNs
+* [ARROW-4954](https://issues.apache.org/jira/browse/ARROW-4954) - [Python] 
test failure with Flight enabled
+* [ARROW-4958](https://issues.apache.org/jira/browse/ARROW-4958) - [C++] 
Purely static linking broken
+* [ARROW-4961](https://issues.apache.org/jira/browse/ARROW-4961) - 
[C++][Python] Add GTest\_SOURCE=BUNDLED to relevant build docs that use 
conda-forge toolchain
+* [ARROW-4962](https://issues.apache.org/jira/browse/ARROW-4962) - [C++] 
Warning level to CHECKIN can't compile on modern GCC
+* [ARROW-4976](https://issues.apache.org/jira/browse/ARROW-4976) - [JS] 
RecordBatchReader should reset its Node/DOM streams
+* [ARROW-4982](https://issues.apache.org/jira/browse/ARROW-4982) - [GLib][CI] 
Run tests on AppVeyor
+* [ARROW-4984](https://issues.apache.org/jira/browse/ARROW-4984) - 
[Flight][C++] Flight server segfaults when port is in use
+* [ARROW-4986](https://issues.apache.org/jira/browse/ARROW-4986) - [CI] Travis 
fails to install llvm@7 
+* [ARROW-4989](https://issues.apache.org/jira/browse/ARROW-4989) - [C++] 
Builds fails to find Ubuntu-packaged re2 library
+* [ARROW-4991](https://issues.apache.org/jira/browse/ARROW-4991) - [CI] Bump 
travis node version to 11.12
+* [ARROW-4997](https://issues.apache.org/jira/browse/ARROW-4997) - [C#] 
ArrowStreamReader doesn't consume whole stream and doesn't implement sync read
+* [ARROW-5009](https://issues.apache.org/jira/browse/ARROW-5009) - [C++] 
Cleanup using to std::\* in files
+* [ARROW-5010](https://issues.apache.org/jira/browse/ARROW-5010) - [Release] 
Fix release script with llvm-7
+* [ARROW-5012](https://issues.apache.org/jira/browse/ARROW-5012) - [C++] 
"testing" headers not installed
+* [ARROW-5023](https://issues.apache.org/jira/browse/ARROW-5023) - [Release] 
Default value syntax in shell is wrong
+* [ARROW-5024](https://issues.apache.org/jira/browse/ARROW-5024) - [Release] 
crossbow.py --arrow-version causes missing variable error
+* [ARROW-5025](https://issues.apache.org/jira/browse/ARROW-5025) - 
[Python][Packaging] wheel for Windows are broken
+* [ARROW-5026](https://issues.apache.org/jira/browse/ARROW-5026) - 
[Python][Packaging] conda package on non Windows is broken
+* [ARROW-5029](https://issues.apache.org/jira/browse/ARROW-5029) - [C++] 
Compilation warnings in release mode
+* [ARROW-5031](https://issues.apache.org/jira/browse/ARROW-5031) - [Dev] 
Release verification script does not run CUDA tests in Python
+* [ARROW-5042](https://issues.apache.org/jira/browse/ARROW-5042) - [Release] 
Wrong ARROW\_DEPENDENCY\_SOURCE in verification script
+* [ARROW-5043](https://issues.apache.org/jira/browse/ARROW-5043) - 
[Release][Ruby] red-arrow dependency can't be resolve in verification script
+* [ARROW-5044](https://issues.apache.org/jira/browse/ARROW-5044) - 
[Release][Rust] Format error in verification script
+* [ARROW-5046](https://issues.apache.org/jira/browse/ARROW-5046) - 
[Release][C++] Plasma test is fragile in verification script
+* [ARROW-5047](https://issues.apache.org/jira/browse/ARROW-5047) - [Release] 
Always set up parquet-testing in verification script
+* [ARROW-5048](https://issues.apache.org/jira/browse/ARROW-5048) - 
[Release][Rust] arrow-testing is missing in verification script
+* [ARROW-5050](https://issues.apache.org/jira/browse/ARROW-5050) - [C++] 
cares\_ep should build before grpc\_ep
+
+
+[1]: https://www.apache.org/dyn/closer.cgi/arrow/arrow-0.13.0/
+[2]: https://bintray.com/apache/arrow/centos/0.13.0/
+[3]: https://bintray.com/apache/arrow/debian/0.13.0/
+[4]: https://bintray.com/apache/arrow/python/0.13.0/
+[5]: https://bintray.com/apache/arrow/ubuntu/0.13.0/
+[6]: https://github.com/apache/arrow/releases/tag/apache-arrow-0.13.0
diff --git a/site/_release/index.md b/site/_release/index.md
index 6a6b5df..61181ef 100644
--- a/site/_release/index.md
+++ b/site/_release/index.md
@@ -26,34 +26,36 @@ limitations under the License.
 
 Navigate to the release page for downloads and the changelog.
 
-* [0.12.0 (20 January 2019)][15]
-* [0.11.1 (19 October 2018)][14]
-* [0.11.0 (8 October 2018)][13]
-* [0.10.0 (6 August 2018)][12]
-* [0.9.0 (21 March 2018)][11]
-* [0.8.0 (18 December 2017)][10]
-* [0.7.1 (1 October 2017)][9]
-* [0.7.0 (17 September 2017)][8]
-* [0.6.0 (14 August 2017)][7]
-* [0.5.0 (23 July 2017)][6]
-* [0.4.1 (9 June 2017)][5]
-* [0.4.0 (22 May 2017)][4]
-* [0.3.0 (5 May 2017)][1]
-* [0.2.0 (18 February 2017)][2]
-* [0.1.0 (10 October 2016)][3]
+* [0.13.0 (1 April 2019)][1]
+* [0.12.0 (20 January 2019)][2]
+* [0.11.1 (19 October 2018)][3]
+* [0.11.0 (8 October 2018)][4]
+* [0.10.0 (6 August 2018)][5]
+* [0.9.0 (21 March 2018)][6]
+* [0.8.0 (18 December 2017)][7]
+* [0.7.1 (1 October 2017)][8]
+* [0.7.0 (17 September 2017)][9]
+* [0.6.0 (14 August 2017)][10]
+* [0.5.0 (23 July 2017)][11]
+* [0.4.1 (9 June 2017)][12]
+* [0.4.0 (22 May 2017)][13]
+* [0.3.0 (5 May 2017)][14]
+* [0.2.0 (18 February 2017)][15]
+* [0.1.0 (10 October 2016)][16]
 
-[1]: {{ site.baseurl }}/release/0.3.0.html
-[2]: {{ site.baseurl }}/release/0.2.0.html
-[3]: {{ site.baseurl }}/release/0.1.0.html
-[4]: {{ site.baseurl }}/release/0.4.0.html
-[5]: {{ site.baseurl }}/release/0.4.1.html
-[6]: {{ site.baseurl }}/release/0.5.0.html
-[7]: {{ site.baseurl }}/release/0.6.0.html
-[8]: {{ site.baseurl }}/release/0.7.0.html
-[9]: {{ site.baseurl }}/release/0.7.1.html
-[10]: {{ site.baseurl }}/release/0.8.0.html
-[11]: {{ site.baseurl }}/release/0.9.0.html
-[12]: {{ site.baseurl }}/release/0.10.0.html
-[13]: {{ site.baseurl }}/release/0.11.0.html
-[14]: {{ site.baseurl }}/release/0.11.1.html
-[15]: {{ site.baseurl }}/release/0.12.0.html
+[1]: {{ site.baseurl }}/release/0.13.0.html
+[2]: {{ site.baseurl }}/release/0.12.0.html
+[3]: {{ site.baseurl }}/release/0.11.1.html
+[4]: {{ site.baseurl }}/release/0.11.0.html
+[5]: {{ site.baseurl }}/release/0.10.0.html
+[6]: {{ site.baseurl }}/release/0.9.0.html
+[7]: {{ site.baseurl }}/release/0.8.0.html
+[8]: {{ site.baseurl }}/release/0.7.1.html
+[9]: {{ site.baseurl }}/release/0.7.0.html
+[10]: {{ site.baseurl }}/release/0.6.0.html
+[11]: {{ site.baseurl }}/release/0.5.0.html
+[12]: {{ site.baseurl }}/release/0.4.1.html
+[13]: {{ site.baseurl }}/release/0.4.0.html
+[14]: {{ site.baseurl }}/release/0.3.0.html
+[15]: {{ site.baseurl }}/release/0.2.0.html
+[16]: {{ site.baseurl }}/release/0.1.0.html

Reply via email to