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 19fe280  Updated NuGet packages
19fe280 is described below

commit 19fe280369b1a82524404b41e55c0a2e5f2d3ee7
Author: Daniel Blankensteiner <[email protected]>
AuthorDate: Wed Aug 6 08:38:01 2025 +0200

    Updated NuGet packages
---
 CHANGELOG.md                                    |  4 ++++
 samples/Consuming/Consuming.csproj              |  2 +-
 samples/Extensions/Extensions.csproj            |  6 +++---
 samples/Producing/Producing.csproj              |  2 +-
 src/DotPulsar/ConsumerOptions.cs                |  2 +-
 src/DotPulsar/DotPulsar.csproj                  | 12 ++++++------
 tests/DotPulsar.Tests/Internal/ConsumerTests.cs |  2 +-
 7 files changed, 17 insertions(+), 13 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index b1e8501..4d05f72 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +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
 
 ## [4.3.1] - 2025-07-16
 
diff --git a/samples/Consuming/Consuming.csproj 
b/samples/Consuming/Consuming.csproj
index 212436e..3f8eac7 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.7" />
+    <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.8" />
   </ItemGroup>
 
   <ItemGroup>
diff --git a/samples/Extensions/Extensions.csproj 
b/samples/Extensions/Extensions.csproj
index 71ca6b4..118fb8a 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.7" />
-    <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.7" />
-    <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" 
Version="9.0.7" />
+    <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" />
   </ItemGroup>
 
   <ItemGroup>
diff --git a/samples/Producing/Producing.csproj 
b/samples/Producing/Producing.csproj
index f613dfa..7ec9f90 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.7" />
+    <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.8" />
   </ItemGroup>
 
   <ItemGroup>
diff --git a/src/DotPulsar/ConsumerOptions.cs b/src/DotPulsar/ConsumerOptions.cs
index a0ee1ae..88fdbd0 100644
--- a/src/DotPulsar/ConsumerOptions.cs
+++ b/src/DotPulsar/ConsumerOptions.cs
@@ -14,8 +14,8 @@
 
 namespace DotPulsar;
 
-using DotPulsar.Abstractions;
 using System.Text.RegularExpressions;
+using DotPulsar.Abstractions;
 
 /// <summary>
 /// The consumer building options.
diff --git a/src/DotPulsar/DotPulsar.csproj b/src/DotPulsar/DotPulsar.csproj
index d34523b..91b291f 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.7" />
+    <PackageReference Include="Microsoft.Extensions.ObjectPool" 
Version="9.0.8" />
     <PackageReference Include="protobuf-net" Version="3.2.56" />
   </ItemGroup>
  
   <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
-    <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.7" 
/>
+    <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.8" 
/>
     <PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
-    <PackageReference Include="System.Diagnostics.DiagnosticSource" 
Version="9.0.7" />
+    <PackageReference Include="System.Diagnostics.DiagnosticSource" 
Version="9.0.8" />
     <PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
   </ItemGroup>
 
   <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
-    <PackageReference Include="System.Diagnostics.DiagnosticSource" 
Version="9.0.7" />
+    <PackageReference Include="System.Diagnostics.DiagnosticSource" 
Version="9.0.8" />
     <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.7" />
+    <PackageReference Include="System.IO.Pipelines" Version="9.0.8" />
   </ItemGroup>
 
   <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
-    <PackageReference Include="System.IO.Pipelines" Version="9.0.7" />
+    <PackageReference Include="System.IO.Pipelines" Version="9.0.8" />
   </ItemGroup>
 
   <ItemGroup>
diff --git a/tests/DotPulsar.Tests/Internal/ConsumerTests.cs 
b/tests/DotPulsar.Tests/Internal/ConsumerTests.cs
index 425a07b..b617d5c 100644
--- a/tests/DotPulsar.Tests/Internal/ConsumerTests.cs
+++ b/tests/DotPulsar.Tests/Internal/ConsumerTests.cs
@@ -478,7 +478,7 @@ public sealed class ConsumerTests : IDisposable
 
         using var httpClient = CreateAdminClient();
         await using var pulsarClient = CreateClient();
-        await using var consumer = CreateConsumer(pulsarClient, topicName, 
subscription, Schema.ByteSequence, (uint)maxPrefetch);
+        await using var consumer = CreateConsumer(pulsarClient, topicName, 
subscription, Schema.ByteSequence, (uint) maxPrefetch);
         await using var producer = CreateProducer(pulsarClient, topicName, 
Schema.ByteSequence);
 
         await consumer.StateChangedTo(ConsumerState.Active, _cts.Token);

Reply via email to