Skip to content

Bump the other group with 16 updates#841

Closed
dependabot[bot] wants to merge 1 commit intov10.0-previewfrom
dependabot/nuget/dot-config/other-712c13de5d
Closed

Bump the other group with 16 updates#841
dependabot[bot] wants to merge 1 commit intov10.0-previewfrom
dependabot/nuget/dot-config/other-712c13de5d

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Updated Azure.Storage.Blobs from 12.26.0 to 12.27.0.

Release notes

Sourced from Azure.Storage.Blobs's releases.

12.27.0

12.27.0 (2026-01-08)

Features Added

  • Includes all features from 12.27.0-beta.1

12.27.0-beta.1

12.27.0-beta.1 (2026-01-20)

Features Added

  • This release contains bug fixes to improve quality.

Other Changes

  • Changed the default concurrency upload count from 5 to Math.Clamp(Environment.ProcessorCount * 2, 8, 32). This controls the maximum number of concurrent tasks that will be used during large uploads, and this change should result in higher throughput for these operations by default in most environments. This can be reverted by enabling "Azure.Storage.UseLegacyDefaultConcurrency" in the AppContext switch or "AZURE_STORAGE_USE_LEGACY_DEFAULT_CONCURRENCY" in the environment variable.

Commits viewable in compare view.

Updated csharpier from 1.2.5 to 1.2.6.

Release notes

Sourced from csharpier's releases.

1.2.6

What's Changed

[Bug]: XML with DOCTYPE results in "invalid xml" warning #​1809

CSharpier was not formatting xml that included a doctype and instead reporting that it was invalid xml.

<?xml version="1.0"?>
<!DOCTYPE staff SYSTEM "staff.dtd"[
    <!ENTITY ent1 "es">
]>
<staff></staff>

[Bug]: Initializing a span using stackalloc leads to different formatting compared to new #​1808

When initializing a spacn using stackalloc, it was not being formatting consistently with other code

// input & expected output
Span<int> metatable = new int[]
{
    00000000000000000000000001,
    00000000000000000000000002,
    00000000000000000000000003,
};

Span<int> metatable = stackalloc int[]
{
    00000000000000000000000001,
    00000000000000000000000002,
    00000000000000000000000003,
};

// 1.2.5
Span<int> metatable = new int[]
{
    00000000000000000000000001,
    00000000000000000000000002,
    00000000000000000000000003,
};

Span<int> metatable =
    stackalloc int[] {
        00000000000000000000000001,
        00000000000000000000000002,
        00000000000000000000000003,
    };

[Bug]: Comments in otherwise empty object pattern disappear when formatting #​1804

CSharpier was removing comments if they were the only content of an object pattern.

// input & expected output
var match = obj is {
    //Property: 123
 ... (truncated)

Commits viewable in [compare view](https://github.com/belav/csharpier/compare/1.2.5...1.2.6).
</details>

Updated [dotnet-coverage](https://github.com/microsoft/codecoverage) from 18.3.1 to 18.4.1.

<details>
<summary>Release notes</summary>

_Sourced from [dotnet-coverage's releases](https://github.com/microsoft/codecoverage/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/microsoft/codecoverage/commits).
</details>

Updated [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 7.2.0 to 7.2.1.

<details>
<summary>Release notes</summary>

_Sourced from [FluentAssertions's releases](https://github.com/fluentassertions/fluentassertions/releases)._

## 7.2.1

<!-- Release notes generated using configuration in .github/release.yml at support-7.0 -->

## What's Changed
### Fixes
* Prevent a crash while formatting a collection with nested empty collections by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3150


**Full Changelog**: https://github.com/fluentassertions/fluentassertions/compare/7.2.0...7.2.1

Commits viewable in [compare view](https://github.com/fluentassertions/fluentassertions/compare/7.2.0...7.2.1).
</details>

Updated [LeanCode.Kratos.Client](https://github.com/leancodepl/dotnet-kratos-client) from 1.2.0 to 25.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [LeanCode.Kratos.Client's releases](https://github.com/leancodepl/dotnet-kratos-client/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/leancodepl/dotnet-kratos-client/commits).
</details>

Updated [MassTransit](https://github.com/Massient/MassTransit) from 8.5.7 to 9.0.1.

<details>
<summary>Release notes</summary>

_Sourced from [MassTransit's releases](https://github.com/Massient/MassTransit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/Massient/MassTransit/commits).
</details>

Updated [OpenTelemetry](https://github.com/open-telemetry/opentelemetry-dotnet) from 1.14.0 to 1.15.0.

<details>
<summary>Release notes</summary>

_Sourced from [OpenTelemetry's releases](https://github.com/open-telemetry/opentelemetry-dotnet/releases)._

## 1.15.0

For highlights and announcements pertaining to this release see: [Release Notes > 1.15.0](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md#​1150).

The following changes are from the previous release [1.14.0](https://github.com/open-telemetry/opentelemetry-dotnet/releases/tag/core-1.14.0).

* NuGet: [OpenTelemetry v1.15.0](https://www.nuget.org/packages/OpenTelemetry/1.15.0)

  * Added support for the `OTEL_SDK_DISABLED` environment variable in TracerProvider,
    MeterProvider, and LoggerProvider. When `OTEL_SDK_DISABLED=true`,
    the SDK returns no-op implementations for all telemetry signals.
    The `OTEL_SDK_DISABLED` environment variable is only evaluated upon application
    startup, later changes have no effect.
    ([#​6568](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6568))
  
  * Added `LowMemory` temporality as an option in the OTLP metrics exporter.
    ([#​6648](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6648))
  
  * Added support for `Meter.TelemetrySchemaUrl` property.
    ([#​6714](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6714))
  
  * Improve performance and reduce memory consumption for metrics histograms.
    ([#​6715](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6715))
  
  * Decode `value` in OTEL_RESOURCE_ATTRIBUTES environment variable.
    ([#​6737](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6737))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.15.0/src/OpenTelemetry/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Api v1.15.0](https://www.nuget.org/packages/OpenTelemetry.Api/1.15.0)

  * Added a new overload for `TracerProvider.GetTracer` which accepts an optional
    `string? schemaUrl` parameter, allowing a schema URL to be set on the `Tracer`.
    ([#​6736](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6736))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.15.0/src/OpenTelemetry.Api/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Api.ProviderBuilderExtensions v1.15.0](https://www.nuget.org/packages/OpenTelemetry.Api.ProviderBuilderExtensions/1.15.0)

  No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.15.0/src/OpenTelemetry.Api.ProviderBuilderExtensions/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Exporter.Console v1.15.0](https://www.nuget.org/packages/OpenTelemetry.Exporter.Console/1.15.0)

  * Added support for `ActivitySource.TelemetrySchemaUrl` property.
    ([#​6713](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6713))
  
  * Added support for `Meter.TelemetrySchemaUrl` property.
    ([#​6714](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6714))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.15.0/src/OpenTelemetry.Exporter.Console/CHANGELOG.md) for details.
 ... (truncated)

## 1.15.0-beta.1

The following changes are from the previous release [1.14.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet/releases/tag/coreunstable-1.14.0-beta.1).

* NuGet: [OpenTelemetry.Exporter.Prometheus.AspNetCore v1.15.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Exporter.Prometheus.AspNetCore/1.15.0-beta.1)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​6841](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6841))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/coreunstable-1.15.0-beta.1/src/OpenTelemetry.Exporter.Prometheus.AspNetCore/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Exporter.Prometheus.HttpListener v1.15.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Exporter.Prometheus.HttpListener/1.15.0-beta.1)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​6841](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6841))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/coreunstable-1.15.0-beta.1/src/OpenTelemetry.Exporter.Prometheus.HttpListener/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Shims.OpenTracing v1.15.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Shims.OpenTracing/1.15.0-beta.1)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​6841](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6841))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/coreunstable-1.15.0-beta.1/src/OpenTelemetry.Shims.OpenTracing/CHANGELOG.md) for details.



Commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-dotnet/compare/core-1.14.0...core-1.15.0).
</details>

Updated [OpenTelemetry.Extensions.Hosting](https://github.com/open-telemetry/opentelemetry-dotnet) from 1.14.0 to 1.15.0.

<details>
<summary>Release notes</summary>

_Sourced from [OpenTelemetry.Extensions.Hosting's releases](https://github.com/open-telemetry/opentelemetry-dotnet/releases)._

## 1.15.0

For highlights and announcements pertaining to this release see: [Release Notes > 1.15.0](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/RELEASENOTES.md#​1150).

The following changes are from the previous release [1.14.0](https://github.com/open-telemetry/opentelemetry-dotnet/releases/tag/core-1.14.0).

* NuGet: [OpenTelemetry v1.15.0](https://www.nuget.org/packages/OpenTelemetry/1.15.0)

  * Added support for the `OTEL_SDK_DISABLED` environment variable in TracerProvider,
    MeterProvider, and LoggerProvider. When `OTEL_SDK_DISABLED=true`,
    the SDK returns no-op implementations for all telemetry signals.
    The `OTEL_SDK_DISABLED` environment variable is only evaluated upon application
    startup, later changes have no effect.
    ([#​6568](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6568))
  
  * Added `LowMemory` temporality as an option in the OTLP metrics exporter.
    ([#​6648](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6648))
  
  * Added support for `Meter.TelemetrySchemaUrl` property.
    ([#​6714](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6714))
  
  * Improve performance and reduce memory consumption for metrics histograms.
    ([#​6715](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6715))
  
  * Decode `value` in OTEL_RESOURCE_ATTRIBUTES environment variable.
    ([#​6737](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6737))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.15.0/src/OpenTelemetry/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Api v1.15.0](https://www.nuget.org/packages/OpenTelemetry.Api/1.15.0)

  * Added a new overload for `TracerProvider.GetTracer` which accepts an optional
    `string? schemaUrl` parameter, allowing a schema URL to be set on the `Tracer`.
    ([#​6736](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6736))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.15.0/src/OpenTelemetry.Api/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Api.ProviderBuilderExtensions v1.15.0](https://www.nuget.org/packages/OpenTelemetry.Api.ProviderBuilderExtensions/1.15.0)

  No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.15.0/src/OpenTelemetry.Api.ProviderBuilderExtensions/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Exporter.Console v1.15.0](https://www.nuget.org/packages/OpenTelemetry.Exporter.Console/1.15.0)

  * Added support for `ActivitySource.TelemetrySchemaUrl` property.
    ([#​6713](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6713))
  
  * Added support for `Meter.TelemetrySchemaUrl` property.
    ([#​6714](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6714))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.15.0/src/OpenTelemetry.Exporter.Console/CHANGELOG.md) for details.
 ... (truncated)

## 1.15.0-beta.1

The following changes are from the previous release [1.14.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet/releases/tag/coreunstable-1.14.0-beta.1).

* NuGet: [OpenTelemetry.Exporter.Prometheus.AspNetCore v1.15.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Exporter.Prometheus.AspNetCore/1.15.0-beta.1)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​6841](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6841))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/coreunstable-1.15.0-beta.1/src/OpenTelemetry.Exporter.Prometheus.AspNetCore/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Exporter.Prometheus.HttpListener v1.15.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Exporter.Prometheus.HttpListener/1.15.0-beta.1)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​6841](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6841))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/coreunstable-1.15.0-beta.1/src/OpenTelemetry.Exporter.Prometheus.HttpListener/CHANGELOG.md) for details.

* NuGet: [OpenTelemetry.Shims.OpenTracing v1.15.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Shims.OpenTracing/1.15.0-beta.1)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​6841](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6841))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet/blob/coreunstable-1.15.0-beta.1/src/OpenTelemetry.Shims.OpenTracing/CHANGELOG.md) for details.



Commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-dotnet/compare/core-1.14.0...core-1.15.0).
</details>

Updated [OpenTelemetry.Instrumentation.AspNetCore](https://github.com/open-telemetry/opentelemetry-dotnet-contrib) from 1.14.0 to 1.15.0.

<details>
<summary>Release notes</summary>

_Sourced from [OpenTelemetry.Instrumentation.AspNetCore's releases](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/releases)._

## 1.15.0

* NuGet: [OpenTelemetry.Exporter.OneCollector v1.15.0](https://www.nuget.org/packages/OpenTelemetry.Exporter.OneCollector/1.15.0)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​3721](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3721))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Exporter.OneCollector-1.15.0/src/OpenTelemetry.Exporter.OneCollector/CHANGELOG.md) for details.


## 1.15.0-rc.1

* NuGet: [OpenTelemetry.Instrumentation.SqlClient v1.15.0-rc.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.15.0-rc.1)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​3721](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3721))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.SqlClient-1.15.0-rc.1/src/OpenTelemetry.Instrumentation.SqlClient/CHANGELOG.md) for details.


## 1.15.0-beta.2

* NuGet: [OpenTelemetry.Resources.Host v1.15.0-beta.2](https://www.nuget.org/packages/OpenTelemetry.Resources.Host/1.15.0-beta.2)

  * **Breaking Change:** Fixed `host.arch` attribute to return `amd64` instead of
    `x64` for X64 architecture to comply with OpenTelemetry Semantic Conventions.
    ([#​3811](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3811))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Resources.Host-1.15.0-beta.2/src/OpenTelemetry.Resources.Host/CHANGELOG.md) for details.


## 1.15.0-beta.1

* NuGet: [OpenTelemetry.Extensions.Enrichment v1.15.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Extensions.Enrichment/1.15.0-beta.1)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​3721](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3721))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Extensions.Enrichment-1.15.0-beta.1/src/OpenTelemetry.Extensions.Enrichment/CHANGELOG.md) for details.


## 1.15.0-alpha.1

* NuGet: [OpenTelemetry.Instrumentation.EventCounters v1.15.0-alpha.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.EventCounters/1.15.0-alpha.1)

  * Updated OpenTelemetry core component version(s) to `1.15.0`.
    ([#​3721](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3721))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.EventCounters-1.15.0-alpha.1/src/OpenTelemetry.Instrumentation.EventCounters/CHANGELOG.md) for details.


## 1.14.2

* NuGet: [OpenTelemetry.Extensions.AWS v1.14.2](https://www.nuget.org/packages/OpenTelemetry.Extensions.AWS/1.14.2)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.14.2/src/OpenTelemetry.Extensions.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWS v1.14.2](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWS/1.14.2)

  * Update minimal supported version of `AWSSDK.Core` to `4.0.3.3`.
    Older versions are affected by [CVE-2026-22611](https://github.com/advisories/GHSA-9cvc-h2w8-phrp).
    ([#​3683](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3683))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.14.2/src/OpenTelemetry.Instrumentation.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWSLambda v1.14.2](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda/1.14.2)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.14.2/src/OpenTelemetry.Instrumentation.AWSLambda/CHANGELOG.md) for details.


## 1.14.1

* NuGet: [OpenTelemetry.Extensions.AWS v1.14.1](https://www.nuget.org/packages/OpenTelemetry.Extensions.AWS/1.14.1)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.14.1/src/OpenTelemetry.Extensions.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWS v1.14.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWS/1.14.1)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.14.1/src/OpenTelemetry.Instrumentation.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWSLambda v1.14.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda/1.14.1)

  * Fix issue when using ADOT auto-instrumentation which includes a version of
    OpenTelemetry.Instrumentation.AWSLambda in the Lambda layer. In this scenario
    nothing is forcing the NuGet resolution to include the updated version of
    Amazon.Lambda.Core that has the [reworked logic](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3410)
    for determining the trace id.
    ([#​3629](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3629))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.14.1/src/OpenTelemetry.Instrumentation.AWSLambda/CHANGELOG.md) for details.


Commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/compare/Exporter.Geneva-1.14.0...Exporter.OneCollector-1.15.0).
</details>

Updated [Serilog](https://github.com/serilog/serilog) from 4.3.0 to 4.3.1.

<details>
<summary>Release notes</summary>

_Sourced from [Serilog's releases](https://github.com/serilog/serilog/releases)._

## 4.3.1

## What's Changed
* Remove SourceLink by @​SimonCropp in https://github.com/serilog/serilog/pull/2183
* Handle Exception.ToString failures in text formatter by @​krisbiradar in https://github.com/serilog/serilog/pull/2197
* Remove char[] allocation by @​karpinsn in https://github.com/serilog/serilog/pull/2198
* Remove backpressure from XMLDoc by @​timothycoleman in https://github.com/serilog/serilog/pull/2203
* Don't enable XDOC for tests by @​nblumhardt in https://github.com/serilog/serilog/pull/2205
* Target and test on net10 by @​SimonCropp in https://github.com/serilog/serilog/pull/2206
* Fix trimming error when Serilog is a transitive dependency by @​Numpsy in https://github.com/serilog/serilog/pull/2214
* Inline TraceId and SpanId JSON string formatting by @​SimonCropp in https://github.com/serilog/serilog/pull/2215

## New Contributors
* @​krisbiradar made their first contribution in https://github.com/serilog/serilog/pull/2197
* @​karpinsn made their first contribution in https://github.com/serilog/serilog/pull/2198
* @​timothycoleman made their first contribution in https://github.com/serilog/serilog/pull/2203
* @​Numpsy made their first contribution in https://github.com/serilog/serilog/pull/2214

**Full Changelog**: https://github.com/serilog/serilog/compare/v4.3.0...v4.3.1

Commits viewable in [compare view](https://github.com/serilog/serilog/compare/v4.3.0...v4.3.1).
</details>

Updated [Swashbuckle.AspNetCore.ReDoc](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) from 10.1.0 to 10.1.4.

<details>
<summary>Release notes</summary>

_Sourced from [Swashbuckle.AspNetCore.ReDoc's releases](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)._

## 10.1.4

## What's Changed

* Bump swagger-ui-dist from 5.31.0 to 5.31.1 in /src/Swashbuckle.AspNetCore.SwaggerUI by @​dependabot in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3792
* Return null on example, as it was with OpenApiNull before by @​jgarciadelanoceda in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3793

**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.3...v10.1.4


## 10.1.3

## What's Changed

* Fix null examples being represented as the string `"null"` by @​jgarciadelanoceda in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3788

**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.2...v10.1.3


## 10.1.2

## What's Changed

* Fix browser caching behaviour by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3772
* Fix document URL serialization by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3773

**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.1...v10.1.2


## 10.1.1

## What's Changed

* Add cache headers to document URLs endpoint by @​Copilot and @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3766

## New Contributors

* @​Copilot made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3766

**Full Changelog**: 

https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.0...v10.1.1


Commits viewable in [compare view](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.0...v10.1.4).
</details>

Updated [Swashbuckle.AspNetCore.SwaggerUI](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) from 10.1.0 to 10.1.4.

<details>
<summary>Release notes</summary>

_Sourced from [Swashbuckle.AspNetCore.SwaggerUI's releases](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)._

## 10.1.4

## What's Changed

* Bump swagger-ui-dist from 5.31.0 to 5.31.1 in /src/Swashbuckle.AspNetCore.SwaggerUI by @​dependabot in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3792
* Return null on example, as it was with OpenApiNull before by @​jgarciadelanoceda in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3793

**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.3...v10.1.4


## 10.1.3

## What's Changed

* Fix null examples being represented as the string `"null"` by @​jgarciadelanoceda in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3788

**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.2...v10.1.3


## 10.1.2

## What's Changed

* Fix browser caching behaviour by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3772
* Fix document URL serialization by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3773

**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.1...v10.1.2


## 10.1.1

## What's Changed

* Add cache headers to document URLs endpoint by @​Copilot and @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3766

## New Contributors

* @​Copilot made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3766

**Full Changelog**: 

https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.0...v10.1.1


Commits viewable in [compare view](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.0...v10.1.4).
</details>

Updated [xunit.analyzers](https://github.com/xunit/xunit.analyzers) from 1.26.0 to 1.27.0.

<details>
<summary>Release notes</summary>

_Sourced from [xunit.analyzers's releases](https://github.com/xunit/xunit.analyzers/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/xunit/xunit.analyzers/commits).
</details>

Updated [xunit.v3.assert](https://github.com/xunit/xunit) from 3.2.1 to 3.2.2.

<details>
<summary>Release notes</summary>

_Sourced from [xunit.v3.assert's releases](https://github.com/xunit/xunit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/xunit/xunit/commits).
</details>

Updated [xunit.v3.extensibility.core](https://github.com/xunit/xunit) from 3.2.1 to 3.2.2.

<details>
<summary>Release notes</summary>

_Sourced from [xunit.v3.extensibility.core's releases](https://github.com/xunit/xunit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/xunit/xunit/commits).
</details>

Updated xunit.v3.mtp-v2 from 3.2.1 to 3.2.2.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps Azure.Storage.Blobs from 12.26.0 to 12.27.0
Bumps csharpier from 1.2.5 to 1.2.6
Bumps dotnet-coverage from 18.3.1 to 18.4.1
Bumps FluentAssertions from 7.2.0 to 7.2.1
Bumps LeanCode.Kratos.Client from 1.2.0 to 25.4.0
Bumps MassTransit from 8.5.7 to 9.0.1
Bumps OpenTelemetry from 1.14.0 to 1.15.0
Bumps OpenTelemetry.Extensions.Hosting from 1.14.0 to 1.15.0
Bumps OpenTelemetry.Instrumentation.AspNetCore from 1.14.0 to 1.15.0
Bumps Serilog from 4.3.0 to 4.3.1
Bumps Swashbuckle.AspNetCore.ReDoc from 10.1.0 to 10.1.4
Bumps Swashbuckle.AspNetCore.SwaggerUI from 10.1.0 to 10.1.4
Bumps xunit.analyzers from 1.26.0 to 1.27.0
Bumps xunit.v3.assert from 3.2.1 to 3.2.2
Bumps xunit.v3.extensibility.core from 3.2.1 to 3.2.2
Bumps xunit.v3.mtp-v2 from 3.2.1 to 3.2.2

---
updated-dependencies:
- dependency-name: Azure.Storage.Blobs
  dependency-version: 12.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: csharpier
  dependency-version: 1.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: dotnet-coverage
  dependency-version: 18.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: FluentAssertions
  dependency-version: 7.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: LeanCode.Kratos.Client
  dependency-version: 25.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other
- dependency-name: MassTransit
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other
- dependency-name: OpenTelemetry
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: OpenTelemetry.Extensions.Hosting
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: OpenTelemetry.Instrumentation.AspNetCore
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: Serilog
  dependency-version: 4.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: Swashbuckle.AspNetCore.ReDoc
  dependency-version: 10.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: Swashbuckle.AspNetCore.SwaggerUI
  dependency-version: 10.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: xunit.analyzers
  dependency-version: 1.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: xunit.v3.mtp-v2
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: xunit.v3.assert
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: xunit.v3.extensibility.core
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Feb 23, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 2, 2026

Superseded by #845.

@dependabot dependabot bot closed this Mar 2, 2026
@dependabot dependabot bot deleted the dependabot/nuget/dot-config/other-712c13de5d branch March 2, 2026 18:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants