This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/cargo/rust/arrow-datafusion-5d578ea766
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
omit 20ce1f398 chore(rust): bump the arrow-datafusion group across 1
directory with 4 updates
add 3dc285e6f chore(java): bump com.uber.nullaway:nullaway from 0.13.4 to
0.13.6 (#4403)
add b9b179bb7 chore(go/adbc): bump modernc.org/sqlite from 1.51.0 to
1.52.0 (#4404)
add 52a6d8e4f chore: bump ruby/setup-ruby from 1.310.0 to 1.312.0 (#4406)
add 8db0f7cac chore(javascript): bump js-yaml from 4.1.1 to 4.2.0 (#4409)
add ed58536a5 feat!(ruby): set LoadFlags::DEFAULT on Database.new and
allow override in open (#4402)
add 698f21619 chore: bump markdown-it from 14.1.1 to 14.2.0 (#4410)
add 780bfa11a fix(java/driver/jni): harden JNI exception helpers (#4395)
add 64f555f56 feat(c/driver/postgresql): return JSON as arrow.json
extension (#4415)
add 6efc6b61a fix(java/driver/jni): release ADBC resources on Java
constructor failure (#4396)
add 674c87407 ci: drop Debian GNU/Linux bookworm from packaging (#4420)
add 3035c08da fix(ruby): correct open_statement typo in Connection#ingest
(#4418)
add 0fa2b15eb fix(java/driver/jni): delete JNI local references (#4397)
add f216e7e8e ci: fix .NET install in release verification (#4422)
add 9296949f8 feat(go/adbc/sqldriver): support reflecting more types
(#4416)
add 1863068f0 chore: do not fail PRs that contain emails (#4425)
add 790e84084 feat(rust): make boolean conventions clearer (#4427)
add 266f26550 chore(rust): bump the arrow-datafusion group across 1
directory with 4 updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (20ce1f398)
\
N -- N -- N
refs/heads/dependabot/cargo/rust/arrow-datafusion-5d578ea766 (266f26550)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/dev_pr/body_check.py | 2 +-
.github/workflows/packaging.yml | 3 +-
c/driver/postgresql/postgres_type.h | 15 +-
c/driver/postgresql/postgres_type_test.cc | 30 ++
c/driver/postgresql/postgresql_test.cc | 8 +
c/driver/postgresql/validation/README.md | 4 +-
.../validation/queries/type/select/json.txtcase | 73 +++
.../validation/queries/type/select/jsonb.txtcase | 73 +++
ci/linux-packages/Rakefile | 1 -
ci/linux-packages/apt/debian-bookworm/Dockerfile | 64 ---
dev/release/verify-release-candidate.sh | 29 +-
docs/source/cpp/driver_manager.rst | 2 +-
docs/source/driver/installation.rst | 1 -
docs/source/driver/postgresql.rst | 4 +-
glib/adbc-glib/database.c | 6 +
glib/adbc-glib/database.h | 2 +-
go/adbc/go.mod | 4 +-
go/adbc/go.sum | 4 +-
go/adbc/sqldriver/driver.go | 16 +-
go/adbc/sqldriver/type_test.go | 356 ++++++++++++++
java/driver/jni/src/main/cpp/jni_wrapper.cc | 536 ++++++++++++---------
java/pom.xml | 2 +-
javascript/package-lock.json | 50 +-
ruby/lib/adbc/connection-operations.rb | 2 +-
ruby/lib/adbc/database.rb | 3 +-
ruby/test/test-connection.rb | 47 ++
ruby/test/test-database.rb | 63 +++
rust/core/src/constants.rs | 3 +
rust/core/src/options.rs | 57 +++
29 files changed, 1117 insertions(+), 343 deletions(-)
create mode 100644
c/driver/postgresql/validation/queries/type/select/json.txtcase
create mode 100644
c/driver/postgresql/validation/queries/type/select/jsonb.txtcase
delete mode 100644 ci/linux-packages/apt/debian-bookworm/Dockerfile
create mode 100644 go/adbc/sqldriver/type_test.go
create mode 100644 ruby/test/test-database.rb