This is an automated email from the ASF dual-hosted git repository.
curth pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 3ca73ca8d chore(csharp): bump DuckDB.NET.Bindings.Full from 1.2.0 to
1.2.1 in /csharp (#2600)
3ca73ca8d is described below
commit 3ca73ca8da3b79913b81ec3077ca498b811b7453
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Mar 10 20:26:45 2025 -0700
chore(csharp): bump DuckDB.NET.Bindings.Full from 1.2.0 to 1.2.1 in /csharp
(#2600)
Bumps [DuckDB.NET.Bindings.Full](https://github.com/Giorgi/DuckDB.NET)
from 1.2.0 to 1.2.1.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/cfaaa845afe48528423d08f3d59f296e43c33c7e"><code>cfaaa84</code></a>
Remove next-version</li>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/3e351e0fc58f8318268c5255fd4afac0ca66e337"><code>3e351e0</code></a>
Update to DuckDB 1.2.1</li>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/1aa937a388d9540f86263c6a1d71665a9a5be0d5"><code>1aa937a</code></a>
Update Directory.Build.props</li>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/ae9602b745867f642357da651caceb78bc81e1a3"><code>ae9602b</code></a>
Migrate to slnx</li>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/547e80111029c2f4cb3432983246f3256726d665"><code>547e801</code></a>
Expose query progress on DuckDBConnection</li>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/12dbc9cefd05bab6fc5ee0dc5cc4225901642e69"><code>12dbc9c</code></a>
Set next version to 1.2.1</li>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/ea89acfaa111df6861034bf0176ec2eb315590cd"><code>ea89acf</code></a>
Direct cast instead of string allocation.</li>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/f5ba759859602cc053940afa1984ce73840985e9"><code>f5ba759</code></a>
Fix return value, formatting</li>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/e8b437341c291fd10d8c82377167368135965229"><code>e8b4373</code></a>
Fix parameter binding in statements with cast. Fixes <a
href="https://redirect.github.com/Giorgi/DuckDB.NET/issues/245">#245</a></li>
<li><a
href="https://github.com/Giorgi/DuckDB.NET/commit/96c6c9eaa2a428a989af409d7b465e460cbbbb4c"><code>96c6c9e</code></a>
Merge pull request <a
href="https://redirect.github.com/Giorgi/DuckDB.NET/issues/246">#246</a>
from ledjon-behluli/test-explicit-sync-cancellation</li>
<li>Additional commits viewable in <a
href="https://github.com/Giorgi/DuckDB.NET/compare/1.2.0...1.2.1">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
csharp/Benchmarks/Benchmarks.csproj | 2 +-
csharp/test/Apache.Arrow.Adbc.Tests/Apache.Arrow.Adbc.Tests.csproj | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/csharp/Benchmarks/Benchmarks.csproj
b/csharp/Benchmarks/Benchmarks.csproj
index 9782bf722..3a2ab423c 100644
--- a/csharp/Benchmarks/Benchmarks.csproj
+++ b/csharp/Benchmarks/Benchmarks.csproj
@@ -10,7 +10,7 @@
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
- <PackageReference Include="DuckDB.NET.Bindings.Full" Version="1.2.0"
GeneratePathProperty="true" />
+ <PackageReference Include="DuckDB.NET.Bindings.Full" Version="1.2.1"
GeneratePathProperty="true" />
</ItemGroup>
<ItemGroup>
diff --git a/csharp/test/Apache.Arrow.Adbc.Tests/Apache.Arrow.Adbc.Tests.csproj
b/csharp/test/Apache.Arrow.Adbc.Tests/Apache.Arrow.Adbc.Tests.csproj
index e0637dc8b..014406c79 100644
--- a/csharp/test/Apache.Arrow.Adbc.Tests/Apache.Arrow.Adbc.Tests.csproj
+++ b/csharp/test/Apache.Arrow.Adbc.Tests/Apache.Arrow.Adbc.Tests.csproj
@@ -17,7 +17,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles;
analyzers</IncludeAssets>
</PackageReference>
- <PackageReference Include="DuckDB.NET.Bindings.Full" Version="1.2.0"
GeneratePathProperty="true" />
+ <PackageReference Include="DuckDB.NET.Bindings.Full" Version="1.2.1"
GeneratePathProperty="true" />
</ItemGroup>
<ItemGroup>