This is an automated email from the ASF dual-hosted git repository.
blankensteiner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-dotpulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 97c2a81 Updated NuGet packages
97c2a81 is described below
commit 97c2a814633af1147c2d0d351d4b36bad2d7664a
Author: Daniel Blankensteiner <[email protected]>
AuthorDate: Thu Oct 16 10:22:01 2025 +0200
Updated NuGet packages
---
CHANGELOG.md | 9 ++++++---
benchmarks/Compression/Compression.csproj | 2 +-
samples/Consuming/Consuming.csproj | 2 +-
samples/Extensions/Extensions.csproj | 6 +++---
samples/Producing/Producing.csproj | 2 +-
src/DotPulsar/DotPulsar.csproj | 24 ++++++++++--------------
tests/DotPulsar.Tests/DotPulsar.Tests.csproj | 2 +-
7 files changed, 23 insertions(+), 24 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f9db8cd..0f24225 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,9 +8,12 @@ The format is based on [Keep a
Changelog](https://keepachangelog.com/en/1.1.0/)
### Changed
-- Replaced the protobuf-net (version 3.2.56) dependency with Google.Protobuf
(version 3.32.1)
-- System.Collections.Immutable (version 9.0.9) is now a dependency for .NET
Standard 2.0 and 2.1
-- Updated the System.IO.Pipelines dependency from version 8.0.0 to 9.0.9 for
.NET Standard 2.0 and 2.1
+- Replaced the protobuf-net (version 3.2.56) dependency with Google.Protobuf
(version 3.33.0)
+- System.Collections.Immutable (version 9.0.10) is now a dependency for .NET
Standard 2.0 and 2.1
+- Updated the Microsoft.Extensions.ObjectPool dependency from version 9.0.9 to
9.0.10
+- Updated the Microsoft.Bcl.AsyncInterfaces dependency from version 9.0.9 to
9.0.10 for .NET Standard 2.0
+- Updated the System.Diagnostics.DiagnosticSource dependency from version
9.0.9 to 9.0.10 for .NET Standard 2.0 and 2.1
+- Updated the System.IO.Pipelines dependency from version 9.0.9 to 9.0.10 for
.NET Standard 2.0 and 2.1 and .NET 8
### Removed
diff --git a/benchmarks/Compression/Compression.csproj
b/benchmarks/Compression/Compression.csproj
index 9c0169a..81d36a3 100644
--- a/benchmarks/Compression/Compression.csproj
+++ b/benchmarks/Compression/Compression.csproj
@@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.4" />
- <PackageReference Include="Google.Protobuf" Version="3.32.1" />
+ <PackageReference Include="Google.Protobuf" Version="3.33.0" />
<PackageReference Include="Grpc.Tools" Version="2.72.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers;
buildtransitive</IncludeAssets>
diff --git a/samples/Consuming/Consuming.csproj
b/samples/Consuming/Consuming.csproj
index 26f4438..06ab1bb 100644
--- a/samples/Consuming/Consuming.csproj
+++ b/samples/Consuming/Consuming.csproj
@@ -8,7 +8,7 @@
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
+ <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.10"
/>
</ItemGroup>
<ItemGroup>
diff --git a/samples/Extensions/Extensions.csproj
b/samples/Extensions/Extensions.csproj
index e32300e..77f3a39 100644
--- a/samples/Extensions/Extensions.csproj
+++ b/samples/Extensions/Extensions.csproj
@@ -8,9 +8,9 @@
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="Microsoft.Extensions.DependencyInjection"
Version="9.0.9" />
- <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
- <PackageReference Include="Microsoft.Extensions.Logging.Abstractions"
Version="9.0.9" />
+ <PackageReference Include="Microsoft.Extensions.DependencyInjection"
Version="9.0.10" />
+ <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.10"
/>
+ <PackageReference Include="Microsoft.Extensions.Logging.Abstractions"
Version="9.0.10" />
</ItemGroup>
<ItemGroup>
diff --git a/samples/Producing/Producing.csproj
b/samples/Producing/Producing.csproj
index c7d1b4d..b235cc1 100644
--- a/samples/Producing/Producing.csproj
+++ b/samples/Producing/Producing.csproj
@@ -8,7 +8,7 @@
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
+ <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.10"
/>
</ItemGroup>
<ItemGroup>
diff --git a/src/DotPulsar/DotPulsar.csproj b/src/DotPulsar/DotPulsar.csproj
index c778576..b39be7a 100644
--- a/src/DotPulsar/DotPulsar.csproj
+++ b/src/DotPulsar/DotPulsar.csproj
@@ -24,34 +24,30 @@
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="Google.Protobuf" Version="3.32.1" />
+ <PackageReference Include="Google.Protobuf" Version="3.33.0" />
<PackageReference Include="Grpc.Tools" Version="2.72.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers;
buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="Microsoft.Extensions.ObjectPool"
Version="9.0.9" />
+ <PackageReference Include="Microsoft.Extensions.ObjectPool"
Version="9.0.10" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
- <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.9"
/>
+ <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.10"
/>
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
- <PackageReference Include="System.Collections.Immutable" Version="9.0.9" />
- <PackageReference Include="System.Diagnostics.DiagnosticSource"
Version="9.0.9" />
- <PackageReference Include="System.IO.Pipelines" Version="9.0.9" />
+ <PackageReference Include="System.Collections.Immutable" Version="9.0.10"
/>
+ <PackageReference Include="System.Diagnostics.DiagnosticSource"
Version="9.0.10" />
+ <PackageReference Include="System.IO.Pipelines" Version="9.0.10" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
- <PackageReference Include="System.Collections.Immutable" Version="9.0.9" />
- <PackageReference Include="System.Diagnostics.DiagnosticSource"
Version="9.0.9" />
- <PackageReference Include="System.IO.Pipelines" Version="9.0.9" />
+ <PackageReference Include="System.Collections.Immutable" Version="9.0.10"
/>
+ <PackageReference Include="System.Diagnostics.DiagnosticSource"
Version="9.0.10" />
+ <PackageReference Include="System.IO.Pipelines" Version="9.0.10" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
- <PackageReference Include="System.IO.Pipelines" Version="9.0.9" />
- </ItemGroup>
-
- <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
- <PackageReference Include="System.IO.Pipelines" Version="9.0.9" />
+ <PackageReference Include="System.IO.Pipelines" Version="9.0.10" />
</ItemGroup>
<ItemGroup>
diff --git a/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
b/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
index 770a6a1..3ec77e5 100644
--- a/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
+++ b/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
@@ -15,7 +15,7 @@
</ItemGroup>
<ItemGroup>
- <PackageReference Include="Apache.Avro" Version="1.12.0" />
+ <PackageReference Include="Apache.Avro" Version="1.12.1" />
<PackageReference Include="AutoFixture.AutoNSubstitute" Version="4.18.1" />
<PackageReference Include="AutoFixture.Xunit2" Version="4.18.1" />
<PackageReference Include="coverlet.collector" Version="6.0.4">