Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
<PackageVersion Include="Grpc.Tools" Version="2.80.0" />

<!-- Service Clients & HTTP -->
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.7" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="10.0.7" />
Comment on lines +21 to +22
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The update to Microsoft.Extensions.Http.Polly (v10.0.7) appears inconsistent with the codebase's adoption of Polly v8 resilience pipelines (as seen in BaseServiceClient.cs). Microsoft.Extensions.Http.Polly is the legacy integration for Polly v7 'Policies'. For Polly v8, the official integration is Microsoft.Extensions.Http.Resilience. Additionally, since the current client implementations instantiate HttpClient directly rather than using IHttpClientFactory, these dependencies might be unused or should be leveraged via the factory pattern for better resource management and DNS handling.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TODO: @WomB0ComB0

<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.7" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="10.0.7" />
<PackageVersion Include="Polly" Version="8.6.6" />
<PackageVersion Include="Polly.Extensions.Http" Version="3.0.0" />
<PackageVersion Include="System.Text.Json" Version="9.0.14" />
Expand Down
Loading