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 266f26550 chore(rust): bump the arrow-datafusion group across 1
directory with 4 updates
add 44eb6d4aa docs: demonstrate how to use (unofficial) JNI nightly builds
(#4399)
add 0e1d0beab fix(java/driver/jni): check for pending exceptions more
thoroughly (#4398)
add 530d0ce8f chore: bump the actions group with 2 updates (#4434)
add d2a9ae1d3 chore(javascript): bump napi from 3.9.1 to 3.9.2 (#4432)
add 7e47d0d7d refactor(java/driver/jni): guard against null handles (#4426)
add 2143e8982 chore(java): bump the linters group in /java with 2 updates
(#4429)
add 326176d61 chore(go/adbc): bump golang.org/x/tools from 0.45.0 to
0.46.0 (#4431)
add fff69792a chore(java): bump
com.diffplug.spotless:spotless-maven-plugin (#4430)
add 5cdc18e25 ci: don't force XCode 16 (#4437)
add 87989bf3f feat!(c/driver/postgresql): defer transaction start (#4424)
add b61be2fff chore(java): bump com.google.protobuf:protobuf-java (#4433)
add d6cdd4dc0 fix(java/driver/jni): handle "modified UTF-8" encoding
(#4423)
add 841e4df24 chore: refine how we handle licenses for binaries (#4412)
add 05995bbe8 test(java/driver/jni): add more integration/unit tests
(#4440)
add dfe536806 fix(c/driver_manager): preserve quoted-key text in profile
redefinition errors (#4442)
add d3a45225b feat(java/driver/jni): close child resources automatically
(#4441)
add 400898a23 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 (266f26550)
\
N -- N -- N
refs/heads/dependabot/cargo/rust/arrow-datafusion-5d578ea766 (400898a23)
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/java.yml | 11 +-
.github/workflows/packaging.yml | 8 +-
CONTRIBUTING.md | 28 +-
LICENSE.txt | 2663 +-------------------
c/driver/postgresql/connection.cc | 52 +-
c/driver/postgresql/connection.h | 4 +
c/driver/postgresql/postgresql_test.cc | 56 +-
c/driver/postgresql/statement.cc | 4 +
c/driver_manager/adbc_driver_manager_test.cc | 28 +
c/vendor/toml++/toml.hpp | 5 +
ci/licenses/README.md | 59 +
ci/licenses/flightsql.tpl | 45 +
ci/licenses/flightsql.txt | 940 +++++++
ci/licenses/postgresql.txt | 95 +
ci/licenses/sqlite.txt | 4 +
dev/release/rat_exclude_files.txt | 1 +
docs/source/development/nightly.rst | 37 +-
docs/source/development/releasing.rst | 2 +-
go/adbc/drivermgr/vendored/toml++/toml.hpp | 5 +
go/adbc/go.mod | 10 +-
go/adbc/go.sum | 20 +-
java/driver/flight-sql/pom.xml | 2 +-
.../driver/jni/MultiDriverIntegrationTest.java | 145 ++
java/driver/jni/CMakeLists.txt | 2 +-
java/driver/jni/pom.xml | 1 +
java/driver/jni/src/main/cpp/jni_wrapper.cc | 385 +--
.../arrow/adbc/driver/jni/JniConnection.java | 52 +-
.../apache/arrow/adbc/driver/jni/JniDatabase.java | 22 +-
.../apache/arrow/adbc/driver/jni/JniStatement.java | 29 +-
.../adbc/driver/jni/impl/ChildReferences.java | 62 +
.../HasChildReferences.java} | 5 +-
.../arrow/adbc/driver/jni/impl/JniLoader.java | 108 +-
.../arrow/adbc/driver/jni/impl/NativeAdbc.java | 73 +-
.../driver/jni/impl/NativeConnectionHandle.java | 6 +-
.../adbc/driver/jni/impl/NativeDatabaseHandle.java | 6 +-
.../arrow/adbc/driver/jni/impl/NativeHandle.java | 1 +
.../adbc/driver/jni/impl/NativeQueryResult.java | 6 +-
.../driver/jni/impl/NativeStatementHandle.java | 6 +-
.../adbc/driver/jni/impl/TiedArrowReader.java | 112 +
.../arrow/adbc/driver/jni/JniDriverTest.java | 89 +
.../arrow/adbc/driver/jni/impl/ImplTest.java | 162 ++
.../adbc/driver/jni/impl/NativeHandleTest.java | 51 +
java/pom.xml | 6 +-
javascript/Cargo.lock | 4 +-
license.tpl | 415 ---
python/adbc_driver_flightsql/LICENSE.txt | 1264 +++++++++-
python/adbc_driver_postgresql/LICENSE.txt | 419 ++-
python/adbc_driver_postgresql/tests/test_dbapi.py | 69 +-
python/adbc_driver_sqlite/LICENSE.txt | 328 ++-
49 files changed, 4482 insertions(+), 3425 deletions(-)
create mode 100644 ci/licenses/README.md
create mode 100644 ci/licenses/flightsql.tpl
create mode 100644 ci/licenses/flightsql.txt
create mode 100644 ci/licenses/postgresql.txt
create mode 100644 ci/licenses/sqlite.txt
create mode 100644
java/driver/jni-validation/src/test/java/org/apache/arrow/adbc/driver/jni/MultiDriverIntegrationTest.java
create mode 100644
java/driver/jni/src/main/java/org/apache/arrow/adbc/driver/jni/impl/ChildReferences.java
copy
java/driver/jni/src/main/java/org/apache/arrow/adbc/driver/jni/{package-info.java
=> impl/HasChildReferences.java} (86%)
create mode 100644
java/driver/jni/src/main/java/org/apache/arrow/adbc/driver/jni/impl/TiedArrowReader.java
create mode 100644
java/driver/jni/src/test/java/org/apache/arrow/adbc/driver/jni/impl/ImplTest.java
create mode 100644
java/driver/jni/src/test/java/org/apache/arrow/adbc/driver/jni/impl/NativeHandleTest.java
delete mode 100644 license.tpl
mode change 120000 => 100644 python/adbc_driver_flightsql/LICENSE.txt
mode change 120000 => 100644 python/adbc_driver_postgresql/LICENSE.txt
mode change 120000 => 100644 python/adbc_driver_sqlite/LICENSE.txt