This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-site.git
The following commit(s) were added to refs/heads/main by this push:
new 9cb655a1cf9 [Website] Add ADBC 0.6.0 release post (#396)
9cb655a1cf9 is described below
commit 9cb655a1cf9876a5e4eee2f024cde0bd990aea31
Author: David Li <[email protected]>
AuthorDate: Mon Aug 28 10:05:33 2023 -0400
[Website] Add ADBC 0.6.0 release post (#396)
Co-authored-by: Sutou Kouhei <[email protected]>
---
_posts/2023-08-28-adbc-0.6.0-release.md | 94 +++++++++++++++++++++++++++++++++
1 file changed, 94 insertions(+)
diff --git a/_posts/2023-08-28-adbc-0.6.0-release.md
b/_posts/2023-08-28-adbc-0.6.0-release.md
new file mode 100644
index 00000000000..28444af2e2c
--- /dev/null
+++ b/_posts/2023-08-28-adbc-0.6.0-release.md
@@ -0,0 +1,94 @@
+---
+layout: post
+title: "Apache Arrow ADBC 0.6.0 (Libraries) Release"
+date: "2023-08-28 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.6.0 release of
+the Apache Arrow ADBC libraries. This covers includes [**46
+resolved issues**][1] from [**9 distinct contributors**][2].
+
+This is a release of the **libraries**, which are at version 0.6.0.
+The **API specification** is versioned separately and is at version
+1.0.0. (The API version will be updated to 1.1.0 in the coming
+release.)
+
+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].
+
+## Release Highlights
+
+The PostgreSQL and SQLite drivers have better type support. The
+PostgreSQL driver will also chunk its output now instead of always
+delivering a single record batch. The Snowflake driver no longer
+requires a URI to connect. The Python driver manager and Flight SQL
+driver deliver more concise error messages, with less fluff around the
+actual error message delivered by the database.
+
+A critical bugfix for all Go-based drivers (Flight SQL and Snowflake)
+is included. This fixes panics caused by uninitialized memory in C
+Data Interface structures appearing to the garbage collector as
+(invalid) pointers to Go memory. For details, see [issue
+729][gh-729].
+
+While C# is not yet included in this release, the library is now more
+compatible with .NET 4.
+
+## Contributors
+
+```
+$ git shortlog --perl-regexp --author='^((?!dependabot\[bot\]).*)$' -sn
apache-arrow-adbc-0.5.1..apache-arrow-adbc-0.6.0
+ 30 David Li
+ 15 William Ayd
+ 9 Dewey Dunnington
+ 5 Matt Topol
+ 5 Solomon Choe
+ 2 davidhcoe
+ 1 Alexandre Crayssac
+ 1 Curt Hagenlocher
+ 1 Diego Fernández Giraldo
+```
+
+## Roadmap
+
+The 1.1.0 revision of the ADBC API was accepted, but is not included
+in this release. It will be released as ADBC 0.7.0.
+
+There are currently no plans for a second API revision. As work
+progresses on asynchronous and device-aware APIs in the Arrow
+ecosystem, ADBC will eventually be updated to support any new APIs.
+
+## Getting Involved
+
+We welcome questions and contributions from all interested. Issues
+can be filed on [GitHub][4], and questions can be directed to GitHub
+or the [Arrow mailing lists][5].
+
+[1]: https://github.com/apache/arrow-adbc/milestone/10
+[2]: #contributors
+[3]:
https://github.com/apache/arrow-adbc/blob/apache-arrow-adbc-0.6.0/CHANGELOG.md
+[4]: https://github.com/apache/arrow-adbc/issues
+[5]: {% link community.md %}
+
+[gh-729]: https://github.com/apache/arrow-adbc/issues/729