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 8bf258f  Updated NuGet packages
8bf258f is described below

commit 8bf258f54c98a5ae6b9dab225b741b4f590f38a0
Author: Daniel Blankensteiner <[email protected]>
AuthorDate: Wed Sep 10 09:10:18 2025 +0200

    Updated NuGet packages
---
 CHANGELOG.md                                 |  8 ++++----
 samples/Consuming/Consuming.csproj           |  2 +-
 samples/Extensions/Extensions.csproj         |  6 +++---
 samples/Producing/Producing.csproj           |  2 +-
 src/DotPulsar/DotPulsar.csproj               | 12 ++++++------
 tests/DotPulsar.Tests/DotPulsar.Tests.csproj |  2 +-
 6 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4d05f72..a6580e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,10 +9,10 @@ The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.1.0/)
 ### Changed
 
 - Updated the protobuf-net dependency from version 3.2.52 to 3.2.56
-- Updated the Microsoft.Extensions.ObjectPool dependency from version 9.0.7 to 
9.0.8
-- Updated the Microsoft.Bcl.AsyncInterfaces dependency from version 9.0.7 to 
9.0.8 for .NET Standard 2.0
-- Updated the System.Diagnostics.DiagnosticSource dependency from version 
9.0.7 to 9.0.8 for .NET Standard 2.0 and 2.1
-- Updated the System.IO.Pipelines dependency from version 9.0.7 to 9.0.8 for 
.NET 8 and 9
+- Updated the Microsoft.Extensions.ObjectPool dependency from version 9.0.7 to 
9.0.9
+- Updated the Microsoft.Bcl.AsyncInterfaces dependency from version 9.0.7 to 
9.0.9 for .NET Standard 2.0
+- Updated the System.Diagnostics.DiagnosticSource dependency from version 
9.0.7 to 9.0.9 for .NET Standard 2.0 and 2.1
+- Updated the System.IO.Pipelines dependency from version 9.0.7 to 9.0.9 for 
.NET 8 and 9
 
 ## [4.3.1] - 2025-07-16
 
diff --git a/samples/Consuming/Consuming.csproj 
b/samples/Consuming/Consuming.csproj
index 3f8eac7..26f4438 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.8" />
+    <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
   </ItemGroup>
 
   <ItemGroup>
diff --git a/samples/Extensions/Extensions.csproj 
b/samples/Extensions/Extensions.csproj
index 118fb8a..e32300e 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.8" />
-    <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.8" />
-    <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" 
Version="9.0.8" />
+    <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" />
   </ItemGroup>
 
   <ItemGroup>
diff --git a/samples/Producing/Producing.csproj 
b/samples/Producing/Producing.csproj
index 7ec9f90..c7d1b4d 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.8" />
+    <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
   </ItemGroup>
 
   <ItemGroup>
diff --git a/src/DotPulsar/DotPulsar.csproj b/src/DotPulsar/DotPulsar.csproj
index 91b291f..0b47431 100644
--- a/src/DotPulsar/DotPulsar.csproj
+++ b/src/DotPulsar/DotPulsar.csproj
@@ -25,19 +25,19 @@
  
   <ItemGroup>
     <PackageReference Include="HashDepot" Version="2.0.3" />
-    <PackageReference Include="Microsoft.Extensions.ObjectPool" 
Version="9.0.8" />
+    <PackageReference Include="Microsoft.Extensions.ObjectPool" 
Version="9.0.9" />
     <PackageReference Include="protobuf-net" Version="3.2.56" />
   </ItemGroup>
  
   <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
-    <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.8" 
/>
+    <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.9" 
/>
     <PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
-    <PackageReference Include="System.Diagnostics.DiagnosticSource" 
Version="9.0.8" />
+    <PackageReference Include="System.Diagnostics.DiagnosticSource" 
Version="9.0.9" />
     <PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
   </ItemGroup>
 
   <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
-    <PackageReference Include="System.Diagnostics.DiagnosticSource" 
Version="9.0.8" />
+    <PackageReference Include="System.Diagnostics.DiagnosticSource" 
Version="9.0.9" />
     <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.8" />
+    <PackageReference Include="System.IO.Pipelines" Version="9.0.9" />
   </ItemGroup>
 
   <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
-    <PackageReference Include="System.IO.Pipelines" Version="9.0.8" />
+    <PackageReference Include="System.IO.Pipelines" Version="9.0.9" />
   </ItemGroup>
 
   <ItemGroup>
diff --git a/tests/DotPulsar.Tests/DotPulsar.Tests.csproj 
b/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
index acd536b..0a16ced 100644
--- a/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
+++ b/tests/DotPulsar.Tests/DotPulsar.Tests.csproj
@@ -27,7 +27,7 @@
     <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.6.0" />
+    <PackageReference Include="Testcontainers.Pulsar" Version="4.7.0" />
     <PackageReference Include="ToxiproxyNetCore" Version="1.0.40" />
     <PackageReference Include="xunit" Version="2.9.3" />
     <PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">

Reply via email to