This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/nuget/csharp/Google.Cloud.BigQuery.Storage.V1-3.19.0
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
discard 659b4746e chore(csharp): Bump Google.Cloud.BigQuery.Storage.V1 from
3.17.0 to 3.19.0
add ca37f6c95 chore(csharp): Bump Azure.Identity from 1.14.2 to 1.17.1
(#3738)
add e06b900ef chore(java): Bump
com.diffplug.spotless:spotless-maven-plugin from 3.0.0 to 3.1.0 in /java (#3744)
add 3078bb6ee chore(go/adbc): Bump google.golang.org/grpc from 1.76.0 to
1.77.0 in /go/adbc (#3737)
add fdf92e044 feat(c/driver/postgresql): add transaction isolation level
support (#3760)
add 2a6178f15 chore(java): Bump the linters group in /java with 2 updates
(#3764)
add e969b5a3a chore(csharp): Bump BenchmarkDotNet from 0.15.6 to 0.15.8
(#3761)
add 87c49e937 fix(csharp/src/Drivers/Databricks): Implement FIFO memory
acquisition to prevent starvation in CloudFetch (#3756)
add 7cb8c0ba8 feat(csharp/src/Drivers): Enable setting
BatchSizeStopCondition, MaxMessageSize & MaxFrameSize (#3684)
add c447a1c62 build(go): bump to go1.25.5 (#3769)
add 9d6a899c2 test(glib): update PostgreSQL isolation level test to use
supported values (#3770)
add 2fb3af4c1 chore(go): use HEAD arrow-go to avoid polars interop crash
(#3758)
add 2fa4f1277 chore(rust/driver/datafusion): bump datafusion to 51.0.0
(#3772)
add af871995d chore(java): Bump the linters group in /java with 3 updates
(#3778)
add 682465a7f chore(go/adbc): Bump the golang-org-x group in /go/adbc with
2 updates (#3774)
add 5ddebb35f chore(java): Bump com.google.protobuf:protobuf-java from
4.33.1 to 4.33.2 in /java (#3779)
add bf523d1ed fix(go/adbc/sqldriver): ignore NotImplemented errors for
optional transaction options (#3759)
add 2096272cd chore: Bump ruby/setup-ruby from 1.268.0 to 1.269.0 (#3773)
add 6073da3d7 chore(go/adbc): Bump the opentelemetry group in /go/adbc
with 6 updates (#3775)
add 0e4651c3f fix(c/driver_manager): do not parse driver/URI if both are
set (#3790)
add 3b4e8cdbc fix(csharp): Expose internals for AdbcDrivers.Databricks
(#3788)
add d5983ce5e fix(c/driver_manager): incorrect buffer length check in
AdbcDatabaseGetOption (#3797)
add 13fc1f2d1 chore: Bump actions/cache from 4 to 5 (#3801)
add 0e1040c03 chore(go/adbc): Bump github.com/apache/arrow-go/v18 to
18.5.0 in /go/adbc (#3804)
add f43a6ef49 chore: Bump ruby/setup-ruby from 1.269.0 to 1.270.0 (#3803)
add ee5606971 chore(csharp): Update DuckDB (#3811)
add 1b08a89c2 chore(csharp): Bump Google.Cloud.BigQuery.Storage.V1 from
3.17.0 to 3.19.0
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 (659b4746e)
\
N -- N -- N
refs/heads/dependabot/nuget/csharp/Google.Cloud.BigQuery.Storage.V1-3.19.0
(1b08a89c2)
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:
.env | 2 +-
.github/workflows/dev.yml | 2 +-
.github/workflows/dev_adbc.yml | 2 +-
.github/workflows/integration.yml | 8 +-
.github/workflows/native-unix.yml | 14 +-
.github/workflows/native-windows.yml | 8 +-
.github/workflows/packaging.yml | 4 +-
.pre-commit-config.yaml | 2 +-
c/driver/postgresql/connection.cc | 27 +
c/driver/postgresql/postgresql_test.cc | 27 +
c/driver_manager/adbc_driver_manager.cc | 67 ++-
c/driver_manager/adbc_driver_manager_test.cc | 85 ++-
csharp/Directory.Packages.props | 6 +-
csharp/src/Drivers/Apache/ApacheParameters.cs | 1 +
csharp/src/Drivers/Apache/AssemblyInfo.cs | 2 +
.../Drivers/Apache/Hive2/HiveServer2Connection.cs | 20 +
.../Apache/Hive2/HiveServer2ExtendedConnection.cs | 3 +-
.../Apache/Hive2/HiveServer2HttpConnection.cs | 2 +-
.../Drivers/Apache/Hive2/HiveServer2Parameters.cs | 6 +
.../src/Drivers/Apache/Hive2/HiveServer2Reader.cs | 8 +-
.../Apache/Hive2/HiveServer2StandardConnection.cs | 11 +-
.../Drivers/Apache/Hive2/HiveServer2Statement.cs | 8 +
.../Drivers/Apache/Hive2/IHiveServer2Statement.cs | 5 +
csharp/src/Drivers/Apache/Hive2/README.md | 1 +
.../Drivers/Apache/Impala/ImpalaHttpConnection.cs | 2 +-
.../Apache/Impala/ImpalaStandardConnection.cs | 10 +-
csharp/src/Drivers/Apache/Impala/README.md | 1 +
.../Drivers/Apache/Spark/SparkHttpConnection.cs | 2 +-
.../Apache/Spark/SparkStandardConnection.cs | 10 +-
.../Reader/CloudFetch/CloudFetchDownloadManager.cs | 2 +-
.../Reader/CloudFetch/CloudFetchDownloader.cs | 7 +-
.../Client/DuckDbClientTests.cs | 9 +-
.../Apache.Arrow.Adbc.Tests/ImportedDuckDbTests.cs | 9 +-
csharp/test/Drivers/Apache/AssemblyInfo.cs | 1 +
.../E2E/CloudFetch/CloudFetchDownloaderTest.cs | 153 ++++++
glib/test/test-connection.rb | 10 +-
go/adbc/drivermgr/adbc_driver_manager.cc | 67 ++-
go/adbc/go.mod | 44 +-
go/adbc/go.sum | 116 ++--
go/adbc/sqldriver/driver.go | 18 +-
java/driver/flight-sql/pom.xml | 2 +-
java/pom.xml | 8 +-
rust/Cargo.lock | 600 +++++++++++----------
rust/driver/datafusion/Cargo.toml | 16 +-
44 files changed, 893 insertions(+), 515 deletions(-)