This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/nuget/csharp/xunit.runner.visualstudio-2.5.5
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
discard e8ecd10c chore(csharp): bump xunit.runner.visualstudio in /csharp
add 025c7851 chore: bump actions/setup-java from 3 to 4 (#1370)
add 54f2eb85 chore: bump actions/github-script from 6 to 7 (#1372)
add cf04190b chore: bump actions/checkout from 3 to 4 (#1373)
add 14a7c97e chore: bump conda-incubator/setup-miniconda from 2 to 3
(#1369)
add 6a1bc994 chore: bump docker/setup-qemu-action from 2 to 3 (#1371)
add 45eaba60 docs: fix path in build script (#1379)
add c8ec427d docs: spruce up landing page (#1360)
add 595df253 feat(r): Reference count child objects (#1334)
add 5ed0f5b0 docs: update driver implementation status (#1383)
add 95897540 feat(c/driver/postgresql): set rows_affected appropriately
(#1384)
add 5ca9c29e fix(c/driver/postgresql): support catalog arg of
GetTableSchema (#1387)
add 97765976 docs: enable linking to Javadoc via Intersphinx (#1381)
add 5c180861 chore: use LF not CRLF for csproj (#1386)
add 402e558b chore(csharp): bump xunit.runner.visualstudio in /csharp
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 (e8ecd10c)
\
N -- N -- N
refs/heads/dependabot/nuget/csharp/xunit.runner.visualstudio-2.5.5 (402e558b)
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.yml | 2 +-
.github/workflows/dev_pr.yml | 4 +-
.github/workflows/integration.yml | 16 +-
.github/workflows/java.yml | 8 +-
.github/workflows/native-unix.yml | 37 ++--
.github/workflows/native-windows.yml | 16 +-
.github/workflows/nightly-verify.yml | 6 +-
.github/workflows/nightly-website.yml | 6 +-
.github/workflows/packaging.yml | 14 +-
.github/workflows/rust.yml | 2 +-
.github/workflows/verify.yml | 6 +-
.pre-commit-config.yaml | 4 +-
c/driver/postgresql/connection.cc | 37 ++--
c/driver/postgresql/postgresql_test.cc | 40 +++--
c/driver/postgresql/statement.cc | 13 +-
c/validation/adbc_validation.cc | 51 +++++-
c/validation/adbc_validation.h | 33 +++-
ci/conda_env_cpp_lint.txt | 4 +-
ci/conda_env_docs.txt | 3 +-
ci/scripts/docs_build.sh | 23 ++-
ci/scripts/website_build.sh | 7 +
.../src/Apache.Arrow.Adbc/Apache.Arrow.Adbc.csproj | 42 ++---
csharp/src/Client/Apache.Arrow.Adbc.Client.csproj | 32 ++--
.../Apache.Arrow.Adbc.Drivers.BigQuery.csproj | 44 ++---
.../Apache.Arrow.Adbc.Drivers.FlightSql.csproj | 24 +--
...che.Arrow.Adbc.Drivers.Interop.Snowflake.csproj | 78 ++++----
.../Apache.Arrow.Adbc.Tests.csproj | 46 ++---
.../Apache.Arrow.Adbc.SmokeTests.csproj | 88 ++++-----
...e.Arrow.Adbc.SmokeTests.Drivers.BigQuery.csproj | 66 +++----
....Arrow.Adbc.SmokeTests.Drivers.FlightSql.csproj | 56 +++---
...dbc.SmokeTests.Drivers.Interop.Snowflake.csproj | 66 +++----
docs/source/_static/banner.png | Bin 0 -> 18127 bytes
docs/source/conf.py | 39 +++-
docs/source/driver/postgresql.rst | 131 +++++++++++++-
docs/source/driver/sqlite.rst | 2 +-
docs/source/driver/status.rst | 12 +-
.../source/ext/adbc_java_domain.py | 41 +++--
docs/source/ext/javadoc_inventory.py | 173 ++++++++++++++++++
docs/source/format/specification.rst | 10 +-
docs/source/index.rst | 198 ++++++++++++++++++---
docs/source/python/recipe/postgresql.rst | 12 ++
.../recipe/postgresql_create_append_table.py | 27 ++-
...nd_table.py => postgresql_create_temp_table.py} | 65 ++++---
...le_schema.py => postgresql_get_query_schema.py} | 14 +-
.../python/recipe/postgresql_get_table_schema.py | 26 ++-
.../adbc_driver_manager/dbapi.py | 2 +-
r/adbcdrivermanager/DESCRIPTION | 2 +-
r/adbcdrivermanager/NAMESPACE | 1 -
r/adbcdrivermanager/R/adbc.R | 40 ++++-
r/adbcdrivermanager/R/helpers.R | 79 ++++----
r/adbcdrivermanager/R/utils.R | 34 +++-
r/adbcdrivermanager/man/adbc_connection_join.Rd | 8 -
.../man/adbc_statement_set_sql_query.Rd | 9 +-
r/adbcdrivermanager/man/adbc_xptr_move.Rd | 5 +-
r/adbcdrivermanager/man/with_adbc.Rd | 7 +-
r/adbcdrivermanager/src/init.c | 2 +
r/adbcdrivermanager/src/radbc.cc | 34 ++++
r/adbcdrivermanager/src/radbc.h | 2 +
r/adbcdrivermanager/src/utils.c | 11 ++
.../tests/testthat/test-driver_monkey.R | 5 +
r/adbcdrivermanager/tests/testthat/test-helpers.R | 5 +-
r/adbcdrivermanager/tests/testthat/test-utils.R | 4 +-
62 files changed, 1342 insertions(+), 532 deletions(-)
create mode 100644 docs/source/_static/banner.png
copy python/adbc_driver_manager/adbc_driver_manager/_reader.pyi =>
docs/source/ext/adbc_java_domain.py (54%)
create mode 100644 docs/source/ext/javadoc_inventory.py
copy docs/source/python/recipe/{postgresql_create_append_table.py =>
postgresql_create_temp_table.py} (52%)
copy docs/source/python/recipe/{postgresql_get_table_schema.py =>
postgresql_get_query_schema.py} (75%)