Skip to content

Conversation

@projectorigin-renovate
Copy link
Contributor

@projectorigin-renovate projectorigin-renovate bot commented Aug 28, 2025

This PR contains the following updates:

Package Type Update Change
MassTransit (source) nuget patch 8.5.2 -> 8.5.5
MassTransit.RabbitMQ (source) nuget patch 8.5.2 -> 8.5.5
Microsoft.AspNetCore.Authentication.JwtBearer (source) nuget patch 9.0.8 -> 9.0.10
Microsoft.AspNetCore.TestHost (source) nuget patch 9.0.8 -> 9.0.10
Microsoft.Extensions.Diagnostics.Testing (source) nuget minor 9.8.0 -> 9.10.0
Microsoft.Extensions.Options.ConfigurationExtensions (source) nuget patch 9.0.8 -> 9.0.10
Microsoft.Identity.Web nuget patch 3.14.0 -> 3.14.1
Npgsql nuget patch 9.0.3 -> 9.0.4
Npgsql.OpenTelemetry nuget patch 9.0.3 -> 9.0.4
OpenTelemetry (source) nuget minor 1.12.0 -> 1.13.1
OpenTelemetry.Exporter.OpenTelemetryProtocol (source) nuget minor 1.12.0 -> 1.13.1
OpenTelemetry.Extensions.Hosting (source) nuget minor 1.12.0 -> 1.13.1
OpenTelemetry.Instrumentation.AspNetCore (source) nuget minor 1.12.0 -> 1.13.0
OpenTelemetry.Instrumentation.Http (source) nuget minor 1.12.0 -> 1.13.0
OpenTelemetry.Instrumentation.Runtime (source) nuget minor 1.12.0 -> 1.13.0
Swashbuckle.AspNetCore nuget patch 9.0.4 -> 9.0.6
Swashbuckle.AspNetCore.Annotations nuget patch 9.0.4 -> 9.0.6
Testcontainers.PostgreSql (source) nuget minor 4.6.0 -> 4.8.1
Testcontainers.RabbitMq (source) nuget minor 4.6.0 -> 4.8.1
xunit.runner.visualstudio nuget patch 3.1.4 -> 3.1.5

Release Notes

dotnet/aspnetcore (Microsoft.AspNetCore.Authentication.JwtBearer)

v9.0.10: .NET 9.0.10

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.9...v9.0.10

v9.0.9: .NET 9.0.9

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.8...v9.0.9

dotnet/extensions (Microsoft.Extensions.Diagnostics.Testing)

v9.10.0

What's Changed

New Contributors

Full Changelog: dotnet/extensions@v9.9.0...v9.10.0

v9.9.0

Highlights

AI
  • Abstractions for remote MCP servers; response/approval flow support via new experimental types
  • Function approvals via new experimental types (e.g., ApprovalRequiredAIFunction, user input/approval request & response content).
  • Reasoning text streaming for OpenAI Responses ChatClient streaming.
  • AIFunction split into a base class to improve extensibility.
  • IChatReducer moved to Microsoft.Extensions.AI.Abstractions.
  • Updated to OpenAI 2.4.0 and genai standard convention 1.37.
  • Coalescing logic now treats ChatMessage.Role changes as new messages.
  • GetResponseAsync<T> now reads only the last message (bug fix).
  • OpenTelemetry ChatClient/EmbeddingGenerator logs raw additional properties (no key mangling).
  • Fixed empty annotated text chunk handling in streaming with OpenAI Assistants.
Telemetry & Diagnostics
  • HTTP diagnostics log query string params with proper redaction (emitted on url.query).
  • server.address telemetry emits host only (per OpenTelemetry semantic conventions).
  • Heuristics added to detect well-known model hosts.
  • Resource monitoring can consider Environment.CpuUsage.

New Contributors

Full Changelog: dotnet/extensions@v9.8.0...v9.9.0

dotnet/runtime (Microsoft.Extensions.Options.ConfigurationExtensions)

v9.0.10: .NET 9.0.10

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.9...v9.0.10

v9.0.9: .NET 9.0.9

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.8...v9.0.9

AzureAD/microsoft-identity-web (Microsoft.Identity.Web)

v3.14.1

=======

Bug fix

  • Support client secrets with agent user identities. See #​3470 for details.
npgsql/npgsql (Npgsql)

v9.0.4

v9.0.4 contains several minor bug fixes.

Milestone issues

Full Changelog: npgsql/npgsql@v9.0.3...v9.0.4

open-telemetry/opentelemetry-dotnet (OpenTelemetry)

v1.13.1

Release details: 1.13.1

  • In version 1.13.0, the digital signature (.dll-keyless.sig) and
    certificate (.dll-keyless.pem) files were unintentionally omitted from the
    published NuGet packages.
  • This hotfix restores the Sigstore signing artifacts for all target frameworks
    (net462, netstandard2.0, netstandard2.1, net8.0, net9.0), ensuring
    the integrity of DLL verification using Sigstore cosign.

v1.13.0

Release details: 1.13.0

  • gRPC calls to export traces, logs, and metrics using OtlpExportProtocol.Grpc
    now set the TE=trailers HTTP request header to improve interoperability.
  • EventName is now exported by default as EventName instead of
    logrecord.event.name when specified through ILogger or the experimental
    log bridge API.
domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

v9.0.6

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.5...v9.0.6

v9.0.5

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.4...v9.0.5

testcontainers/testcontainers-dotnet (Testcontainers.PostgreSql)

v4.8.1

Compare Source

What's Changed
🐛 Bug Fixes

v4.8.0

Compare Source

What's Changed

Thank you to all the contributors 🙌.

In version 4.7.0, we noticed that the reuse hash could change depending on the order of dictionary values. This has been fixed to ensure that dictionary values are processed in a consistent order when generating the reuse hash. As a result, the reuse hash will likely change again with 4.8.0.

Wait strategies now default to the Running mode. This mode expects the container to remain running throughout startup. If the container exits unexpectedly, Testcontainers will throw a ContainerNotRunningException that includes the exit code and container logs.

The container startup callback now includes an additional overload that provides the actual container configuration. If you implement IContainerBuilder<TBuilderEntity, TContainerEntity>, you need to add the container configuration (e.g., IContainerConfiguration) as a third generic type constraint to IContainerBuilder.

IContainerBuilder.WithResourceMapping and IContainer.CopyAsync now include two new optional arguments: uid and gid. If you do not need to specify those, use named arguments for the existing parameters: fileMode or ct.

⚠️ Breaking Changes
🚀 Features
🐛 Bug Fixes
📖 Documentation
🧹 Housekeeping

v4.7.0

Compare Source

What's Changed

This release doesn't introduce breaking changes to the public API, but it isn't binary compatible due to necessary internal changes. Make sure to update all related packages (Testcontainers modules) to the same version. See more details here. Thanks to all contributors 👏.

⚠️ Breaking Changes
🚀 Features
🐛 Bug Fixes
📖 Documentation
🧹 Housekeeping
xunit/visualstudio.xunit (xunit.runner.visualstudio)

v3.1.5

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@projectorigin-renovate projectorigin-renovate bot enabled auto-merge (squash) August 28, 2025 10:21
@projectorigin-renovate projectorigin-renovate bot force-pushed the renovate/nuget branch 2 times, most recently from 9eda532 to 0742374 Compare September 9, 2025 12:38
@projectorigin-renovate projectorigin-renovate bot changed the title Update nuget to 4.7.0 Update nuget Sep 9, 2025
@projectorigin-renovate projectorigin-renovate bot force-pushed the renovate/nuget branch 6 times, most recently from 4126cd2 to 5aa2a53 Compare September 11, 2025 08:25
@projectorigin-renovate projectorigin-renovate bot force-pushed the renovate/nuget branch 4 times, most recently from f14497d to 2e097ed Compare October 1, 2025 08:26
@projectorigin-renovate projectorigin-renovate bot force-pushed the renovate/nuget branch 2 times, most recently from 3c39a6b to 57766f1 Compare October 6, 2025 08:26
@projectorigin-renovate projectorigin-renovate bot force-pushed the renovate/nuget branch 2 times, most recently from 52af949 to 38a563f Compare October 15, 2025 08:27
@projectorigin-renovate projectorigin-renovate bot force-pushed the renovate/nuget branch 2 times, most recently from 65fa83a to 1064350 Compare October 22, 2025 08:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant