From 0599650e3185bd21489e1783823a50f5ed0ddee3 Mon Sep 17 00:00:00 2001
From: David Li
Date: Tue, 7 Apr 2026 10:28:17 +0900
Subject: [PATCH 1/5] [Website] Add ADBC 23 release
---
_posts/2026-04-07-adbc-23-release.md | 142 +++++++++++++++++++++++++++
1 file changed, 142 insertions(+)
create mode 100644 _posts/2026-04-07-adbc-23-release.md
diff --git a/_posts/2026-04-07-adbc-23-release.md b/_posts/2026-04-07-adbc-23-release.md
new file mode 100644
index 00000000000..5ca1abb14d7
--- /dev/null
+++ b/_posts/2026-04-07-adbc-23-release.md
@@ -0,0 +1,142 @@
+---
+layout: post
+title: "Apache Arrow ADBC 23 (Libraries) Release"
+date: "2026-04-07 00:00:00"
+author: pmc
+categories: [release]
+---
+
+
+The Apache Arrow team is pleased to announce the version 23 release of
+the Apache Arrow ADBC libraries. This release includes [**41
+resolved issues**][1] from [**20 distinct contributors**][2].
+
+This is a release of the **libraries**, which are at version 23. The
+[**API specification**][specification] is versioned separately and is at
+version 1.1.0.
+
+The subcomponents are versioned independently:
+
+- C/C++/GLib/Go/Python/Ruby: 1.11.0
+- C#: 0.23.0
+- Java: 0.23.0
+- R: 0.23.0
+- Rust: 0.23.0
+
+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
+
+A breaking change has been made to the Rust APIs (pre-1.0): returned
+`RecordBatchReader`s are now type-erased and boxed for caller flexibility;
+this also fixes the returned reader lifetime accidentally being tied to input
+argument lifetimes ([#3904](https://github.com/apache/arrow-adbc/pull/3904)).
+
+A driver manager for Node.js is now available from NPM
+([#4046](https://github.com/apache/arrow-adbc/pull/4046),
+[#4091](https://github.com/apache/arrow-adbc/pull/4091),
+[#4116](https://github.com/apache/arrow-adbc/pull/4116),
+[#4125](https://github.com/apache/arrow-adbc/pull/4125), etc.).
+
+The C++ and Rust driver managers now support [connection
+profiles](https://arrow.apache.org/adbc/current/format/connection_profiles.html)
+([#3876](https://github.com/apache/arrow-adbc/pull/3876),
+[#3973](https://github.com/apache/arrow-adbc/pull/3973),
+[#4080](https://github.com/apache/arrow-adbc/pull/4080),
+[#4083](https://github.com/apache/arrow-adbc/pull/4083) etc.).
+
+The Go APIs have added interfaces that always take a `context.Context` for
+consistency, and to make sure context like telemetry traces propagate properly
+([#4009](https://github.com/apache/arrow-adbc/pull/4009)).
+
+The Python driver manager supports profiles as well
+([#4078](https://github.com/apache/arrow-adbc/pull/4078),
+[#4118](https://github.com/apache/arrow-adbc/pull/4118)). Also, non-string
+option values are directly accepted for convenience
+([#4088](https://github.com/apache/arrow-adbc/pull/4088)). `adbc_get_statistics`
+has been added ([#4129](https://github.com/apache/arrow-adbc/pull/4129)).
+
+The JNI bindings (allowing use of C/C++/Go/Rust/etc. drivers from Java) now
+support more functions (GetObjects, GetInfo, ExecuteSchema, etc.)
+([#3966](https://github.com/apache/arrow-adbc/pull/3966),
+[#3972](https://github.com/apache/arrow-adbc/pull/3972),
+[#4056](https://github.com/apache/arrow-adbc/pull/4056)).
+
+Packages are now being uploaded to
+[Homebrew](https://formulae.brew.sh/formula/apache-arrow-adbc)
+([#4131](https://github.com/apache/arrow-adbc/pull/4131)).
+
+Python wheels now require `manylinux_2_28`, up from `manylinux2010`, following
+PyArrow ([#4146](https://github.com/apache/arrow-adbc/pull/4146)).
+
+The PostgreSQL driver tries to reconcile Arrow NA arrays with PostgreSQL types
+when binding ([#4098](https://github.com/apache/arrow-adbc/pull/4098)). Also,
+a bug in conversion from Arrow decimals to PostgreSQL numerics has been fixed
+([#3787](https://github.com/apache/arrow-adbc/pull/3787)).
+
+The SQLite driver now enables various optional features, like math functions
+([#4147](https://github.com/apache/arrow-adbc/pull/4147)).
+
+## Contributors
+
+```
+$ git shortlog --perl-regexp --author='^((?!dependabot\[bot\]).*)$' -sn apache-arrow-adbc-22..apache-arrow-adbc-23
+ 35 David Li
+ 12 Kent Wu
+ 10 Matt Topol
+ 8 eitsupi
+ 6 Bryce Mecum
+ 5 Bruce Irschick
+ 4 Mandukhai Alimaa
+ 3 Emil Sadek
+ 3 Tornike Gurgenidze
+ 2 Dewey Dunnington
+ 2 Felipe Oliveira Carvalho
+ 2 eric-wang-1990
+ 1 Curt Hagenlocher
+ 1 Ian Cook
+ 1 Madhavendra Rathore
+ 1 Mila Page
+ 1 Pavel Agafonov
+ 1 Roshan Banisetti
+ 1 davidhcoe
+ 1 oglego
+```
+
+## Roadmap
+
+We are working on the next revision of the API standard, focusing on missing
+features (primarily metadata/catalog data). We welcome anyone interested in
+contributing.
+
+## 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/27
+[2]: #contributors
+[3]: https://github.com/apache/arrow-adbc/blob/apache-arrow-adbc-23/CHANGELOG.md
+[4]: https://github.com/apache/arrow-adbc/issues
+[5]: {% link community.md %}
+[specification]: https://arrow.apache.org/adbc/23/format/specification.html
From d2d983c7a9f3fc664b3f8bf3f63af415265d5921 Mon Sep 17 00:00:00 2001
From: David Li
Date: Tue, 7 Apr 2026 11:56:07 +0900
Subject: [PATCH 2/5] Update _posts/2026-04-07-adbc-23-release.md
Co-authored-by: Bryce Mecum
---
_posts/2026-04-07-adbc-23-release.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_posts/2026-04-07-adbc-23-release.md b/_posts/2026-04-07-adbc-23-release.md
index 5ca1abb14d7..12e7a107e7b 100644
--- a/_posts/2026-04-07-adbc-23-release.md
+++ b/_posts/2026-04-07-adbc-23-release.md
@@ -68,7 +68,7 @@ The Go APIs have added interfaces that always take a `context.Context` for
consistency, and to make sure context like telemetry traces propagate properly
([#4009](https://github.com/apache/arrow-adbc/pull/4009)).
-The Python driver manager supports profiles as well
+The Python driver manager supports [connection profiles](https://arrow.apache.org/adbc/current/format/connection_profiles.html) as well
([#4078](https://github.com/apache/arrow-adbc/pull/4078),
[#4118](https://github.com/apache/arrow-adbc/pull/4118)). Also, non-string
option values are directly accepted for convenience
From dd57c5ad9db79ee52b3428c1e12955655fe8bdc2 Mon Sep 17 00:00:00 2001
From: David Li
Date: Tue, 7 Apr 2026 11:56:56 +0900
Subject: [PATCH 3/5] add link
---
_posts/2026-04-07-adbc-23-release.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/_posts/2026-04-07-adbc-23-release.md b/_posts/2026-04-07-adbc-23-release.md
index 12e7a107e7b..48e3301c462 100644
--- a/_posts/2026-04-07-adbc-23-release.md
+++ b/_posts/2026-04-07-adbc-23-release.md
@@ -126,7 +126,8 @@ $ git shortlog --perl-regexp --author='^((?!dependabot\[bot\]).*)$' -sn apache-a
We are working on the next revision of the API standard, focusing on missing
features (primarily metadata/catalog data). We welcome anyone interested in
-contributing.
+contributing. Current progress can be found in the [1.2.0 specification
+milestone](https://github.com/apache/arrow-adbc/milestone/9).
## Getting Involved
From d172f0234bb2d4793cfaf6e8d8a834b5376760f1 Mon Sep 17 00:00:00 2001
From: David Li
Date: Wed, 8 Apr 2026 15:42:31 +0900
Subject: [PATCH 4/5] update
---
_posts/2026-04-07-adbc-23-release.md | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/_posts/2026-04-07-adbc-23-release.md b/_posts/2026-04-07-adbc-23-release.md
index 48e3301c462..b067de3a2ac 100644
--- a/_posts/2026-04-07-adbc-23-release.md
+++ b/_posts/2026-04-07-adbc-23-release.md
@@ -62,14 +62,17 @@ profiles](https://arrow.apache.org/adbc/current/format/connection_profiles.html)
([#3876](https://github.com/apache/arrow-adbc/pull/3876),
[#3973](https://github.com/apache/arrow-adbc/pull/3973),
[#4080](https://github.com/apache/arrow-adbc/pull/4080),
-[#4083](https://github.com/apache/arrow-adbc/pull/4083) etc.).
+[#4083](https://github.com/apache/arrow-adbc/pull/4083) etc.). (Note that
+other bindings that use the C++ driver manager, including GLib/Ruby, Go, Java,
+Python, R, and so on, inherit this support.)
The Go APIs have added interfaces that always take a `context.Context` for
consistency, and to make sure context like telemetry traces propagate properly
([#4009](https://github.com/apache/arrow-adbc/pull/4009)).
-The Python driver manager supports [connection profiles](https://arrow.apache.org/adbc/current/format/connection_profiles.html) as well
-([#4078](https://github.com/apache/arrow-adbc/pull/4078),
+The Python driver manager has added specific parameters for using [connection
+profiles](https://arrow.apache.org/adbc/current/format/connection_profiles.html)
+as well ([#4078](https://github.com/apache/arrow-adbc/pull/4078),
[#4118](https://github.com/apache/arrow-adbc/pull/4118)). Also, non-string
option values are directly accepted for convenience
([#4088](https://github.com/apache/arrow-adbc/pull/4088)). `adbc_get_statistics`
@@ -86,7 +89,9 @@ Packages are now being uploaded to
([#4131](https://github.com/apache/arrow-adbc/pull/4131)).
Python wheels now require `manylinux_2_28`, up from `manylinux2010`, following
-PyArrow ([#4146](https://github.com/apache/arrow-adbc/pull/4146)).
+PyArrow ([#4146](https://github.com/apache/arrow-adbc/pull/4146)). On macOS,
+macOS 12 is now the minimum version due to upgrading to Go 1.25+ (including on
+conda-forge, where the packages previously pinned Go 1.24 to avoid this).
The PostgreSQL driver tries to reconcile Arrow NA arrays with PostgreSQL types
when binding ([#4098](https://github.com/apache/arrow-adbc/pull/4098)). Also,
From 3affe288fa3ca24342b5ec80b7dba7e5884a893b Mon Sep 17 00:00:00 2001
From: David Li
Date: Wed, 8 Apr 2026 15:42:44 +0900
Subject: [PATCH 5/5] rename
---
...026-04-07-adbc-23-release.md => 2026-04-08-adbc-23-release.md} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename _posts/{2026-04-07-adbc-23-release.md => 2026-04-08-adbc-23-release.md} (100%)
diff --git a/_posts/2026-04-07-adbc-23-release.md b/_posts/2026-04-08-adbc-23-release.md
similarity index 100%
rename from _posts/2026-04-07-adbc-23-release.md
rename to _posts/2026-04-08-adbc-23-release.md