rok commented on code in PR #790:
URL: https://github.com/apache/arrow-site/pull/790#discussion_r3560511094


##########
_posts/2026-07-10-25.0.0-release.md:
##########
@@ -0,0 +1,132 @@
+---
+layout: post
+title: "Apache Arrow 25.0.0 Release"
+date: "2026-07-10 00:00:00"
+author: pmc
+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 25.0.0 release. This release
+covers over 3 months of development work and includes [**222 resolved
+issues**][1] on [**268 distinct commits**][2] from [**66 distinct
+contributors**][2]. See the [Install Page](https://arrow.apache.org/install/) 
to
+learn how to get the libraries for your platform.
+
+The release notes below are not exhaustive and only expose selected highlights
+of the release. Many other bugfixes and improvements have been made: we refer
+you to the [complete changelog][3].
+
+## Community
+
+
+## Format Notes
+
+
+## Arrow Flight RPC Notes
+
+
+## C++ Notes
+
+
+### Compute
+

Review Comment:
   ```suggestion
   
   Sorting, select-k and ranking APIs can now specify null placement 
independently for each `SortKey`. The older global null-placement options are 
deprecated [GH-38558](https://github.com/apache/arrow/issues/38558).
   
   A new `hypot` compute function calculates Euclidean norms without the 
avoidable overflow of a naive `sqrt(x*x + y*y)` implementation 
[GH-50197](https://github.com/apache/arrow/issues/50197). Comparison kernels 
now support BinaryView and StringView inputs 
[GH-46856](https://github.com/apache/arrow/issues/46856).
   
   Several correctness issues were also fixed. Ranking now treats NaNs and 
nulls as distinct values when resolving ties 
[GH-45193](https://github.com/apache/arrow/issues/45193), `count` now accounts 
for logical nulls in run-end encoded arrays 
[GH-49888](https://github.com/apache/arrow/issues/49888), and sorting temporal 
columns in a table no longer crashes 
[GH-47252](https://github.com/apache/arrow/issues/47252).
    
   ```



##########
_posts/2026-07-10-25.0.0-release.md:
##########
@@ -0,0 +1,132 @@
+---
+layout: post
+title: "Apache Arrow 25.0.0 Release"
+date: "2026-07-10 00:00:00"
+author: pmc
+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 25.0.0 release. This release
+covers over 3 months of development work and includes [**222 resolved
+issues**][1] on [**268 distinct commits**][2] from [**66 distinct
+contributors**][2]. See the [Install Page](https://arrow.apache.org/install/) 
to
+learn how to get the libraries for your platform.
+
+The release notes below are not exhaustive and only expose selected highlights
+of the release. Many other bugfixes and improvements have been made: we refer
+you to the [complete changelog][3].
+
+## Community
+
+
+## Format Notes
+
+
+## Arrow Flight RPC Notes
+
+
+## C++ Notes
+
+
+### Compute
+
+
+### Extension Types
+
+

Review Comment:
   ```suggestion
   `Table` values can now be converted to an Arrow `Tensor` 
[GH-40062](https://github.com/apache/arrow/issues/40062).
   
   Deserialization of canonical tensor extension metadata is now stricter. In 
particular, fixed-shape tensor metadata validates shapes, permutations, 
dimension names and consistency with the storage type; related variable-shape 
tensor metadata is validated more thoroughly as well 
[GH-49716](https://github.com/apache/arrow/issues/49716).
   ```



##########
_posts/2026-07-10-25.0.0-release.md:
##########
@@ -0,0 +1,132 @@
+---
+layout: post
+title: "Apache Arrow 25.0.0 Release"
+date: "2026-07-10 00:00:00"
+author: pmc
+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 25.0.0 release. This release
+covers over 3 months of development work and includes [**222 resolved
+issues**][1] on [**268 distinct commits**][2] from [**66 distinct
+contributors**][2]. See the [Install Page](https://arrow.apache.org/install/) 
to
+learn how to get the libraries for your platform.
+
+The release notes below are not exhaustive and only expose selected highlights
+of the release. Many other bugfixes and improvements have been made: we refer
+you to the [complete changelog][3].
+
+## Community
+
+
+## Format Notes
+
+
+## Arrow Flight RPC Notes
+
+
+## C++ Notes
+
+
+### Compute
+
+
+### Extension Types
+
+
+### Parquet
+
+
+### Miscellaneous C++ changes
+

Review Comment:
   ```suggestion
   
   IPC reading was hardened substantially. Readers now reject short buffers and 
inconsistent message sizes, and sparse tensor metadata receives stricter shape, 
buffer-size, count and overflow validation 
([GH-49896](https://github.com/apache/arrow/issues/49896), 
[GH-50240](https://github.com/apache/arrow/issues/50240), 
[GH-50054](https://github.com/apache/arrow/issues/50054), 
[GH-50077](https://github.com/apache/arrow/issues/50077), 
[GH-50161](https://github.com/apache/arrow/issues/50161), 
[GH-50304](https://github.com/apache/arrow/issues/50304)).
   
   Floating-point equality can now use a configurable ULP distance through 
`EqualOptions` [GH-48408](https://github.com/apache/arrow/issues/48408).
   
   The filesystem factory interface can accept key-value options separately 
from the URI. S3 factory options can therefore carry credentials and other 
user-specific settings without embedding them in a reusable URI 
[GH-46369](https://github.com/apache/arrow/issues/46369).
   
   On AArch64, runtime SIMD dispatch now supports SVE for bit-unpacking 
operations [GH-47769](https://github.com/apache/arrow/issues/47769).
   ```



##########
_posts/2026-07-10-25.0.0-release.md:
##########
@@ -0,0 +1,132 @@
+---
+layout: post
+title: "Apache Arrow 25.0.0 Release"
+date: "2026-07-10 00:00:00"
+author: pmc
+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 25.0.0 release. This release
+covers over 3 months of development work and includes [**222 resolved
+issues**][1] on [**268 distinct commits**][2] from [**66 distinct
+contributors**][2]. See the [Install Page](https://arrow.apache.org/install/) 
to
+learn how to get the libraries for your platform.
+
+The release notes below are not exhaustive and only expose selected highlights
+of the release. Many other bugfixes and improvements have been made: we refer
+you to the [complete changelog][3].
+
+## Community
+
+
+## Format Notes
+
+
+## Arrow Flight RPC Notes
+
+
+## C++ Notes
+
+
+### Compute
+
+
+### Extension Types
+
+
+### Parquet
+
+

Review Comment:
   ```suggestion
   Parquet C++ can now write ListView and LargeListView arrays. When the Arrow 
schema is stored in the file, readers can restore the original view type; 
otherwise they read back as List or LargeList 
[GH-38849](https://github.com/apache/arrow/issues/38849).
   
   Split-block Bloom filters can now be folded before serialization, allowing 
the writer to start with a conservative size and automatically reduce on-disk 
size to meet the target false-positive probability
   [GH-50007](https://github.com/apache/arrow/issues/50007). Bloom-filter 
probes were also made branchless and SIMD-accelerated, including a 
runtime-dispatched AVX2 implementation 
[GH-50026](https://github.com/apache/arrow/issues/50026).
   
   The bundled Thrift compiler was upgraded from 0.21.0 to 0.23.0 
[GH-50267](https://github.com/apache/arrow/issues/50267) and `parquet.thrift` 
was  synced with Parquet format 2.13.0 
[GH-50265](https://github.com/apache/arrow/issues/50265).
   
   Parquet decoding was hardened against malformed inputs and excessive 
temporary allocations in DELTA_BINARY_PACKED, DELTA_LENGTH_BYTE_ARRAY, 
DELTA_BYTE_ARRAY and BYTE_STREAM_SPLIT data 
([GH-49805](https://github.com/apache/arrow/issues/49805), 
[GH-49837](https://github.com/apache/arrow/issues/49837), 
[GH-49959](https://github.com/apache/arrow/issues/49959)). Timestamp coercion 
now detects integer overflow instead of silently writing corrupt values 
[GH-47657](https://github.com/apache/arrow/issues/47657).
   
   Statistics handling received several correctness fixes. Min/max statistics 
are ignored when an unknown column order makes them unsafe to interpret 
[GH-50156] (https://github.com/apache/arrow/issues/50156), and all-infinity 
floating-point columns now produce exact infinity statistics rather than finite 
limits [GH-50182](https://github.com/apache/arrow/issues/50182).
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to