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

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


    omit 648b4e6d0 chore(rust): Bump tokio from 1.47.1 to 1.48.0 in /rust
     add d9a69ed74 chore(csharp/src/Apache.Arrow.Adbc/Tracing): throw runtime 
exception if TraceActivity is called from async context (#3600)
     add 11ed854ff chore(java): Bump com.google.protobuf:protobuf-java from 
4.32.1 to 4.33.0 in /java (#3593)
     add 2964c540f fix(c/driver/postgresql): handle empty strings correctly in 
parameter binding (#3601)
     add 3774b8234 feat(csharp/src/Drivers/Databricks): Changed default value 
for async exec poll interval connection param (#3589)
     add fb6306f4f fix: resolve Goroutine leak in database connection close 
(#3491)
     add f6d5cfe77 chore(csharp): Enable centralized package management (#3605)
     add 9051acfbb fix(csharp/src/Drivers/BigQuery): handle dispose of 
Statement before Stream (#3608)
     add d57cc5013 feat(python/adbc_driver_postgresql): document autocommit as 
acceptable parameter in connect (#3606)
     add 2c1e01d32 fix(csharp/src/Drivers/BigQuery): correct unexpected 
ObjectDisposedException (#3613)
     add 990c67d9f feat(go/adbc/driver/databricks): Add Databrikcs driver 
written in Go (#3325)
     add ec495803d fix(c/driver/postgresql): handle overflow on binary-like 
fields (#3616)
     add 47e9e6b10 fix(python/adbc_driver_manager): update type annotations 
(#3603)
     add c647cf88c chore(go/adbc): Bump github.com/databricks/databricks-sql-go 
from 1.8.0 to 1.9.0 in /go/adbc (#3635)
     add 768737880 chore(go/adbc): Bump google.golang.org/api from 0.252.0 to 
0.253.0 in /go/adbc (#3632)
     add 6d87d4612 chore: Bump ruby/setup-ruby from 1.265.0 to 1.267.0 (#3638)
     add b922a77bf feat(go/adbc/driver/bigquery): Support setting quota project 
for connection (#3622)
     add 1db93d8ab chore: Bump actions/download-artifact from 5 to 6 (#3630)
     add 29ded4924 chore: Bump actions/upload-artifact from 4 to 5 (#3631)
     add 171ca0f4e ci: update tested Java versions (#3641)
     add 9cd4aef67 chore(java): Bump com.google.errorprone:error_prone_core 
from 2.42.0 to 2.43.0 in /java (#3626)
     add 4b868ac55 feat(csharp/src/Drivers/Databricks): Design of SEA support 
for Databricks C# driver (#3576)
     add 4f2d4ec3c fix(csharp/src/Apache.Arrow.Adbc): Expose extensions to 
package in NuGet (#3609)
     add 00e94900e chore(csharp): Bump Apache.Arrow.Flight from 20.0.0 to 
22.1.0 (#3629)
     add 74200ee67 fix(csharp/src/Drivers/BigQuery): improve selective handling 
of cancellation exception (#3615)
     add 946944fe4 build(python): provide wheels for Python 3.14/3.14t (#3620)
     add 6d458a2fd feat(c/driver_manager): improve error messages further 
(#3646)
     add a67ab5a50 build(c/driver/postgresql): include portable-snippets (#3643)
     add 8a861bb72 feat(csharp/src/Drivers/Databricks): consolidate LZ4 
decompression logic and improve resource disposal (#3649)
     add f6f8e4901 chore(rust): support arrow 57 (#3647)
     add 3cdc62976 chore(rust): Bump tokio from 1.47.1 to 1.48.0 in /rust

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   (648b4e6d0)
            \
             N -- N -- N   refs/heads/dependabot/cargo/rust/tokio-1.48.0 
(3cdc62976)

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                         |   17 +-
 .github/workflows/native-unix.yml                  |   16 +-
 .github/workflows/native-windows.yml               |    8 +-
 .github/workflows/nightly-verify.yml               |    4 +-
 .github/workflows/nightly-website.yml              |    4 +-
 .github/workflows/packaging.yml                    |  105 +-
 c/driver/postgresql/CMakeLists.txt                 |   16 +-
 c/driver/postgresql/bind_stream.h                  |    6 +-
 .../postgresql/copy/postgres_copy_reader_test.cc   |   56 +
 c/driver/postgresql/copy/reader.h                  |   40 +-
 c/driver/postgresql/postgresql_test.cc             |   98 +
 c/driver_manager/CMakeLists.txt                    |    2 +-
 c/driver_manager/adbc_driver_manager.cc            |   77 +-
 c/driver_manager/adbc_driver_manager_test.cc       |   18 +
 .../{ => include/portable-snippets}/safe-math.h    |    0
 csharp/Benchmarks/Benchmarks.csproj                |    4 +-
 csharp/Directory.Build.props                       |    2 +-
 csharp/Directory.Packages.props                    |   54 +
 .../src/Apache.Arrow.Adbc/Apache.Arrow.Adbc.csproj |    6 +-
 .../Extensions/ListArrayExtensions.cs              |    2 +-
 .../Extensions/StandardSchemaExtensions.cs         |    2 +-
 .../Tracing/IActivityTracerExtensions.cs           |    6 +
 .../Apache/Apache.Arrow.Adbc.Drivers.Apache.csproj |    6 +-
 .../Apache.Arrow.Adbc.Drivers.BigQuery.csproj      |    8 +-
 csharp/src/Drivers/BigQuery/BigQueryStatement.cs   |   53 +-
 csharp/src/Drivers/BigQuery/RetryManager.cs        |    8 +-
 .../Apache.Arrow.Adbc.Drivers.Databricks.csproj    |    4 +-
 .../src/Drivers/Databricks/DatabricksParameters.cs |    7 +
 .../src/Drivers/Databricks/DatabricksStatement.cs  |    6 +
 csharp/src/Drivers/Databricks/Lz4Utilities.cs      |   90 +-
 .../Reader/CloudFetch/CloudFetchDownloader.cs      |   19 +-
 csharp/src/Drivers/Databricks/readme.md            |    1 +
 .../Databricks/statement-execution-api-design.md   | 2656 ++++++++++++++++++++
 .../Apache.Arrow.Adbc.Drivers.FlightSql.csproj     |    4 +-
 ...he.Arrow.Adbc.Telemetry.Traces.Exporters.csproj |    6 +-
 ...he.Arrow.Adbc.Telemetry.Traces.Listeners.csproj |    6 +-
 .../Apache.Arrow.Adbc.Tests.csproj                 |   18 +-
 .../Tracing/TracingTests.cs                        |  101 +-
 .../Apache.Arrow.Adbc.Tests.Drivers.Apache.csproj  |   12 +-
 ...Apache.Arrow.Adbc.Tests.Drivers.BigQuery.csproj |   12 +-
 csharp/test/Drivers/BigQuery/StatementTests.cs     |   54 +-
 ...ache.Arrow.Adbc.Tests.Drivers.Databricks.csproj |   12 +-
 ...pache.Arrow.Adbc.Tests.Drivers.FlightSql.csproj |    8 +-
 ...row.Adbc.Tests.Drivers.Interop.FlightSql.csproj |    8 +-
 ...row.Adbc.Tests.Drivers.Interop.Snowflake.csproj |    8 +-
 .../Apache.Arrow.Adbc.SmokeTests.csproj            |   10 +-
 ...e.Arrow.Adbc.SmokeTests.Drivers.BigQuery.csproj |   10 +-
 ....Arrow.Adbc.SmokeTests.Drivers.FlightSql.csproj |    8 +-
 ...dbc.SmokeTests.Drivers.Interop.FlightSql.csproj |   10 +-
 ...dbc.SmokeTests.Drivers.Interop.Snowflake.csproj |   10 +-
 ...ow.Adbc.Tests.Telemetry.Traces.Exporters.csproj |    8 +-
 ...ow.Adbc.Tests.Telemetry.Traces.Listeners.csproj |    8 +-
 dev/release/rat_exclude_files.txt                  |    2 +-
 docs/source/python/recipe/postgresql.rst           |    5 +
 ...et_query_schema.py => postgresql_autocommit.py} |   41 +-
 go/adbc/driver/bigquery/bigquery_database.go       |   12 +-
 go/adbc/driver/bigquery/connection.go              |   10 +
 go/adbc/driver/bigquery/driver.go                  |    1 +
 go/adbc/driver/databricks/cloudfetch_e2e_test.go   |  489 ++++
 go/adbc/driver/databricks/connection.go            |  261 ++
 go/adbc/driver/databricks/database.go              |  419 +++
 go/adbc/driver/databricks/driver.go                |  123 +
 go/adbc/driver/databricks/driver_test.go           |  755 ++++++
 go/adbc/driver/databricks/integration_e2e_test.go  |  705 ++++++
 go/adbc/driver/databricks/ipc_reader_adapter.go    |  217 ++
 go/adbc/driver/databricks/ipc_reader_test.go       |  251 ++
 go/adbc/driver/databricks/statement.go             |  234 ++
 go/adbc/driver/flightsql/flightsql_connection.go   |    1 +
 go/adbc/driver/flightsql/flightsql_database.go     |    8 +-
 go/adbc/drivermgr/adbc_driver_manager.cc           |   77 +-
 go/adbc/go.mod                                     |   20 +-
 go/adbc/go.sum                                     |  143 +-
 go/adbc/pkg/Makefile                               |    3 +-
 go/adbc/pkg/{panicdummy => databricks}/driver.go   |  414 +--
 go/adbc/pkg/{panicdummy => databricks}/utils.c     |  150 +-
 go/adbc/pkg/{panicdummy => databricks}/utils.h     |  126 +-
 java/driver/flight-sql/pom.xml                     |    2 +-
 java/pom.xml                                       |    2 +-
 .../adbc_driver_manager/_lib.pyi                   |   13 +-
 .../tests/test_dbapi_polars_nopyarrow.py           |    2 +-
 .../adbc_driver_postgresql/dbapi.py                |    9 +-
 r/adbcpostgresql/src/Makevars.in                   |    2 +-
 r/adbcpostgresql/src/Makevars.ucrt                 |    2 +-
 r/adbcpostgresql/src/Makevars.win                  |    2 +-
 rust/Cargo.lock                                    |  117 +-
 rust/Cargo.toml                                    |    8 +-
 rust/driver/datafusion/Cargo.toml                  |    4 +-
 87 files changed, 7624 insertions(+), 720 deletions(-)
 rename c/vendor/portable-snippets/{ => include/portable-snippets}/safe-math.h 
(100%)
 create mode 100644 csharp/Directory.Packages.props
 create mode 100644 
csharp/src/Drivers/Databricks/statement-execution-api-design.md
 copy docs/source/python/recipe/{postgresql_get_query_schema.py => 
postgresql_autocommit.py} (55%)
 create mode 100644 go/adbc/driver/databricks/cloudfetch_e2e_test.go
 create mode 100644 go/adbc/driver/databricks/connection.go
 create mode 100644 go/adbc/driver/databricks/database.go
 create mode 100644 go/adbc/driver/databricks/driver.go
 create mode 100644 go/adbc/driver/databricks/driver_test.go
 create mode 100644 go/adbc/driver/databricks/integration_e2e_test.go
 create mode 100644 go/adbc/driver/databricks/ipc_reader_adapter.go
 create mode 100644 go/adbc/driver/databricks/ipc_reader_test.go
 create mode 100644 go/adbc/driver/databricks/statement.go
 copy go/adbc/pkg/{panicdummy => databricks}/driver.go (81%)
 copy go/adbc/pkg/{panicdummy => databricks}/utils.c (77%)
 copy go/adbc/pkg/{panicdummy => databricks}/utils.h (66%)

Reply via email to