This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/cargo/rust/arrow-datafusion-04922a7cb7
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


 discard 644673188 chore(rust): Bump the arrow-datafusion group across 1 
directory with 4 updates
     add 28abfdfe5 fix(python/adbc_driver_manager): remove unused typing 
imports (#4049)
     add e3b694283 ci(rust): suppress unused features error for unstable 
`non_exhaustive_omitted_patterns_lint` only used in `arrow_ffi` (#4055)
     add a515c6678 chore: replace black, flake8, and isort with ruff (#4054)
     add fb70f1e38 feat(java/driver/jni): add executeSchema (#4056)
     add c8826f560 build(c): work around clang making `__COUNTER__` a warning 
(#4044)
     add c82fde8ed refactor(python/adbc_driver_manager): add return type 
annotations (#4058)
     add 6782c9d00 ci: bump Maven version used for some validation tests (#4059)
     add 65afee931 feat(rust/driver_manager): make some functions and modules 
pub instead of pub(crate) (#4052)
     add 20dda76dd feat(javascript): add Node.js ADBC driver manager (#4046)
     add b69dcd8b3 chore(go): bump Go version (#4060)
     add b0611a123 ci: fix almalinux-8 build (#4061)
     add 55aeb7ba9 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   (644673188)
            \
             N -- N -- N   
refs/heads/dependabot/cargo/rust/arrow-datafusion-04922a7cb7 (55aeb7ba9)

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:
 .codespellrc                                       |    2 +-
 .env                                               |    2 +-
 .github/workflows/javascript.yml                   |  200 ++
 .github/workflows/packaging.yml                    |  134 +
 .github/workflows/rust.yml                         |    8 +-
 .gitignore                                         |    7 +
 .isort.cfg                                         |   20 -
 .pre-commit-config.yaml                            |   26 +-
 c/driver/framework/base_driver.h                   |    9 +-
 c/driver/framework/connection.h                    |   18 +-
 c/driver/framework/objects.cc                      |   15 +-
 c/driver/framework/statement.h                     |   18 +-
 c/driver/framework/status.h                        |  103 +-
 c/driver/postgresql/connection.cc                  |    3 +-
 c/driver/postgresql/database.cc                    |   15 +-
 .../postgresql/validation/tests/test_connection.py |    2 +-
 .../postgresql/validation/tests/test_ingest.py     |    2 +-
 c/driver/postgresql/validation/tests/test_query.py |    2 +-
 .../postgresql/validation/tests/test_statement.py  |    2 +-
 c/driver/sqlite/CMakeLists.txt                     |    2 +-
 c/driver/sqlite/sqlite.cc                          |   45 +-
 c/vendor/nanoarrow/nanoarrow.h                     |   24 +-
 c/vendor/nanoarrow/nanoarrow.hpp                   |    6 +-
 c/vendor/vendor_nanoarrow.sh                       |    2 +-
 ci/scripts/{go_test.sh => node_build.sh}           |   45 +-
 ci/scripts/node_license.sh                         |   49 +
 ci/scripts/verify_ubuntu.sh                        |    2 +-
 dev/bench/run_bench.py                             |   21 +-
 dev/release/rat_exclude_files.txt                  |    4 +
 docs/source/cpp/recipe_driver/driver_example.cc    |    5 +-
 docs/source/ext/doxygen_inventory.py               |    2 +-
 glib/tool/generate-version-header.py               |    9 +-
 go/adbc/go.mod                                     |    2 +-
 .../adbc/driver/jni/JniSqliteStatementTest.java    |    6 +-
 java/driver/jni/src/main/cpp/jni_wrapper.cc        |   19 +-
 .../apache/arrow/adbc/driver/jni/JniStatement.java |    7 +
 .../arrow/adbc/driver/jni/impl/JniLoader.java      |    5 +
 .../arrow/adbc/driver/jni/impl/NativeAdbc.java     |    2 +
 .flake8 => javascript/.cargo/config.toml           |    5 +-
 .../.editorconfig                                  |   22 +-
 .../.gitattributes                                 |   29 +-
 {r/adbcbigquery => javascript}/.gitignore          |    7 +-
 .../__init__.py => javascript/.husky/.gitignore    |    2 +
 .../.husky/pre-commit                              |    5 +-
 .flake8 => javascript/.prettierignore              |    9 +-
 .../.taplo.toml                                    |   12 +-
 {rust/driver/dummy => javascript}/Cargo.toml       |   37 +-
 javascript/LICENSE.txt                             |  523 +++
 javascript/README.md                               |  116 +
 javascript/__test__/bind.spec.ts                   |   86 +
 javascript/__test__/error_handling.spec.ts         |  116 +
 javascript/__test__/metadata.spec.ts               |   82 +
 javascript/__test__/options.spec.ts                |   82 +
 javascript/__test__/profile.spec.ts                |   80 +
 javascript/__test__/query.spec.ts                  |  117 +
 javascript/__test__/safety.spec.ts                 |   90 +
 javascript/__test__/test_utils.ts                  |   73 +
 javascript/__test__/transaction.spec.ts            |   97 +
 .flake8 => javascript/about.toml                   |   10 +-
 javascript/binding.d.ts                            |   66 +
 javascript/binding.js                              |  589 ++++
 .../ingest/time_ms.txtcase => javascript/build.rs  |    7 +-
 .../src/utils.c => javascript/lib/error.ts         |   41 +-
 javascript/lib/index.ts                            |  331 ++
 javascript/lib/types.ts                            |  354 ++
 javascript/license.hbs                             |   33 +
 {csharp => javascript/npm/darwin-arm64}/README.md  |    6 +-
 javascript/npm/darwin-arm64/package.json           |   24 +
 {csharp => javascript/npm/darwin-x64}/README.md    |    6 +-
 javascript/npm/darwin-x64/package.json             |   24 +
 .../npm/linux-arm64-gnu}/README.md                 |    6 +-
 javascript/npm/linux-arm64-gnu/package.json        |   27 +
 {csharp => javascript/npm/linux-x64-gnu}/README.md |    6 +-
 javascript/npm/linux-x64-gnu/package.json          |   27 +
 .../npm/win32-x64-msvc}/README.md                  |    6 +-
 javascript/npm/win32-x64-msvc/package.json         |   24 +
 javascript/package-lock.json                       | 3608 ++++++++++++++++++++
 javascript/package.json                            |   90 +
 .../rustfmt.toml                                   |    2 +-
 javascript/src/client.rs                           |  349 ++
 javascript/src/lib.rs                              |  733 ++++
 javascript/tsconfig.json                           |   20 +
 .../adbc_driver_bigquery/dbapi.py                  |    1 -
 python/adbc_driver_bigquery/tests/test_dbapi.py    |    1 +
 python/adbc_driver_bigquery/tests/test_lowlevel.py |    4 +-
 python/adbc_driver_flightsql/tests/test_errors.py  |    2 +-
 .../adbc_driver_manager/_lib.pyi                   |    2 +-
 .../adbc_driver_manager/dbapi.py                   |   29 +-
 python/adbc_driver_manager/tests/panictest.py      |    2 +-
 python/adbc_driver_manager/tests/test_blocking.py  |   23 +-
 python/adbc_driver_manager/tests/test_dbapi.py     |   74 +-
 .../tests/test_dbapi_polars_nopyarrow.py           |    4 +-
 python/adbc_driver_manager/tests/test_lowlevel.py  |   40 +-
 python/adbc_driver_manager/tests/test_polars.py    |    2 +-
 python/adbc_driver_manager/tests/test_reader.py    |    6 +-
 .../AdbcDriverCommonConfig.cmake.in => ruff.toml   |   17 +-
 rust/driver_manager/src/lib.rs                     |    3 +-
 rust/driver_manager/src/profile.rs                 |    2 +-
 rust/driver_manager/src/search.rs                  |   14 +-
 99 files changed, 8663 insertions(+), 387 deletions(-)
 create mode 100644 .github/workflows/javascript.yml
 delete mode 100644 .isort.cfg
 copy ci/scripts/{go_test.sh => node_build.sh} (55%)
 create mode 100755 ci/scripts/node_license.sh
 copy .flake8 => javascript/.cargo/config.toml (90%)
 copy c/driver/postgresql/AdbcDriverPostgreSQLConfig.cmake.in => 
javascript/.editorconfig (70%)
 copy ci/conda_env_python.txt => javascript/.gitattributes (69%)
 copy {r/adbcbigquery => javascript}/.gitignore (95%)
 copy dev/adbc_dev/tests/__init__.py => javascript/.husky/.gitignore (99%)
 copy ci/docker/dremio-init.dockerfile => javascript/.husky/pre-commit (93%)
 mode change 100644 => 100755
 copy .flake8 => javascript/.prettierignore (93%)
 copy c/driver/common/AdbcDriverCommonConfig.cmake.in => javascript/.taplo.toml 
(81%)
 copy {rust/driver/dummy => javascript}/Cargo.toml (61%)
 create mode 100644 javascript/LICENSE.txt
 create mode 100644 javascript/README.md
 create mode 100644 javascript/__test__/bind.spec.ts
 create mode 100644 javascript/__test__/error_handling.spec.ts
 create mode 100644 javascript/__test__/metadata.spec.ts
 create mode 100644 javascript/__test__/options.spec.ts
 create mode 100644 javascript/__test__/profile.spec.ts
 create mode 100644 javascript/__test__/query.spec.ts
 create mode 100644 javascript/__test__/safety.spec.ts
 create mode 100644 javascript/__test__/test_utils.ts
 create mode 100644 javascript/__test__/transaction.spec.ts
 rename .flake8 => javascript/about.toml (89%)
 create mode 100644 javascript/binding.d.ts
 create mode 100644 javascript/binding.js
 copy c/driver/postgresql/validation/queries/ingest/time_ms.txtcase => 
javascript/build.rs (93%)
 copy r/adbcdrivermanager/src/utils.c => javascript/lib/error.ts (51%)
 create mode 100644 javascript/lib/index.ts
 create mode 100644 javascript/lib/types.ts
 create mode 100644 javascript/license.hbs
 copy {csharp => javascript/npm/darwin-arm64}/README.md (83%)
 create mode 100644 javascript/npm/darwin-arm64/package.json
 copy {csharp => javascript/npm/darwin-x64}/README.md (83%)
 create mode 100644 javascript/npm/darwin-x64/package.json
 copy {csharp => javascript/npm/linux-arm64-gnu}/README.md (82%)
 create mode 100644 javascript/npm/linux-arm64-gnu/package.json
 copy {csharp => javascript/npm/linux-x64-gnu}/README.md (82%)
 create mode 100644 javascript/npm/linux-x64-gnu/package.json
 copy {csharp => javascript/npm/win32-x64-msvc}/README.md (82%)
 create mode 100644 javascript/npm/win32-x64-msvc/package.json
 create mode 100644 javascript/package-lock.json
 create mode 100644 javascript/package.json
 copy ci/conda_env_benchmarking.txt => javascript/rustfmt.toml (98%)
 create mode 100644 javascript/src/client.rs
 create mode 100644 javascript/src/lib.rs
 create mode 100644 javascript/tsconfig.json
 copy c/driver/common/AdbcDriverCommonConfig.cmake.in => ruff.toml (76%)

Reply via email to