lidavidm commented on code in PR #763:
URL: https://github.com/apache/arrow-site/pull/763#discussion_r2850810732
##########
_posts/2026-02-24-nanoarrow-0.8.0-release.md:
##########
@@ -0,0 +1,105 @@
+---
+layout: post
+title: "Apache Arrow nanoarrow 0.8.0 Release"
+date: "2026-02-24 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 0.8.0 release of
+Apache Arrow nanoarrow. This release consists of 28 resolved GitHub issues from
+10 contributors.
+
+## Release Highlights
+
+- Support for building String View arrays by buffer
+- LZ4 decompression support in IPC reader
+- Support for Conan
+- Support for Hombrew
+
+See the
+[Changelog](https://github.com/apache/arrow-nanoarrow/blob/apache-arrow-nanoarrow-0.8.0/CHANGELOG.md)
+for a detailed list of contributions to this release.
+
+## Features
+
+### String Views By Buffer
+
+The C library in general supports two methods for producing or consuming
arrays: most
+users use the builder pattern (e.g., `ArrowArrayAppendString()`); however, the
"build
+by buffer" pattern can be effective when using nanoarrow with a higher level
runtime
+like C++, Rust, Python, or R, all of which have mechanisms to build buffers
already.
+The C library supports this with `ArrowArraySetBuffer()`; however, there was
no way
+to reserve and/or set variadic buffers for string view arrays. In nanoarrow
0.8.0,
+the array builder API fully supports both mechanisms for building string view
arrays.
+
+### LZ4 Decompression Support
+
+The Arrow IPC reader included in the nanoarrow C library supports most features
+of the Arrow IPC format; however, decompression support for the LZ4 codec was
missing
+which made the library and its bindings unusable for some common use cases. In
0.8.0,
+decompression for the LZ4 codec was added to the C library.
+
+Users of the C library will need to configure CMake with
`-DNANOARROW_IPC_WITH_LZ4=ON`
+and `-DNANOARROW_IPC=ON` to use CMake-resolved LZ4; however, client libraries
+can also use an existing ZSTD or LZ4 implementation using callbacks just like
in 0.7.0.
+
+### nanoarrow on Conan
+
+The nanoarrow C library can now be installed using the
+[Conan](https://formulae.brew.sh/formula/nanoarrow) C/C++ Package Manager!
Review Comment:
This links to homebrew, was it meant to link to
https://conan.io/center/recipes/nanoarrow?
--
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]