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

lidavidm pushed a change to branch spec-1.1.0
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


    from c3202e6  fix(c/driver/snowflake): fix validation test failures (#677)
     add 1d65bd3  feat(c/driver/postgresql): implement GetObjectsSchema (#676)
     add e3b9a37  chore: update versions for 0.5.0-SNAPSHOT
     add 7b71765  chore: update changelog for 0.4.0
     add 47775a8  refactor(c): Simplify CI testing for cpp (#610)
     add 08901e8  refactor(c/driver/postgresql): implement InputIterator for 
ResultHelper (#683)
     add 31e70de  ci: re-enable Snowflake driver on aarch64 (#690)
     add 76dbabe  ci: fix DLL names in build script (#689)
     add c75e983  feat(r): Add driver logging utility (#694)
     add ecf172e  refactor(c): Use ArrowArrayViewListChildOffset from nanoarrow 
(#696)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/integration.yml                  |   6 +-
 .github/workflows/native-unix.yml                  |   5 +-
 .github/workflows/native-windows.yml               |   4 +-
 .pre-commit-config.yaml                            |   2 +
 CHANGELOG.md                                       |  54 ++++
 c/cmake_modules/AdbcVersion.cmake                  |   2 +-
 c/driver/common/utils.c                            | 184 +++++++++++
 c/driver/common/utils.h                            |   3 +
 c/driver/postgresql/connection.cc                  | 185 +++++++++--
 c/driver/postgresql/connection.h                   |   5 +
 c/driver/postgresql/postgresql.cc                  |   6 +-
 c/driver/postgresql/postgresql_test.cc             |  44 ++-
 c/driver/sqlite/sqlite.c                           | 186 +----------
 c/validation/adbc_validation.cc                    |  36 +--
 c/validation/adbc_validation_util.cc               |  14 -
 c/validation/adbc_validation_util.h                |   6 -
 c/vendor/nanoarrow/nanoarrow.h                     |  17 +
 ci/conda/meta.yaml                                 |   2 +-
 ci/linux-packages/debian/control                   |  22 +-
 ...install => libadbc-driver-flightsql005.install} |   0
 ...4.install => libadbc-driver-manager005.install} |   0
 ...nstall => libadbc-driver-postgresql005.install} |   0
 ...install => libadbc-driver-snowflake005.install} |   0
 ...04.install => libadbc-driver-sqlite005.install} |   0
 ci/scripts/cpp_test.ps1                            |   9 +-
 ci/scripts/cpp_test.sh                             |   9 +-
 ci/scripts/python_util.sh                          |  15 +-
 ci/scripts/python_wheel_unix_build.sh              |  11 +-
 ci/scripts/python_wheel_windows_build.bat          |   4 +-
 dev/release/rat_exclude_files.txt                  |   1 +
 dev/release/verify-release-candidate.ps1           |   2 +-
 dev/release/verify-release-candidate.sh            |   2 +-
 docs/source/conf.py                                |   2 +-
 glib/meson.build                                   |   2 +-
 java/core/pom.xml                                  |   2 +-
 java/driver-manager/pom.xml                        |   2 +-
 java/driver/flight-sql-validation/pom.xml          |   2 +-
 java/driver/flight-sql/pom.xml                     |   2 +-
 java/driver/jdbc-validation-derby/pom.xml          |   2 +-
 java/driver/jdbc-validation-postgresql/pom.xml     |   2 +-
 java/driver/jdbc/pom.xml                           |   2 +-
 java/driver/validation/pom.xml                     |   2 +-
 java/pom.xml                                       |   4 +-
 java/sql/pom.xml                                   |   2 +-
 r/adbcdrivermanager/DESCRIPTION                    |   2 +-
 r/adbcdrivermanager/NAMESPACE                      |   4 +
 r/adbcdrivermanager/R/driver_log.R                 |  74 +++++
 r/adbcdrivermanager/man/adbc_driver_log.Rd         |  27 ++
 r/adbcdrivermanager/src/driver_log.c               | 343 +++++++++++++++++++++
 r/adbcdrivermanager/src/init.c                     |   4 +-
 r/adbcdrivermanager/src/radbc.cc                   |  17 +
 .../tests/testthat/_snaps/driver_log.md            |  41 +++
 .../{test-driver_void.R => test-driver_log.R}      |  13 +-
 r/adbcpostgresql/DESCRIPTION                       |   2 +-
 r/adbcsnowflake/DESCRIPTION                        |   2 +-
 r/adbcsqlite/DESCRIPTION                           |   2 +-
 ruby/lib/adbc/version.rb                           |   2 +-
 57 files changed, 1066 insertions(+), 329 deletions(-)
 rename ci/linux-packages/debian/{libadbc-driver-flightsql004.install => 
libadbc-driver-flightsql005.install} (100%)
 rename ci/linux-packages/debian/{libadbc-driver-manager004.install => 
libadbc-driver-manager005.install} (100%)
 rename ci/linux-packages/debian/{libadbc-driver-postgresql004.install => 
libadbc-driver-postgresql005.install} (100%)
 rename ci/linux-packages/debian/{libadbc-driver-snowflake004.install => 
libadbc-driver-snowflake005.install} (100%)
 rename ci/linux-packages/debian/{libadbc-driver-sqlite004.install => 
libadbc-driver-sqlite005.install} (100%)
 create mode 100644 r/adbcdrivermanager/R/driver_log.R
 create mode 100644 r/adbcdrivermanager/man/adbc_driver_log.Rd
 create mode 100644 r/adbcdrivermanager/src/driver_log.c
 create mode 100644 r/adbcdrivermanager/tests/testthat/_snaps/driver_log.md
 copy r/adbcdrivermanager/tests/testthat/{test-driver_void.R => 
test-driver_log.R} (68%)

Reply via email to