Skip to content

[nuget][SUI_Matcher]- Bump the sui-package-updates group with 27 updates - #378

Merged
jtaylor100 merged 1 commit into
mainfrom
dependabot/nuget/dot-config/sui-package-updates-b26de69233
Jul 29, 2026
Merged

[nuget][SUI_Matcher]- Bump the sui-package-updates group with 27 updates#378
jtaylor100 merged 1 commit into
mainfrom
dependabot/nuget/dot-config/sui-package-updates-b26de69233

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 28, 2026

Copy link
Copy Markdown
Contributor

Updated Asp.Versioning.Mvc.ApiExplorer from 8.1.0 to 10.0.0.

Release notes

Sourced from Asp.Versioning.Mvc.ApiExplorer's releases.

10.0.0

The official release for 10.0 is here! In addition to the changes in the preview releases, there are a few additional changes.

Features

All Platforms

  • ApiVersionAttribute, MapToVersionAttribute, and AdvertiseApiVersionsAttribute all now have a constructor which can support the date format without being a string; for example, [ApiVersion(2026, 04, 01)]

ASP.NET Core OpenAPI

  • XmlCommentsTransformer is now resolved via DI, which allows it to be re-registered with a user-defined file path
  • Public types and members are now virtual for developer extensibility

Fixes

ASP.NET Core OpenAPI

  • Fix comparison between entry and calling assembly (#​1175)
  • Ensure keyed services are registered with a lowercase key (#​1176)
  • Fix nested key service resolution (#​1177)
  • Implement IKeyedServiceProvider when injecting ApiVersion (#​1178)

Breaking Changes

ASP.NET Core OpenAPI

  • OpenAPI documents use "enum": ["1.0"] instead of "default": "1.0"
    • This has a similar effect, but removes the free-form input when the value is bounded
    • When optional, the enum value can still be deleted/removed
    • Some UIs, such as Scalar, still provide a way to provide an enumerated value that isn't in the list

Release Notes

  • Asp.Versioning.OData is being released as rc.1 because Microsoft.AspNetCore.OData is only at preview.2
  • Asp.Versioning.OpenAPI is being released as rc.1 pending the outcome of dotnet/aspnetcore#​66408
    • If the package can be released without requiring the explicit use of Reflection, that is the preference
    • No additional changes are planned unless bugs are reported

Feedback

Thanks to the contributors on this release whether it was code contributions or test driving the previews. Special thanks to @​sander1095 for being a strong advocate and helping to bring even more visibility to the project.

10.0.0-preview.2

This release is a quick iteration which contains minor fixes based on feedback from Preview 1.

Trying out previews is always a big ask. The OpenAPI extensions are net new, so I really am looking for some community support to flush out any edge cases I may have been missed before releasing officially. All other libraries are stable.

Aside from whatever the community may report, there are only two final things I'm considering for the final release:

  1. gRPC versioning support, which I'm waiting on grpc/grpc-dotnet#​2690 and grpc/grpc-dotnet#​2693
  2. Coordination with Microsoft to open up types in Microsoft.AspNetCore.OpenAPI so I don't have to resort to Reflection for integration

If these are not able to be completed within the next few weeks, then I will officially release the stable libraries. The gRPC support will then come in a future, likely minor version, release. The OpenAPI extensions may stay in preview as AOT will likely be broken.

Features

All Platforms

  • Support _ prefix character when extracting API versions from a .NET namespace (#​1172)
  • Generate software bill of materials (SBOM) (#​1100)

Fixes

ASP.NET Core with OpenAPI

  • Build-time OpenAPI documents have empty paths (#​1165, #​1168)
  • Missing XML Comments (#​1169)
  • Support <example> tags (#​1170)

Breaking Changes

The OpenAPI extensions for API Versioning (e.g. x-api-versioning) will now use a nested links property rather than a simple array. This allows the schema to be open for possible future enhancements.

Preview 1

{
    "x-api-versioning":
    [
        {
            "title": "Version Policy",
            "type": "text/html",
            "rel": "info",
            "url": "http://my.api.com/policies/versioning.html"
        }
    ]
}

Preview 2+

{
 ... (truncated)

## 10.0.0-preview.1

This is a major release that includes new, publicly visible API changes as well as a rollup of bug fixes. This is an initial preview release that is primarily focused on improving OpenAPI integration. Additional features will come in the next preview. The wiki has not be fully updated - yet, but that will also occur in the near future.

These are preview features and changes. Please report issues if you find them. Feel free to start a [discussion](../../discussions) about the changes in the forthcoming official release.

# Features

## All Platforms

- Support for the `deprecation` response header as defined by [RFC 9745](https://www.rfc-editor.org/rfc/rfc9745.html) (#​1128)

## ASP.NET Core

- Integration with the [Microsoft.AspNetCore.OpenApi](https://www.nuget.org/packages/Microsoft.AspNetCore.OpenApi) library
  - These features in the new [Asp.Versioning.OpenApi](https://www.nuget.org/packages/Asp.Versioning.OpenApi) library
  - OpenAPI documents are now generated per API version
  - Sunset and deprecation policies are automatically included with standard (English) text, but can be customized
  - Sunset and deprecation policies links are included in OpenAPI documents via the `x-api-versioning` extension
  - The versioned `HttpClient` can now read and report on sunset and deprecation policies
  - All [example projects](../../tree/main/examples/AspNetCore) have been updated to use [Scalar](https://scalar.com/)

### Example

The following provides an example of a bare minimum setup:

```c#
var builder = WebApplication.CreateBuilder( args );
var services = builder.Services;

services.AddApiVersioning()
        .AddApiExplorer()
        .AddOpenApi();

var app = builder.Build();
var hello = app.NewVersionedApi( "HelloWorld" );
var v1 = hello.MapGroup( "/hello-world" ).HasApiVersion( 1.0 );
var v2 = hello.MapGroup( "/hello-world" ).HasApiVersion( 2.0 );

v1.MapGet( "/", ( ApiVersion version ) => $"Hello world from v{version}" );
v2.MapGet( "/", ( ApiVersion version ) => $"Hello world from v{version}" );

if ( app.Environment.IsDevelopment() )
{
    app.MapOpenApi().WithDocumentPerVersion();
}

app.Run();

The key differences from what you may be currently doing:

... (truncated)

Commits viewable in compare view.

Updated Azure.Identity from 1.17.1 to 1.21.0.

Release notes

Sourced from Azure.Identity's releases.

1.18.0

1.18.0 (2026-07-15)

Features Added

  • Upgraded api-version to 2026-05-01.
  • Added BreakThroughMode property to VolumeProperties.

1.18.0-beta.1

1.18.0-beta.1 (2026-06-30)

Features Added

  • Upgraded api-version to 2026-04-15-preview. Tag detail available at https://github.com/Azure/azure-rest-api-specs/blob/main/specification/netapp/resource-manager/Microsoft.NetApp/NetApp/readme.md.
  • Added first-class Active Directory configuration resource support, including NetAppActiveDirectoryConfigResource, NetAppActiveDirectoryConfigCollection, and related create, update, get, and list operations.
  • Added first-class Elastic resource support, including NetAppElasticAccountResource, NetAppElasticCapacityPoolResource, NetAppElasticVolumeResource, NetAppElasticSnapshotPolicyResource, NetAppElasticSnapshotResource, NetAppElasticBackupVaultResource, NetAppElasticBackupPolicyResource, and NetAppElasticBackupResource, together with their related models and operations.
  • Added account-level LDAP and Entra ID configuration models, including LdapConfiguration, LdapConfigurationPatch, BindPasswordAkvConfig, BindPasswordAkvConfigPatch, EntraIdConfig, and EntraIdConfigPatch.
  • Added new supporting Elastic and NetApp models and enums, including CheckElasticResourceAvailabilityResult, CheckElasticVolumeFilePathAvailabilityContent, BreakthroughMode, BindAuthenticationLevel, LargeVolumeType, and related Elastic policy, encryption, protocol, snapshot, and availability types.

Breaking Changes

  • Preview account configuration and patch APIs were reshaped to align with the 2026-04-15-preview service contract. Code using preview-only NetAppAccountPatch, LDAP, Entra ID, Active Directory configuration, or Elastic resource types may need to be updated.

Other Changes

  • Refreshed generated models, resource operations, and samples to align with the latest preview service definitions.

Commits viewable in compare view.

Updated Azure.Storage.Blobs from 12.26.0 to 12.29.1.

Release notes

Sourced from Azure.Storage.Blobs's releases.

12.29.0-beta.1

12.29.0-beta.1 (2026-07-21)

Features Added

  • This release contains bug fixes to improve quality.

12.28.0-beta.1

12.28.0-beta.1 (2026-07-21)

Features Added

  • Added support for service version 2026-10-06.

12.27.0-beta.1

12.27.0-beta.1 (2026-07-22)

Features Added

  • Added support for service version 2026-10-06.

Commits viewable in compare view.

Updated Azure.Storage.Queues from 12.25.0 to 12.27.1.

Release notes

Sourced from Azure.Storage.Queues's releases.

12.27.0-beta.1

12.27.0-beta.1 (2026-07-22)

Features Added

  • Added support for service version 2026-10-06.

Commits viewable in compare view.

Updated Bogus from 35.6.3 to 35.6.5.

Release notes

Sourced from Bogus's releases.

35.6.5

CHANGE LOG

35.6.4

CHANGE LOG

Commits viewable in compare view.

Updated coverlet.collector from 6.0.4 to 10.0.1.

Release notes

Sourced from coverlet.collector's releases.

10.0.1

Improvements

Fixed

  • Fix inconsistent paths in cobertura reports #​1723
  • Fix when using "is" with "and" in pattern matching, branch coverage is lower than normal #​1313
  • Fix Coverlet flagging a branch for an async functions finally block where none exists #​1337
  • Fix Coverlet Tracker Missing CompilerGeneratedAttribute #​1828

Maintenance

  • Add architecture docs and diagrams for all integrations #​1927
  • Update NuGet packages and .NET SDK versions #​1933

Diff between 10.0.0 and 10.0.1

10.0.0

Improvements

  • Unique Report Filenames (coverlet.MTP and AzDO) #​1866
  • Add --coverlet-file-prefix option for unique report files #​1869
  • Introduce .NET 10 support #​1823

Fixed

  • Fix [BUG] Wrong branch rate on IAsyncEnumerable for generic type #​1836
  • Fix [BUG] Missing Coverage after moving to MTP #​1843
  • Fix [BUG] No coverage reported when targeting .NET Framework with 8.0.1 #​1842
  • Fix [BUG] Behavior changes between MTP and Legacy (msbuild) #​1878
  • Fix [BUG] Coverlet.MTP - Unable to load coverlet.mtp.appsettings.json #​1880
  • Fix [BUG] Coverlet.Collector produces empty report when Mediator.SourceGenerator is referenced #​1718 by https://github.com/yusyd
  • Fix [BUG] Crash during instrumentation (Methods using LibraryImport/DllImport have no body) #​1762

Maintenance

  • Add comprehensive async method tests and documentation for issue #​1864
  • Replace Tmds.ExecFunction Package in coverlet.core.coverage.tests #​1833
  • Add net9.0 and net10.0 targets #​1822

Diff between 8.0.1 and 10.0.0

8.0.1

Fixed

  • Fix [BUG] TypeInitializationException when targeting .NET Framework #​1818
  • Fix [BUG] coverlet.MTP build fails with CS0400 due to developmentDependency=true #​1827

Improvements

  • Additional improvements needed for .NET Framework instrumentation type import #​1825

Diff between 8.0.0 and 8.0.1

8.0.0

Special Thanks: A huge thank you to @​Bertk for driving the majority of the work in this release! 🎉

Fixed

Improvements

  • Coverlet MTP extension feature #​1788
  • Generate SBOM for nuget packages #​1752
  • Use multi targets projects for coverlet.collector, coverlet.msbuild.tasks packages #​1742
  • Use .NET 8.0 target framework for coverlet.core and remove Newtonsoft.Json #​1733
  • Use latest System.CommandLine version #​1660
  • Upgraded minimum required .NET SDK and runtime to .NET 8.0 LTS (Long Term Support) (Breaking Change)
  • Use xunit.v3 for tests and example code

Diff between 6.0.4 and 8.0.0

Commits viewable in compare view.

Updated csharpier from 1.2.6 to 1.3.0.

Release notes

Sourced from csharpier's releases.

1.3.0

1.3.0

Breaking Changes

Change xml formatting to return error when it runs into syntax error so it is consistent with c# #​1854

Previously CSharpier treated an invalid xml file as a warning instead of an error. This was inconsistent with how it treated c# files.
Invalid c# or xml files are not treated as errors.
The --compilation-errors-as-warnings argument has been renamed to --syntax-errors-as-warnings and can be used to return warnings instead of errors when encountering invalid files.

What's Changed

Feature: Configurable whitespace handling for xml #​1790

CSharpier now supports two types of xml whitespace formatting strict or ignore.
By default all xml except xaml or axaml is treated as strict whitespace. See details

Feature: Move closing bracket for xml elements to the same line. #​1598

With strict xml whitespace handling, csharpier now keeps the closing bracket for an element on the same line instead of breaking it to a new line.

<!-- input & expected output -->
<ElementWithAttribute Attribute="AttributeValue__________________"
  >TextValue</ElementWithAttribute>

<!-- 1.2.6 -->
<ElementWithAttribute Attribute="AttributeValue__________________"
  >TextValue</ElementWithAttribute
>

Feature: Support for csharpier-ignore with XML formatter #​1788

CSharpier now supports csharpier-ignore in xml files. See details

Feature: Add MSBuild transitive and multi-target support #​1833

CSharpier.MSBuild can now work as a transitive dependency.

Feature: allow checking formatting with cache #​1830

The csharpier check command now supports a --use-cache option.

Feature: remove dependency on Microsoft.AspNetCore.App #​1508

Previously CSharpier required that Microsoft.AspNetCore.App be installed. CSharpier has been modified to use an HttpListener when it is run using server to remove the need for this dependency.

Fix: csharpier-ignore comment removes linespaces before block #​1867

CSharpier was removing blank lines before csharpier-ignore comments in some cases

// input and expected output
var x = 1;
    
// csharpier-ignore
var y=1;

/// 1.2.6
var x = 1;
// csharpier-ignore
var y=1;
 ... (truncated)

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

Updated [DotNetEnv](https://github.com/tonerdo/dotnet-env) from 3.1.1 to 3.2.0.

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

_Sourced from [DotNetEnv's releases](https://github.com/tonerdo/dotnet-env/releases)._

## 3.2.0

- Switch parsing to Superpower (from Sprache)
- Fix utf8 parsing
- Interpolated variables parsing


Commits viewable in [compare view](https://github.com/tonerdo/dotnet-env/compare/v3.1.1...v3.2.0).
</details>

Updated [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 8.6.0 to 8.10.0.

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

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

## 8.10.0

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

## What's Changed
### Improvements
* Fail with a descriptive error when path-based rules are used on value-semantic types by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3187
* Significantly speed up BeEquivalentTo for large unordered collections by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3188
* Add ComparingNullCollectionsAsEmpty and ComparingNullStringsAsEmpty options to BeEquivalentTo by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3202
* Include original index in extraneous item failure messages by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3203
### Documentation
* Reroute the docs link to Xceed by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3183
* Fix typo in release notes by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3194
* Fix typos in docs by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3197
### Others
* Bump flatted from 3.4.1 to 3.4.2 in the npm_and_yarn group across 1 directory by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3184
* Add AI assistant instruction file (agents.md) for Copilot, Claude, and JetBrains Junie by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3176
* Bump smol-toml from 1.6.0 to 1.6.1 in the npm_and_yarn group across 1 directory by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3185
* Bump the npm_and_yarn group across 1 directory with 2 updates by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3186
* Bump cspell from 9.7.0 to 10.0.0 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3189
* Update nugets by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3192
* Fixup Qodana issues by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3193
* Fix Qodana argument separator by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3195
* Use new Qodana linter option by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3196
* Fix flaky BeLessThanOrEqualTo execution time test by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3200
* Bump JetBrains/qodana-action from 2025.3 to 2026.1 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3201
* Use long for hashCode in ReferentialComparer to avoid overflow by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3204


**Full Changelog**: https://github.com/fluentassertions/fluentassertions/compare/8.9.0...8.10.0

## 8.9.0

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

> [!WARNING]
> For projects targeting .NET 9, you need at least .NET SDK 9.0.200 as earlier versions will trigger compile errors because of invalid overload resolution. See #​3225 

## What's Changed
### New features
* Add support for `Span<T>`, `ReadOnlySpan<T>`, `Memory<T>` and `ReadOnlyMemory<T>` by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3172
### Improvements
* Allow excluding all properties by type from `BeEquivalentTo` by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3115
* Clean-up the stack trace when throwing an assertion failure by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3152
* Improve reporting the differences between differently sized collections in `BeEquivalentTo` by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3133
* Improve reporting the subject when chaining `Throw` and `Which` by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3160
* Add `HaveMillisecond`/`NotHaveMillisecond` assertion methods for `DateTime` and `DateTimeOffset` by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3164
* Add `BeEqualTo` and `NotBeEqualTo` as collection assertion aliases by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3166
### Fixes
* Fix formatting exception when comparing strings containing braces by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3151
### Documentation
* Also mention the global configuration options in the docs. by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3132
* Add xUnit migration tips by @​fuguiKz in https://github.com/fluentassertions/fluentassertions/pull/3141
* Point the docs to the new site by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3155
* Added missing release notes by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3161
* Fix "an" vs "a" typos by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3174
### Others
* Bump actions/download-artifact from 5 to 6 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3116
* Bump cspell from 9.2.1 to 9.2.2 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3118
* Bump actions/upload-artifact from 4 to 5 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3117
* Add NuGet package attestations using GitHub provenance by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3119
* Bump cspell from 9.2.2 to 9.3.0 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3122
* Bump actions/attest-build-provenance from 2 to 3 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3121
* fix qodana warnings by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3123
* Update nuget packages by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3124
* Bump cspell from 9.3.0 to 9.3.2 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3125
* Bump actions/checkout from 5 to 6 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3127
* Update to NET 10 SDK by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3128
* Use `==` or `!=` when comparing Nullable<T> against constants by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3129
* Create polyfill for `string.Create` by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3130
* Bump cspell from 9.3.2 to 9.4.0 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3131
* Bump actions/cache from 4 to 5 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3136
* Bump actions/upload-artifact from 5 to 6 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3135
* Bump actions/download-artifact from 6 to 7 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3134
* Cleanups by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3137
* Nuget updates by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3139
* Suppress `UnassignedGetOnlyAutoProperty` for `Node.GetHashCode` by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3138
* Use `NonReadonlyMemberInGetHashCode` by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3140
* Bump JetBrains/qodana-action from 2025.2 to 2025.3 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3142
* Use compiler-generated `paramName` parameter by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3143
* Fix `When_concurrently_getting_equality_strategy_it_should_not_throw` by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3144
* Bump cspell from 9.4.0 to 9.6.0 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3146
* Bump cspell from 9.6.0 to 9.6.2 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3153
 ... (truncated)

## 8.8.0

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

## What's Changed
### New features
* Add support for MSTest4 by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3111
### Improvements
* Allow WithoutMessage when using Should().Throw() and ThrowAsync() by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3100
* Improve reporting of the differences between long strings by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3101
* Allow customizing the equivalency behavior for BeXmlSerializable by @​logiclrd in https://github.com/fluentassertions/fluentassertions/pull/3107
### Documentation
* Add docs for `config` parameter by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3104
### Others
* Refreshed readme by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3106
* Merge hotfix 8.7.1 back to main by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3109
* Fix release notes by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3112
* Bump github/codeql-action from 3 to 4 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3113


**Full Changelog**: https://github.com/fluentassertions/fluentassertions/compare/8.7.1...8.8.0

## 8.7.1

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

## What's Changed
### Others
* JSON assertions did not properly handle floats, doubles and unsigned … by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3105
* Fixed ambiguity when using Should on a JsonNode derived class ... by @​JSkimming in https://github.com/fluentassertions/fluentassertions/pull/3102


**Full Changelog**: https://github.com/fluentassertions/fluentassertions/compare/8.7.0...8.7.1

## 8.7.0

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

## What's Changed
### New features
* Added System.Text.Json assertion APIs and BeEquivalentTo support by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3094
### Others
* Address a bunch of Qodana issues by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3082
* Bump actions/checkout from 4 to 5 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3085
* Bump JetBrains/qodana-action from 2025.1 to 2025.2 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3086
* Bump actions/download-artifact from 4 to 5 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3087
* Bump cspell from 9.2.0 to 9.2.1 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3090
* Bump actions/setup-dotnet from 4 to 5 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3092
* Add lock file for nuget packages by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3084
* Set `DisableImplicitNuGetFallbackFolder` by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3095
* Bump Nugets by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3096
* Revert package locking by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3098
* Clean-up tests related to exceptions by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3099


**Full Changelog**: https://github.com/fluentassertions/fluentassertions/compare/8.6.0...8.7.0

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

Updated [Hl7.Fhir.R4](https://github.com/FirelyTeam/firely-net-sdk) from 6.0.0-rc1 to 6.3.0.

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

_Sourced from [Hl7.Fhir.R4's releases](https://github.com/FirelyTeam/firely-net-sdk/releases)._

## 6.3.0

## Intro:

This release includes a behavioral change in parsing alongside a minor bug fix. Please read the notes below carefully before upgrading.

**POCO / type system**
- The SDK now detects incorrectly cased element and resource type names. Two new error codes are introduced: `PVAL131` (`WRONG_CASED_ELEMENT`) and `PVAL132` (`WRONG_CASED_RESOURCE_TYPE`).

  > **Breaking change:** Parsers running in strict mode will now report errors when receiving data with incorrectly cased element or resource type names. Data that was previously silently corrected during parsing will now cause parse errors instead. Make sure your data sources use the correct casing as defined by the FHIR specification. All non-strict modes (BackwardsCompatible, Recoverable, NoOverflow, and the default) continue to bind leniently, preserving the behaviour from previous SDK versions. The exact handling of wrong-cased names in lenient modes is subject to change in future major versions of the SDK.

**Other fixes**
- Fixed redundant null-checks and initialization logic in bundle link handling.


## Changes:

* #​3553: Potential fix for code scanning alert no. 1: Workflow does not contain permissions
* #​3541: Remove redundant null-checks and initialization logic from `setLink` method
* #​3552: Bump the runtime-dependencies-minor group with 1 update
* #​3540: Fix #​3502: Detect wrong-cased element and resource type names at the model level
* #​3502: Standardize case-sensitivity handling in JSON & XML parsers
* #​3539: Start development cycle 6.2.2
* #​3538: Add JetBrains Rider settings to .gitignore

This list of changes was [auto generated](https://dev.azure.com/firely/firely-net-sdk/_build/results?buildId=74307&view=logs).

## 6.2.1

## Intro:

This is a bugfix release with several stability and correctness improvements.

**Serialization**
- Fixed an `OverflowException` when serializing large decimal values with old parsing stack
- Switched `FhirClient` to use the modern POCO serializer for better consistency
  - If legacy serializers are still needed, our choice can be overriden by assigning `Settings.SerializationEngine` an instance of `FhirSerializationEngineFactory.Legacy.FromParserSettings(ModelInfo.ModelInspector, Settings.ParserSettings ?? new())` as it was before
- Fixed size limitations when serializing base64-encoded data
- Fixed the `pretty` option being ignored when calling `ToXml()`

**Snapshot generation**
- Fixed incorrect behavior in collection merge when suppression extensions were involved, which could cause an index-out-of-range error or suppression being silently ignored

**POCO / type system**
- `ISourceNode` now has a direct `ToPoco()` extension method
- Fixed `instant` values being stored incorrectly when converting from an untyped source
- Untyped sources are now correctly associated with the model when building POCOs
- Custom resources and datatypes are now easier to define and build as a `ClassMapping` for `ModelInspector`
- Restored collection initializer syntax support on the `Parameters` class
- Added `IVersionableConformanceResource` to R5 `NamingSystem`

**Other fixes**
- Resolver base class now allows returning `null`, leaving it to the caller to decide whether to throw
- Dependencies downgraded to align with the target framework version


## Changes:

* #​3535: Added more tests cases for unit tests. Some code cleanup.
* #​3536: Pretty parameter is not being used in ToXml extension method.
* #​3534: Fix: store 'instant' as canonical string when building a POCO from an untyped source
* #​3531: Fix serialization base64 size limits
* #​3472: Add direct ISourceNode.ToPoco() implementation
* #​3526: Fixed incorrect merge logic in mergeCollectionWithSuppression that could result in suppression extension not being honoured
* #​3530: Skip major version update rules for specific dependencies
* #​3527: Bump the runtime-dependencies-minor group with 1 update
* #​3509: Central Package Dependency Management AND LTS/Condition Suggestions
* #​3525: Optimize serialization locking
<details><summary><b>See More</b></summary>

* #​3523: Logic in mergeCollectionWithSuppression could result in an Index Out Of Range exception.
* #​3521: Rebind untyped sources to builder's inspector in NewPocoBuilder
* #​3520: Implement Central Package Management (CPM)
* #​3508: Implement Central Package Management (CPM)
* #​3516: Bump the runtime-dependencies-minor group with 1 update
* #​3519: Support custom resources and datatypes in ClassMapping/ModelInspector
* #​3518: Add Version interface to R5 NamingSystem
* #​2850: Change ClassMappings so it can support custom resources 
* #​3517: fix: restore collection initializer support on Parameters class
 ... (truncated)

## 6.2.0

## Intro:

* Added a `RespectSuppressExtension` setting to `SnapshotGeneratorSettings` (default: `true`) to allow consumers to opt out of suppress-extension handling during snapshot generation.
* Added `Base.ClearOverflow()` and corrected the `NoOverflow` docstring.
* `ITypedElement` extension methods now use `OverloadResolutionPriority(1)`, ensuring they are preferred over `ISourceNode` extensions for types implementing both interfaces (such as `PocoNode`).
* Fixed a cache key issue in `CachingTerminologyService` where resource or unrecognized parameter values could produce invalid cache keys.
* Validation now includes canonicals in failed resolve attempts, and cardinality validation correctly handles cases where no member name is reported.
* Updated `System.Text.Json` and `Microsoft.Extensions.Caching.Memory` to version `10.0.7`.


## Changes:

* #​3492: Bump Microsoft.Extensions.Caching.Memory and 4 others
* #​3496: Skip build stages when only docs change (DEVOPS-706, DEVOPS-709)
* #​3491: Added RespectSuppressExtension to SnapshotGeneratorSettings
* #​3490: Fix small bug in the CachingTerminologyService 
* #​3487: Bump the test-dependencies group with 1 update
* #​3483: Bump the runtime-dependencies-minor group with 4 updates
* #​3479: Add ClearOverflow() to Base and fix misleading NoOverflow docstring
* #​3475: Handle the case of cardinality validation not reporting membername
* #​3470: Include canonicals in failed resolve attempts
* #​3477: Add OverloadResolutionPriority to ITypedElement extensions
<details><summary><b>See More</b></summary>

* #​3469:  Start development cycle 6.1.2

This list of changes was [auto generated](https://dev.azure.com/firely/firely-net-sdk/_build/results?buildId=71037&view=logs).</details>

## 6.1.1

## Intro:

Fixes wrong logic for BaseTerminologyService filtering parameters for duplicates on requests that accept 0..* on some parameters


## Changes:

* #​3464: Remove NoDuplicates from operations that allow for multiple params
* #​3463: Merge support/sdk5 into develop (SDK5 → SDK6 sweep)

This list of changes was [auto generated](https://dev.azure.com/firely/firely-net-sdk/_build/results?buildId=68816&view=logs).</details>

## 6.1.0

## Intro:

* `FHIRPath` `CompiledExpression` now accepts `0..*` resources as input, removing the need for a dummy resource when the expression does not reference one.
* `ModelInspector` now protects against cross-version contamination of `ClassMappings`, preventing type resolution errors when multiple library versions are used in the same process.
* Improved the terminology stack with a more complete base class that simplifies implementations and standardizes error handling.
* Improved error handling for POCO validation and serialization by setting the `MemberName` property for easier debugging.
* Minor nullability improvements.

## Changes:

* #​3436: Bump Microsoft.SourceLink.GitHub from 10.0.102 to 10.0.103
* #​3435: Bump Microsoft.Extensions.Caching.Memory from 10.0.2 to 10.0.3
* #​3443: Give major runtime deps individual PRs
* #​3442: Bump Microsoft.Extensions.Caching.Memory and Microsoft.SourceLink.GitHub
* #​3440: Combine dependabot PRs for minors/patch into a single PR
* #​3439: Override deepcopy on the terminology parameters
* #​3428: Cache assembly attributes in ModelInspector
* #​3434: Parse TRX file to detect failures in test runner
* #​3431: Sync test dependencies for test runner issues
* #​3397: Support null focus on fhirpath operations
<details><summary><b>See More</b></summary>

* #​3430: Made BaseFhirClient thread safe
* #​3429: Apply UnsafeRelaxedJsonEscaping in regular serializer options as well
* #​3424: Implement CodeSystem ops for MIME/Language services
* #​3425: Cache assembly attributes in ModelInspector validation
* #​3422: Bump Microsoft.SourceLink.GitHub from 8.0.0 to 10.0.102
* #​3420: Bump MSTest.TestFramework and Verify.MSTest
* #​3421: Bump FluentAssertions from 7.2.0 to 7.2.1
* #​3415: Preserve URL host casing in bundle references
* #​3407: Use PropertyMapping.Name for MemberName if possible to report FHIR properties rather than FHIRPath names
* #​3417: Add cross-version type conflict detection to ModelInspector
* #​3414: Add FhirPath .value property support
* #​3416: Fix Resource.VersionId setter with existing Meta
* #​3410: Set MemberName to null for overflow elements
* #​3409: Update XML deserialization snapshot for PropertyMapping.Name
* #​3405: Fixes for Attribute validation
* #​3403: Handle duplicate XML attributes gracefully
* #​3399: Add ZipSource Exception and Retry Logic
* #​3401: Fix missing period in CommonLocation
* #​3394: VONK-9235: Base for strongly typed and pre-validated TerminologyService implementations
* #​3396: Update README to include commercial support details
* #​3391: Bump Microsoft.Extensions.Caching.Memory from 10.0.1 to 10.0.2
* #​3392: Bump System.Text.Json from 10.0.0 to 10.0.2
* #​3389: Bump version number
* #​3388: Added release notes

This list of changes was [auto generated](https://dev.azure.com/firely/firely-net-sdk/_build/results?buildId=67764&view=logs).</details>

## 6.0.2

## Intro:

Mostly minor changes, but one breaking change where the PocoNode's ParentNode constructor has been removed, as it was not
necessary and is derived from the Parent.


## Changes:

* #​3387: Enable public signing
* #​3385: Make extension public, aligning it with SDK5 and our usages
* #​3384: Remove double space in error message.
* #​3383: Split terminology error 6005 into warning and error
* #​3378: Added shared error messages fir Tx services.
* #​3380: Bump Verify.MSTest from 31.9.0 to 31.9.3
* #​3379: Bump Verify.MSTest from 31.7.3 to 31.9.0
* #​3369: Remove $findmatches
* #​3370: Validate strings for leading/trailing whitespaces
* #​3371: Bump Microsoft.Extensions.Caching.Memory from 10.0.0 to 10.0.1
<details><summary><b>See More</b></summary>

* #​3366: Fix IsAbsolute property to handle null values and improve error handling
* #​3365: Turn package validation back on
* #​3362: Bump Microsoft.Extensions.Caching.Memory from 9.0.11 to 10.0.0
* #​3361: Bump BenchmarkDotNet from 0.15.0 to 0.15.8
* #​3354: Bump System.Text.Json from 9.0.1 to 10.0.0
* #​3356: VONK-9012 implemented CachingTerminologyService
* #​3353: Bump System.Buffers from 4.5.1 to 4.6.1
* #​3352: Bump BenchmarkDotNet from 0.15.6 to 0.15.8
* #​3357: Fixed unit tests not running in pipeline OR locally
* #​3355: Bump MSTest.TestFramework and Verify.MSTest
* #​3348: Bump BenchmarkDotNet from 0.15.5 to 0.15.6
* #​3347: Address MSTest 4.0 analyzer warnings (1,424 of 1,866 fixed)
* #​3343: Bump MSTest.TestFramework and Verify.MSTest
* #​3342: Bump BenchmarkDotNet from 0.15.4 to 0.15.5
* #​3344: Fix MSTest 4.0 breaking changes in test suite
* #​3341: Added call to RemoveAllNonInheritableExtensions to ExpandElementAsync
* #​3338: Changed the parent property design on PocoNode
* #​3340: Added $find-match operation to ITerminologyService

This list of changes was [auto generated](https://dev.azure.com/firely/firely-net-sdk/_build/results?buildId=64408&view=logs).</details>

## 6.0.1

## Intro:

Fixes Code<T> having System and Value switched.  
Leaves snapshot generation result usability to the caller rather than assuming error.   

- For breaking changes compared to 5.x see our [GitHub wiki](https://github.com/FirelyTeam/firely-net-sdk/wiki/Breaking-changes-in-6.0)



## Changes:

* #​3321: Fix snapshot generator errors and CodeOfT values
* #​3319: Release SDK-6

This list of changes was [auto generated](https://dev.azure.com/firely/firely-net-sdk/_build/results?buildId=60733&view=logs).

## 6.0.0

## Intro:

Firely .NET SDK v6.0.0

- For breaking changes compared to 5.x see our [GitHub wiki](https://github.com/FirelyTeam/firely-net-sdk/wiki/Breaking-changes-in-6.0)

## Changes:
* Update apply-versioning-steps-template.yml by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2919
* removed IBaseElementNavigator<T> by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2920
* #​2901 Add support for overflow to POCOs by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2918
* Make Base implement IScopedNode - phase 1 by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2913
* changed type of FhirEvalContext.TerminologyService by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2909
* Merged latest 5.0 changes into 6.0 by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2945
* 2930 Clean up IsNested/BackboneType attribute information by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2939
* Remove dependency on old ucum library by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2834
* Move to netstandard 2.1 by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2946
* Defined IScopedNode by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2921
* Base POCO parsers/serializers on POCO, not IROD by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2950
* Refactored FhirPath engine to work against IScopedNode by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2964
* Replace PocoBuilder to support overflow by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2953
* Remove Children, NamedChildren and IDictionary by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2973
* Turn Element.ElementId and Extension.Url into FHIR Primitives by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2978
* Generalize handling of Base/Conformance properties that changed type by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2981
* Draft of a new PocoElementNode instead of IScopedNode by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2983
* Multiple small refactorings by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2985
* Some renames to types that were incorrect. by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2986
* Introduce IEqualityComparer instead of Matches/IsExactly by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2988
* Moved SearchParamDefinition from STU3+ to a separate class in Base. by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2987
* Align null behaviour for DateTimes by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/2990
* Forward SDK 5 changes to SDK 6 by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2989
* Implement ISourceNode on Base by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2991
* Start development phase 6.0.0-alpha2 by @​mmsmits in https://github.com/FirelyTeam/firely-net-sdk/pull/2995
* 6.0/2923 Make serialization use new serializers by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/3002
* Made Code<T> a subclass of Code by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2997
* 2931 Remove ISystemAndCode by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/3007
* Remove code marked as Obsolete by @​andrzejskowronski in https://github.com/FirelyTeam/firely-net-sdk/pull/3010
* Removed IDeepCopyable by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/2996
* Change binary compatibility baseline to version 6.0.0-alpha1 by @​mmsmits in https://github.com/FirelyTeam/firely-net-sdk/pull/3028
* 2936 Make comparisons consistent by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/3017
* Update 6.0 with 5.0 changes by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/3032
* Enable resolvers to be able to report errors by @​andrzejskowronski in https://github.com/FirelyTeam/firely-net-sdk/pull/3044
* 2937 Copied evertything over from the validator that was not already there. by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/3064
* moved To... extension methods to be more consistent in where they can be found by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/3052
* Refactor FP engine against PocoNode by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/3004
* 2781 Work on ObjectValue by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/3033
* 3061 Fix nullability warnings by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/3063
* 3061 Add nullability by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/3062
* Remove binary serialization by @​andrzejskowronski in https://github.com/FirelyTeam/firely-net-sdk/pull/3069
* Forward merge develop by @​Kasdejong in https://github.com/FirelyTeam/firely-net-sdk/pull/3068
* 3048 Move working with modes to parsers by @​ewoutkramer in https://github.com/FirelyTeam/firely-net-sdk/pull/3070
 ... (truncated)

Commits viewable in [compare view](https://github.com/FirelyTeam/firely-net-sdk/compare/v6.0.0-rc1...v6.3.0).
</details>

Updated [HotChocolate.AspNetCore](https://github.com/ChilliCream/graphql-platform) from 14.1.0 to 16.3.0.

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

_Sourced from [HotChocolate.AspNetCore's releases](https://github.com/ChilliCream/graphql-platform/releases)._

## 16.3.0

## What's Changed
* Bump .NET 11 NuGet packages to preview 5 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9965
* Add directive-argument opt-in and code-first directive APIs by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9966
* Adds supertype narrowing to planner and execution. by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9963
* Fix explicit field resolver dropped by named runtime-type binding by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9967
* [Nitro CLI] Surface CLI/backend version mismatch on HC0020 by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9968
* Fix file upload FormatException for parameterized Content-Type by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9969
* Support `@​requiresOptIn` on directive definitions by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9970
* Support constant arguments in field selection maps and `@​key` by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9974
* Fix included conditional selections not being projected by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9818
* Fix internal projection selections leaking into the response by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9978
* Optimize shared opt-in introspection resolvers by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9979
* Fix flaky error-result timeout test by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9980
* Remove GitHub code-quality coverage upload jobs by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9983
* Fix flaky Mocha Postgres tests with shared Npgsql helper by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9981
* Fix flaky MCP adapter activity snapshot tests by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9982


**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.2.3...16.3.0

## 16.3.0-p.2

## What's Changed
* Bump .NET 11 NuGet packages to preview 5 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9965
* Add directive-argument opt-in and code-first directive APIs by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9966
* Adds supertype narrowing to planner and execution. by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9963
* Fix explicit field resolver dropped by named runtime-type binding by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9967
* [Nitro CLI] Surface CLI/backend version mismatch on HC0020 by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9968
* Fix file upload FormatException for parameterized Content-Type by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9969
* Support `@​requiresOptIn` on directive definitions by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9970
* Support constant arguments in field selection maps and `@​key` by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9974


**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.2.3...16.3.0-p.2

## 16.2.3

## What's Changed
* [CI] Build Nitro CLI musl binary in an Alpine container by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9959
* Simplify rabbitmq explicit binding by @​PascalSenn in https://github.com/ChilliCream/graphql-platform/pull/9911
* Make outbox, inbox, and scheduling workers idempotent on start by @​alisan3 in https://github.com/ChilliCream/graphql-platform/pull/9912
* Fixed Batch Consumer Middleware Pipeline by @​PascalSenn in https://github.com/ChilliCream/graphql-platform/pull/9962
* [OpenAPI] Avoid double PipeReader.AdvanceTo when reading `@​body` by @​hemed in https://github.com/ChilliCream/graphql-platform/pull/9961
* Fix projections skipping fields inherited from interface types by @​Tommsy64 in https://github.com/ChilliCream/graphql-platform/pull/9852
* [CI] Gate Validate Nitro Client job on package changes and non-fork PRs by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9964

## New Contributors
* @​hemed made their first contribution in https://github.com/ChilliCream/graphql-platform/pull/9961

**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.2.2...16.2.3

## 16.2.3-p.3

## What's Changed
* Fixed Batch Consumer Middleware Pipeline by @​PascalSenn in https://github.com/ChilliCream/graphql-platform/pull/9962


**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.2.3-p.2...16.2.3-p.3

## 16.2.3-p.2

## What's Changed
* [CI] Pass user that triggered the release to workflows in other repositories by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9945
* Stabilize Postgres reconnect test against reconnect timing race by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9946
* Add .NET 11 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9516
* Stabilize executor eviction/swap tests against timeout flake by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9949
* [Nitro CLI] Align multi-workspace login output with set-default prompt by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9950
* [Fusion] Improve fetch result store lock contention by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9942
* Reference net11-bundled packages only on net8.0/net9.0/net10.0 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9951
* Add Mocha Demo example projects to All.slnx by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9952
* Make cursor key extraction null-safe for nullable nested fields by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9953
* Handle nullable navigations in keyset pagination WHERE clause by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9955
* [Website] Add new landing page Pt. 2 by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9936
* Fix argument coercion for non-typed list elements by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9957
* Add arguments to SelectionSetMap syntax by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9954
* Bump .NET 11 SDK pin to 11.0.100-preview.5.26302.115 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9958
* [CI] Build Nitro CLI musl binary in an Alpine container by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9959
* Simplify rabbitmq explicit binding by @​PascalSenn in https://github.com/ChilliCream/graphql-platform/pull/9911
* Make outbox, inbox, and scheduling workers idempotent on start by @​alisan3 in https://github.com/ChilliCream/graphql-platform/pull/9912


**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.2.0-p.5...16.2.3-p.2

## 16.2.3-p.1

## What's Changed
* [CI] Pass user that triggered the release to workflows in other repositories by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9945
* Stabilize Postgres reconnect test against reconnect timing race by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9946
* Add .NET 11 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9516
* Stabilize executor eviction/swap tests against timeout flake by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9949
* [Nitro CLI] Align multi-workspace login output with set-default prompt by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9950
* [Fusion] Improve fetch result store lock contention by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9942
* Reference net11-bundled packages only on net8.0/net9.0/net10.0 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9951
* Add Mocha Demo example projects to All.slnx by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9952
* Make cursor key extraction null-safe for nullable nested fields by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9953
* Handle nullable navigations in keyset pagination WHERE clause by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9955
* [Website] Add new landing page Pt. 2 by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9936
* Fix argument coercion for non-typed list elements by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9957
* Add arguments to SelectionSetMap syntax by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9954
* Bump .NET 11 SDK pin to 11.0.100-preview.5.26302.115 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9958
* [CI] Build Nitro CLI musl binary in an Alpine container by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9959
* Simplify rabbitmq explicit binding by @​PascalSenn in https://github.com/ChilliCream/graphql-platform/pull/9911


**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.2.0-p.5...16.2.3-p.1

## 16.2.0-p.5

## What's Changed
* Add support for directives on directive definitions by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9930
* [CI] Use dedicated app for cloud update and migrate to client-id by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9943


**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.2.0-p.3...16.2.0-p.5

## 16.2.0-p.4

## What's Changed
* Reworked the newsletter by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9932
* [Website] Fix non-relative content links by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9933
* [Website] Add new landing page by @​PascalSenn in https://github.com/ChilliCream/graphql-platform/pull/9913
* [Website] Improve sharing cards by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9934
* Stabilize `@​defer`/`@​stream` snapshots with canonical envelope by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9935
* Stabilize Mocha outbox registration test against EF provider warning by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9937
* Stabilize Fusion execution-timeout test against cold-start flake by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9938
* Fix memory layout by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9797
* Reference System.Net.ServerSentEvents only on net8.0/net9.0 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9941
* Stabilize type-module rebuild test against subscription race by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9940


**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.1.5-p.1...16.2.0-p.4

## 16.2.0-p.3

## What's Changed
* Reworked the newsletter by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9932
* [Website] Fix non-relative content links by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9933
* [Website] Add new landing page by @​PascalSenn in https://github.com/ChilliCream/graphql-platform/pull/9913
* [Website] Improve sharing cards by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9934
* Stabilize `@​defer`/`@​stream` snapshots with canonical envelope by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9935
* Stabilize Mocha outbox registration test against EF provider warning by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9937
* Stabilize Fusion execution-timeout test against cold-start flake by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9938
* Fix memory layout by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9797
* Reference System.Net.ServerSentEvents only on net8.0/net9.0 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9941
* Stabilize type-module rebuild test against subscription race by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9940


**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.1.5-p.1...16.2.0-p.3

## 16.1.5-p.1

## What's Changed
* Pin coverage upload action to patched fork by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9927
* [CI] Update Cloud platform version upon release by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9924
* [Nitro CLI] Add --remove-source-schema option to fusion compose by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9926


**Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/16.1.4...16.1.5-p.1

## 16.1.4

## What's Changed
* Cleanup blogpost headings by @​PascalSenn in https://github.com/ChilliCream/graphql-platform/pull/9859
* [Nitro CLI] Use `Client.publishedVersions` to power `client list published-versions` command by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9861
* [Website] Move docs and blog to website-next by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9862
* [Website] Remove trailing slashes by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9863
* Update Nitro to 31.0.2 by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9865
* Introduce routing conditions for inbound message processing by @​PascalSenn in https://github.com/ChilliCream/graphql-platform/pull/9869
* Add multi-routing-key bindings to RabbitMQ transport by @​alisan3 in https://github.com/ChilliCream/graphql-platform/pull/9864
* Fix MCP adapter stack overflow on self-referencing input types by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9850
* [OpenAPI] Properly handle recursive input types by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9855
* Run CommandTestBase teardown via IAsyncLifetime on xUnit v2 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9872
* Bump `codecov/codecov-action` from v5 to v7.0.0 by @​glen-84 in https://github.com/ChilliCream/graphql-platform/pull/9873
* Fix path to root in semantic introspection by @​michaelstaib in https://github.com/ChilliCream/graphql-platform/pull/9876
* [Website] Optimize images by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9875
* [Website] Fix minor issues by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9878
* [Diagnostics] Add IncludeOperationNameInSpanName option by @​tobias-tengler in https://github.com/ChilliCream/graphql-platform/pull/9874
* Implement message type binding fo....

_Description has been truncated_

Bumps Asp.Versioning.Mvc.ApiExplorer from 8.1.0 to 10.0.0
Bumps Azure.Identity from 1.17.1 to 1.21.0
Bumps Azure.Storage.Blobs from 12.26.0 to 12.29.1
Bumps Azure.Storage.Queues from 12.25.0 to 12.27.1
Bumps Bogus from 35.6.3 to 35.6.5
Bumps coverlet.collector from 6.0.4 to 10.0.1
Bumps csharpier from 1.2.6 to 1.3.0
Bumps DotNetEnv from 3.1.1 to 3.2.0
Bumps FluentAssertions from 8.6.0 to 8.10.0
Bumps Hl7.Fhir.R4 from 6.0.0-rc1 to 6.3.0
Bumps HotChocolate.AspNetCore from 14.1.0 to 16.3.0
Bumps MassTransit from 8.5.2 to 9.1.2
Bumps Microsoft.AspNetCore.Http.Abstractions from 2.3.0 to 2.3.11
Bumps Microsoft.AspNetCore.Mvc.Testing from 10.0.5 to 10.0.10
Bumps Microsoft.Extensions.Http.Resilience from 10.4.0 to 10.8.0
Bumps Microsoft.Extensions.ServiceDiscovery from 10.4.0 to 10.8.0
Bumps Microsoft.Extensions.ServiceDiscovery.Abstractions from 10.4.0 to 10.8.0
Bumps Microsoft.Extensions.ServiceDiscovery.Dns from 10.4.0 to 10.8.0
Bumps Microsoft.Extensions.ServiceDiscovery.Yarp from 10.4.0 to 10.8.0
Bumps Microsoft.Extensions.TimeProvider.Testing from 10.4.0 to 10.8.0
Bumps Microsoft.FeatureManagement from 4.2.1 to 4.6.0
Bumps Microsoft.NET.Test.Sdk from 17.14.1 to 18.7.0
Bumps powershell from 7.6.0 to 7.6.4
Bumps QuestPDF from 2025.7.0 to 2026.6.1
Bumps StrawberryShake.Server from 16.2.0 to 16.5.0
Bumps Swashbuckle.AspNetCore.SwaggerUI from 10.1.7 to 10.2.3
Bumps xunit.runner.visualstudio from 3.1.4 to 3.1.5

---
updated-dependencies:
- dependency-name: Asp.Versioning.Mvc.ApiExplorer
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sui-package-updates
- dependency-name: Azure.Identity
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Azure.Storage.Blobs
  dependency-version: 12.29.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Azure.Storage.Queues
  dependency-version: 12.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Bogus
  dependency-version: 35.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sui-package-updates
- dependency-name: coverlet.collector
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sui-package-updates
- dependency-name: csharpier
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: DotNetEnv
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: FluentAssertions
  dependency-version: 8.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Hl7.Fhir.R4
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: HotChocolate.AspNetCore
  dependency-version: 16.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sui-package-updates
- dependency-name: MassTransit
  dependency-version: 9.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sui-package-updates
- dependency-name: Microsoft.AspNetCore.Http.Abstractions
  dependency-version: 2.3.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sui-package-updates
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 10.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sui-package-updates
- dependency-name: Microsoft.Extensions.Http.Resilience
  dependency-version: 10.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Microsoft.Extensions.ServiceDiscovery.Abstractions
  dependency-version: 10.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Microsoft.Extensions.ServiceDiscovery
  dependency-version: 10.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Microsoft.Extensions.ServiceDiscovery.Dns
  dependency-version: 10.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Microsoft.Extensions.ServiceDiscovery.Yarp
  dependency-version: 10.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Microsoft.Extensions.TimeProvider.Testing
  dependency-version: 10.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Microsoft.FeatureManagement
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.7.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sui-package-updates
- dependency-name: powershell
  dependency-version: 7.6.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sui-package-updates
- dependency-name: QuestPDF
  dependency-version: 2026.6.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sui-package-updates
- dependency-name: StrawberryShake.Server
  dependency-version: 16.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: Swashbuckle.AspNetCore.SwaggerUI
  dependency-version: 10.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sui-package-updates
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sui-package-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code labels Jul 28, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner July 28, 2026 06:33
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code labels Jul 28, 2026
@sonarqubecloud

Copy link
Copy Markdown

@github-actions

Copy link
Copy Markdown

Code Coverage

Package Line Rate Branch Rate Health
SUI.DBS.Response.Logger.Core 0% 0%
SUI.Client.Core 93% 85%
Shared 92% 84%
Matching 74% 49%
External 44% 31%
SUI.Client.GraphQLProcessJob 4% 1%
SUI.Client.StorageProcessJob 97% 83%
suiw 100% 100%
AppHost 100% 100%
Summary 47% (4138 / 8764) 15% (1084 / 7004)

@jtaylor100
jtaylor100 merged commit 2493843 into main Jul 29, 2026
5 checks passed
@jtaylor100
jtaylor100 deleted the dependabot/nuget/dot-config/sui-package-updates-b26de69233 branch July 29, 2026 09:18
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.

1 participant