forked from apache/datafusion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-1118: [Site] Website updates for 0.4.1
This has been deployed preliminarily for the release. I have not yet updated the subproject documentations yet; help would be appreciated Author: Wes McKinney <[email protected]> Closes apache#755 from wesm/ARROW-1118 and squashes the following commits: 0bdac0e [Wes McKinney] Website updates for 0.4.1
- Loading branch information
Showing
6 changed files
with
327 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
layout: post | ||
title: "Apache Arrow 0.4.1 Release" | ||
date: "2017-06-14 10:00:00 -0400" | ||
author: wesm | ||
categories: [release] | ||
--- | ||
<!-- | ||
{% 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 %} | ||
--> | ||
|
||
The Apache Arrow team is pleased to announce the 0.4.1 release of the | ||
project. This is a bug fix release that addresses a regression with Decimal | ||
types in the Java implementation introduced in 0.4.0 (see | ||
[ARROW-1091][10]). There were a total of [31 resolved JIRAs][1]. | ||
|
||
See the [Install Page][2] to learn how to get the libraries for your platform. | ||
|
||
### Python Wheel Installers for Windows | ||
|
||
Max Risuhin contributed fixes to enable binary wheel installers to be generated | ||
for Python 3.5 and 3.6. Thus, 0.4.1 is the first Arrow release for which | ||
PyArrow including bundled [Apache Parquet][8] support that can be installed | ||
with either conda or pip across the 3 major platforms: Linux, macOS, and | ||
Windows. Use one of: | ||
|
||
``` | ||
pip install pyarrow | ||
conda install pyarrow -c conda-forge | ||
``` | ||
|
||
### Turbodbc 2.0.0 with Apache Arrow Support | ||
|
||
[Turbodbc][12], a fast C++ ODBC interface with Python bindings, released | ||
version 2.0.0 including reading SQL result sets as Arrow record batches. The | ||
team used the PyArrow C++ API introduced in version 0.4.0 to construct | ||
`pyarrow.Table` objects inside the `turbodbc` library. Learn more in their | ||
[documentation][13] and install with one of: | ||
|
||
``` | ||
pip install turbodbc | ||
conda install turbodbc -c conda-forge | ||
``` | ||
|
||
[1]: https://issues.apache.org/jira/issues/?jql=project%20%3D%20ARROW%20AND%20status%20in%20(Resolved%2C%20Closed)%20AND%20fixVersion%20%3D%200.4.1 | ||
[2]: http://arrow.apache.org/install | ||
[8]: http://parquet.apache.org | ||
[9]: http://arrow.apache.org/docs/python/development.html | ||
[10]: https://issues.apache.org/jira/browse/ARROW-1091 | ||
[11]: https://github.com/maxris | ||
[12]: http://turbodbc.readthedocs.io/ | ||
[13]: http://turbodbc.readthedocs.io/en/latest/pages/advanced_usage.html#apache-arrow-support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
--- | ||
layout: default | ||
title: 0.4.1 Release | ||
permalink: /release/0.4.1.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.4.1 (9 June 2017) | ||
|
||
This is primarily a bug fix release, but also includes some packaging and | ||
documentation improvements. | ||
|
||
Read more in the [release blog post][8]. | ||
|
||
## Download | ||
|
||
* [**Source Artifacts**][6] | ||
* [Git tag 46315431][2] | ||
|
||
# Changelog | ||
|
||
## New Features and Improvements | ||
|
||
* [ARROW-1020](https://issues.apache.org/jira/browse/ARROW-1020) - [Format] Add additional language to Schema.fbs to clarify naive vs. localized Timestamp values | ||
* [ARROW-1034](https://issues.apache.org/jira/browse/ARROW-1034) - [Python] Enable creation of binary wheels on Windows / MSVC | ||
* [ARROW-1049](https://issues.apache.org/jira/browse/ARROW-1049) - [java] vector template cleanup | ||
* [ARROW-1060](https://issues.apache.org/jira/browse/ARROW-1060) - [Python] Add unit test for ARROW-1053 | ||
* [ARROW-1063](https://issues.apache.org/jira/browse/ARROW-1063) - [Website] Blog post and website updates for 0.4.0 release | ||
* [ARROW-1068](https://issues.apache.org/jira/browse/ARROW-1068) - [Python] Create external repo with appveyor.yml configured for building Python wheel installers | ||
* [ARROW-1069](https://issues.apache.org/jira/browse/ARROW-1069) - Add instructions for publishing maven artifacts | ||
* [ARROW-1078](https://issues.apache.org/jira/browse/ARROW-1078) - [Python] Account for PARQUET-967 | ||
* [ARROW-1080](https://issues.apache.org/jira/browse/ARROW-1080) - C++: Add tutorial about converting to/from row-wise representation | ||
* [ARROW-1082](https://issues.apache.org/jira/browse/ARROW-1082) - [GLib] Add CI on macOS | ||
* [ARROW-1084](https://issues.apache.org/jira/browse/ARROW-1084) - Implementations of BufferAllocator should handle Netty's OutOfDirectMemoryError | ||
* [ARROW-897](https://issues.apache.org/jira/browse/ARROW-897) - [GLib] Build arrow-glib as a separate build in the Travis CI build matrix | ||
* [ARROW-986](https://issues.apache.org/jira/browse/ARROW-986) - [Format] Update IPC.md to account for dictionary batches | ||
* [ARROW-990](https://issues.apache.org/jira/browse/ARROW-990) - [JS] Add tslint support for linting TypeScript | ||
|
||
## Bug Fixes | ||
|
||
* [ARROW-1039](https://issues.apache.org/jira/browse/ARROW-1039) - Python: pyarrow.Filesystem.read_parquet causing error if nthreads>1 | ||
* [ARROW-1050](https://issues.apache.org/jira/browse/ARROW-1050) - [C++] Export arrow::ValidateArray | ||
* [ARROW-1051](https://issues.apache.org/jira/browse/ARROW-1051) - [Python] If pyarrow.parquet fails to import due to a shared library ABI conflict, the test_parquet.py tests silently do not run | ||
* [ARROW-1056](https://issues.apache.org/jira/browse/ARROW-1056) - [Python] Parquet+HDFS test failure due to writing pandas index | ||
* [ARROW-1057](https://issues.apache.org/jira/browse/ARROW-1057) - Fix cmake warning and msvc debug asserts | ||
* [ARROW-1062](https://issues.apache.org/jira/browse/ARROW-1062) - [GLib] Examples use old API | ||
* [ARROW-1066](https://issues.apache.org/jira/browse/ARROW-1066) - remove warning on feather for pandas >= 0.20.1 | ||
* [ARROW-1070](https://issues.apache.org/jira/browse/ARROW-1070) - [C++] Feather files for date/time types should be written with the physical types | ||
* [ARROW-1075](https://issues.apache.org/jira/browse/ARROW-1075) - [GLib] Build error on macOS | ||
* [ARROW-1085](https://issues.apache.org/jira/browse/ARROW-1085) - [java] Follow up on template cleanup. Missing method for IntervalYear | ||
* [ARROW-1086](https://issues.apache.org/jira/browse/ARROW-1086) - [Python] pyarrow 0.4.0 on pypi is missing pxd files | ||
* [ARROW-1088](https://issues.apache.org/jira/browse/ARROW-1088) - [Python] test_unicode_filename test fails when unicode filenames aren't supported by system | ||
* [ARROW-1090](https://issues.apache.org/jira/browse/ARROW-1090) - [Python] build_ext usability | ||
* [ARROW-1091](https://issues.apache.org/jira/browse/ARROW-1091) - Decimal scale and precision are flipped | ||
* [ARROW-1092](https://issues.apache.org/jira/browse/ARROW-1092) - More Decimal and scale flipped follow-up | ||
* [ARROW-1094](https://issues.apache.org/jira/browse/ARROW-1094) - [C++] Incomplete buffer reads in arrow::io::ReadableFile should exactly truncate returned buffer | ||
* [ARROW-424](https://issues.apache.org/jira/browse/ARROW-424) - [C++] Threadsafety in arrow/io/hdfs.h | ||
|
||
## Contributors | ||
|
||
```shell | ||
$ git shortlog -sn apache-arrow-0.4.0..apache-arrow-0.4.1 | ||
16 Wes McKinney | ||
5 Julien Le Dem | ||
4 Kouhei Sutou | ||
2 Jacob Scott | ||
1 Brian Hulette | ||
1 Jeff Knupp | ||
1 Jeff Reback | ||
1 Max Risuhin | ||
1 Phillip Cloud | ||
1 Tony Kelman | ||
1 Uwe L. Korn | ||
1 adeneche | ||
1 kimanjun | ||
1 rip.nsk | ||
``` | ||
|
||
[2]: https://github.com/apache/arrow/releases/tag/apache-arrow-0.4.1 | ||
[6]: https://www.apache.org/dyn/closer.cgi/arrow/arrow-0.4.1/ | ||
[8]: http://arrow.apache.org/blog/2017/06/14/0.4.1-release/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,10 @@ <h1>Apache Arrow</h1> | |
<p class="lead">Powering Columnar In-Memory Analytics</p> | ||
<p> | ||
<a class="btn btn-lg btn-success" href="mailto:[email protected]" role="button">Join Mailing List</a> | ||
<a class="btn btn-lg btn-primary" href="{{ site.baseurl }}/install/" role="button">Install (0.4.0 Release - May 22, 2017)</a> | ||
<a class="btn btn-lg btn-primary" href="{{ site.baseurl }}/install/" role="button">Install (0.4.1 Release - June 9, 2017)</a> | ||
</p> | ||
</div> | ||
<h4><strong>Latest News</strong>: <a href="{{ site.baseurl }}/blog/">Apache Arrow 0.4.0 release</a></h4> | ||
<h4><strong>Latest News</strong>: <a href="{{ site.baseurl }}/blog/">Apache Arrow 0.4.1 release</a></h4> | ||
<div class="row"> | ||
<div class="col-lg-4"> | ||
<h2>Fast</h2> | ||
|
Oops, something went wrong.