You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ia...@apache.org on 2021/08/04 14:18:42 UTC

[arrow-site] branch master updated: Fix and improve links (#138)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6501df3  Fix and improve links (#138)
6501df3 is described below

commit 6501df326927407e14fa86dc3f89a79e6bd59826
Author: Ian Cook <ia...@gmail.com>
AuthorDate: Wed Aug 4 10:18:38 2021 -0400

    Fix and improve links (#138)
---
 _posts/2021-07-20-5.0.0-release.md | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/_posts/2021-07-20-5.0.0-release.md b/_posts/2021-07-20-5.0.0-release.md
index 318d937..6a2234a 100644
--- a/_posts/2021-07-20-5.0.0-release.md
+++ b/_posts/2021-07-20-5.0.0-release.md
@@ -48,8 +48,8 @@ Official IANA Media types (MIME types) have been registered for Apache
 Arrow IPC protocol data, both [stream]({{ site.baseurl }}/docs/format/Columnar.html#ipc-streaming-format)
 and [file]({{ site.baseurl }}/docs/format/Columnar.html#ipc-file-format) variants:
 
-* https://www.iana.org/assignments/media-types/application/vnd.apache.arrow.stream
-* https://www.iana.org/assignments/media-types/application/vnd.apache.arrow.file
+* <https://www.iana.org/assignments/media-types/application/vnd.apache.arrow.stream>
+* <https://www.iana.org/assignments/media-types/application/vnd.apache.arrow.file>
 
 We recommend `.arrow` as the IPC file format file extension and `.arrows` for
 the IPC streaming format file extension.
@@ -63,7 +63,7 @@ In Python, some operations can now be interrupted via Control-C.
 
 ## C++ notes
 
-`MakeArrayFromScalar` now works for fixed-size binary types (ARROW-13321).
+`MakeArrayFromScalar` now works for fixed-size binary types ([ARROW-13321](https://issues.apache.org/jira/browse/ARROW-13321)).
 
 ### Compute layer
 
@@ -98,29 +98,29 @@ were added:
 
 * vector functions: `replace_with_mask`
 
-Duplicates are now allowed in `SetLookupOptions::value_set` (ARROW-12554).
+Duplicates are now allowed in `SetLookupOptions::value_set` ([ARROW-12554](https://issues.apache.org/jira/browse/ARROW-12554)).
 
-Decimal types are now supported by some basic arithmetic functions (ARROW-12074).
+Decimal types are now supported by some basic arithmetic functions ([ARROW-12074](https://issues.apache.org/jira/browse/ARROW-12074)).
 
-The `take` function now supports dense unions (ARROW-13005).
+The `take` function now supports dense unions ([ARROW-13005](https://issues.apache.org/jira/browse/ARROW-13005)).
 
 It is now possible to cast between dictionary types with different index
-types (ARROW-11673).
+types ([ARROW-11673](https://issues.apache.org/jira/browse/ARROW-11673)).
 
-Sorting is now implemented for boolean input (ARROW-12016).
+Sorting is now implemented for boolean input ([ARROW-12016](https://issues.apache.org/jira/browse/ARROW-12016)).
 
 ### CSV
 
-The streaming CSV reader can now take some advantage of multiple threads (ARROW-11889).
+The streaming CSV reader can now take some advantage of multiple threads ([ARROW-11889](https://issues.apache.org/jira/browse/ARROW-11889)).
 
 The CSV reader tries to make its errors more informative by adding the
-row number when it is known, i.e. when parallel reading is disabled (ARROW-12675).
+row number when it is known, i.e. when parallel reading is disabled ([ARROW-12675](https://issues.apache.org/jira/browse/ARROW-12675)).
 
 A new option `ReaderOptions::skip_rows_after_names` allows skipping a number
 of rows _after_ reading the column names (as opposed to
 `ReaderOptions::skip_rows`).
 
-Quoted strings can now be treated as always non-null (ARROW-10115).
+Quoted strings can now be treated as always non-null ([ARROW-10115](https://issues.apache.org/jira/browse/ARROW-10115)).
 
 ### Dataset layer
 
@@ -139,15 +139,15 @@ now be specified for a subset of columns while allowing the rest to still be inf
 
 ### IO and Filesystem layer
 
-The I/O thread pool size can now be adjusted at runtime (ARROW-12760).
+The I/O thread pool size can now be adjusted at runtime ([ARROW-12760](https://issues.apache.org/jira/browse/ARROW-12760)).
 The default size remains 8 threads.
 
 Streams now can have auxiliary metadata, depending on the backend.  This
 has been implemented for the S3 filesystems, where a couple metadata
-keys are supported such as `Content-Type` and `ACL` (ARROW-11161, ARROW-12719).
+keys are supported such as `Content-Type` and `ACL` ([ARROW-11161](https://issues.apache.org/jira/browse/ARROW-11161), [ARROW-12719](https://issues.apache.org/jira/browse/ARROW-12719)).
 
 The HadoopFileSystem implementation now implements the FileSystem abstraction
-more faithfully (ARROW-12790).
+more faithfully ([ARROW-12790](https://issues.apache.org/jira/browse/ARROW-12790)).
 
 ### Parquet
 
@@ -169,7 +169,7 @@ catch up.
 ### Other enhancements 
 
 * [Map](https://github.com/apache/arrow/pull/10106) and [Extension](https://github.com/apache/arrow/pull/10203) Datatypes are now implemented for Arrow Arrays 
-* [Schema package](https://github.com/apache/arrow/10071) and first part of [Encoding package](https://github.com/apache/arrow/10379) added for Golang Parquet Implementation
+* [Schema package](https://github.com/apache/arrow/pull/10071) and first part of [Encoding package](https://github.com/apache/arrow/pull/10379) added for Golang Parquet Implementation
 
 ## Java notes