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 3f36e07 Updated NuGet packages
3f36e07 is described below
commit 3f36e078431ba89ea41c5de62aa03772adfcc44f
Author: Daniel Blankensteiner <[email protected]>
AuthorDate: Wed Jun 11 08:55:06 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 | 14 +++++++-------
tests/DotPulsar.Tests/DotPulsar.Tests.csproj | 4 ++--
7 files changed, 24 insertions(+), 15 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f474188..2a63f62 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this
file.
The format is based on [Keep a
Changelog](https://keepachangelog.com/en/1.1.0/) and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [Unreleased]
+
+### Changed
+
+- Updated the Microsoft.Extensions.ObjectPool dependency from version 9.0.5 to
9.0.6
+- Updated the Microsoft.Bcl.AsyncInterfaces dependency from version 9.0.5 to
9.0.6 for .NET Standard 2.0
+- Updated the System.Diagnostics.DiagnosticSource dependency from version
9.0.5 to 9.0.6 for .NET Standard 2.0 and 2.1
+- Updated the System.IO.Pipelines dependency from version 9.0.5 to 9.0.6 for
.NET 8 and 9
+
## [4.3.0] - 2025-06-10
### Added
diff --git a/benchmarks/Compression/Compression.csproj
b/benchmarks/Compression/Compression.csproj
index 3202ee4..7893134 100644
--- a/benchmarks/Compression/Compression.csproj
+++ b/benchmarks/Compression/Compression.csproj
@@ -8,7 +8,7 @@
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="BenchmarkDotNet" Version="0.15.0" />
+ <PackageReference Include="BenchmarkDotNet" Version="0.15.1" />
<PackageReference Include="Google.Protobuf" Version="3.31.1" />
<PackageReference Include="Grpc.Tools" Version="2.72.0">
<PrivateAssets>all</PrivateAssets>
diff --git a/samples/Consuming/Consuming.csproj
b/samples/Consuming/Consuming.csproj
index e2b2b4b..231f7c0 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.5" />
+ <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.6" />
</ItemGroup>
<ItemGroup>
diff --git a/samples/Extensions/Extensions.csproj
b/samples/Extensions/Extensions.csproj
index 18d2f75..f3834f9 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.5" />
- <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.5" />
- <PackageReference Include="Microsoft.Extensions.Logging.Abstractions"
Version="9.0.5" />
+ <PackageReference Include="Microsoft.Extensions.DependencyInjection"
Version="9.0.6" />
+ <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.6" />
+ <PackageReference Include="Microsoft.Extensions.Logging.Abstractions"
Version="9.0.6" />
</ItemGroup>
<ItemGroup>
diff --git a/samples/Producing/Producing.csproj
b/samples/Producing/Producing.csproj
index cf5ed4c..02bb705 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.5" />
+ <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.6" />
</ItemGroup>
<ItemGroup>
diff --git a/src/DotPulsar/DotPulsar.csproj b/src/DotPulsar/DotPulsar.csproj
index c7e5650..4752e76 100644
--- a/src/DotPulsar/DotPulsar.csproj
+++ b/src/DotPulsar/DotPulsar.csproj
@@ -1,4 +1,4 @@
-<Project Sdk="Microsoft.NET.Sdk">
+<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
@@ -25,19 +25,19 @@
<ItemGroup>
<PackageReference Include="HashDepot" Version="2.0.3" />
- <PackageReference Include="Microsoft.Extensions.ObjectPool"
Version="9.0.5" />
+ <PackageReference Include="Microsoft.Extensions.ObjectPool"
Version="9.0.6" />
<PackageReference Include="protobuf-net" Version="3.2.52" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
- <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.5"
/>
+ <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.6"
/>
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
- <PackageReference Include="System.Diagnostics.DiagnosticSource"
Version="9.0.5" />
+ <PackageReference Include="System.Diagnostics.DiagnosticSource"
Version="9.0.6" />
<PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
- <PackageReference Include="System.Diagnostics.DiagnosticSource"
Version="9.0.5" />
+ <PackageReference Include="System.Diagnostics.DiagnosticSource"
Version="9.0.6" />
<PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
</ItemGroup>
@@ -50,11 +50,11 @@
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
- <PackageReference Include="System.IO.Pipelines" Version="9.0.5" />
+ <PackageReference Include="System.IO.Pipelines" Version="9.0.6" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
- <PackageReference Include="System.IO.Pipelines" Version="9.0.5" />
+ <PackageReference Include="System.IO.Pipelines" Version="9.0.6" />
</ItemGroup>
<ItemGroup>
diff --git a/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
b/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
index e970c58..dbd443d 100644
--- a/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
+++ b/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
@@ -27,10 +27,10 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="Shouldly" Version="4.3.0" />
- <PackageReference Include="Testcontainers.Pulsar" Version="4.4.0" />
+ <PackageReference Include="Testcontainers.Pulsar" Version="4.5.0" />
<PackageReference Include="ToxiproxyNetCore" Version="1.0.40" />
<PackageReference Include="xunit" Version="2.9.3" />
- <PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
+ <PackageReference Include="xunit.runner.visualstudio" Version="3.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers;
buildtransitive</IncludeAssets>
</PackageReference>