Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

Pinned Dunet at 1.11.3.

Release notes

Sourced from Dunet's releases.

1.11.3

What's Changed

Packages

https://www.nuget.org/packages/Dunet/1.11.3

Full Changelog

domn1995/dunet@v1.11.2...v1.11.3

Commits viewable in compare view.

Pinned Jab at 0.12.0.

Release notes

Sourced from Jab's releases.

No release notes found for this version range.

Commits viewable in compare view.

Pinned JetBrains.Annotations at 2025.2.4.

Release notes

Sourced from JetBrains.Annotations's releases.

No release notes found for this version range.

Commits viewable in compare view.

Pinned LanguageExt.Core at 5.0.0-beta-55.

Release notes

Sourced from LanguageExt.Core's releases.

5.0.0-beta-55

This is quite a big change. I started writing it a few months back, then I moved house, and that disappeared several months of my life - all for very good reasons, so I'm not complaining! However, be aware, that I had a major context-switch halfway through this change. So, just be a little wary with this upgrade, there may be some inconsistencies here and there - especially as it was very much focusing on consistency!

There are also breaking changes (discussed in the next section). I don't want to be doing breaking changes at this stage of the beta, but there are good reasons, which I'll cover in the relevant sections.

Discriminated union changes (BREAKING CHANGES)

I have changed the discriminated-union types (Either, Validation, ...) to embed the case-types within the generic base-type instead of a non-generic module-type and changed the constructor functions to be embedded within the non-generic module-type instead of the generic base-type.

So, previously a type like Either<L, R> would be defined like so:

// Generic discriminate-union type
public abstract record Either<L, R>
{
    // Left constructor function
    public static Either<L, R> Left(L value) => 
        new Either.Left<L, R>(value);

    // Right constructor function
    public static Either<L, R> Right(R value) => 
        new Either.Right<L, R>(value);
}

// Module type
public class Either
{
    // Left case-type
    public sealed record Left<L, R>(L Value) : Either<L, R>;

    // Right case-type
    public sealed record Right<L, R>(R Value) : Either<L, R>;
}
 ... (truncated)

Commits viewable in [compare view](https://github.com/louthy/language-ext/compare/v5.0.0-beta-54...v5.0.0-beta-55).
</details>

Pinned [LinqKit.Core](https://github.com/scottksmith95/LINQKit) at 1.2.9.

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

_Sourced from [LinqKit.Core's releases](https://github.com/scottksmith95/LINQKit/releases)._

No release notes found for this version range.

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

Pinned [Microsoft.EntityFrameworkCore](https://github.com/dotnet/efcore) at 9.0.11.

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

_Sourced from [Microsoft.EntityFrameworkCore's releases](https://github.com/dotnet/efcore/releases)._

## 9.0.11

[Release](https://github.com/dotnet/core/releases/tag/v9.0.11)

## What's Changed
* [release/9.0-staging] Merge release/9.0 to release/9.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36800
* [release/8.0-staging] Merge release/8.0 to release/8.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36798
* [release/9.0-staging] Fix performance degradation in converters because the instance was not reused by @​cincuranet in https://github.com/dotnet/efcore/pull/36897
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36915
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36916
* Update branding to 9.0.11 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36925
* Update branding to 8.0.22 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36924
* [release/8.0] Merge release/8.0-staging to release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36943
* [release/9.0] Merge release/9.0-staging to release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36944
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36939
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36968
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36969
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36973
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36981


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.10...v9.0.11

## 9.0.10

[Release](https://github.com/dotnet/core/releases/tag/v9.0.10)

## What's Changed
* [release/8.0-staging] Merge release/8.0 to release/8.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36540
* [release/9.0-staging] Merge release/9.0 to release/9.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36541
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36690
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36697
* Update branding to 8.0.21 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36696
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36699
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36727
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36728
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36734
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36753
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36765
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36782
* [release/8.0] Disable Guardian Dotnet Analyzers by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36776
* [release/9.0] Disable Guardian Dotnet Analyzers by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36777
* [8.0] Resolve query logger from QueryContext in shaper generation (#​36758) by @​roji in https://github.com/dotnet/efcore/pull/36779
* [9.0] Resolve query logger from QueryContext in shaper generation (#​36758) by @​roji in https://github.com/dotnet/efcore/pull/36778
* [release/8.0] Merge release/8.0-staging to release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36788
* [release/9.0] Merge release/9.0-staging to release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36789
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36784
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36833
* [release/8.0] Remove OSX.13.ARM64 from HelixTargetQueues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36838
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36841
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36852
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36853
* [release/8.0] Remove OSX.13.Amd64 target from HelixTargetQueues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36855
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36860
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36867


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.9...v9.0.10

## 9.0.9

[Release](https://github.com/dotnet/core/releases/tag/v9.0.9)

## What's Changed
* [release/8.0] Merge release/8.0 => release/8.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36197
* [release/9.0] Merge release/9.0 => release/9.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36201
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36398
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36495
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36498
* Update branding to 8.0.20 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36497
* [release/9.0] Dispose related readers in GroupBySplitQueryingEnumerable (#​36484) by @​roji in https://github.com/dotnet/efcore/pull/36490
* [release/8.0] Dispose related readers in GroupBySplitQueryingEnumerable (#​36484) by @​roji in https://github.com/dotnet/efcore/pull/36489
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36500
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36512
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36511
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36514
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36533
* [release/8.0] Merge release/8.0-staging to release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36531
* [release/9.0] Merge release/9.0-staging to release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36532
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36534
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36537
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36592


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.8...v9.0.9

## 9.0.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.7)

## What's Changed
* Merge branch 'release/8.0' =>'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35893
* Merge branch 'release/8.0' =>'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36047
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36098
* Delete src/arcade/eng/common directory by @​akoeplinger in https://github.com/dotnet/efcore/pull/36102
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36143
* [release/8.0] Add missing parentheses for set operations by @​roji in https://github.com/dotnet/efcore/pull/36139
* [release/9.0] Add missing parentheses for set operations by @​roji in https://github.com/dotnet/efcore/pull/36138
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36186
* Update branding to 8.0.18 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36185
* [release/8.0] Merge release/8.0-staging => release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36193
* [release/9.0] Merge release/9.0-staging => release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36194
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36192
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36213
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36222
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36223
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36227


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.6...v9.0.7

## 9.0.6

## Bug Fixes

- **Cosmos/FTS: Improved FullTextScore Translation for Multiple Keywords**  
  The translation of `FullTextScore` in Cosmos Full-Text Search has been updated to use multiple keywords instead of a keyword array, addressing issues with search accuracy and query compatibility. This resolves [#​35983](https://github.com/dotnet/efcore/issues/35983) and ensures more reliable full-text search results.  
  [#​36000](https://github.com/dotnet/efcore/pull/36000) by [@​maumar](https://github.com/maumar)

## Dependency Updates

- **[release/8.0] Update dependencies from dotnet/arcade**  
  Updated the Arcade build infrastructure dependencies for the 8.0 release branch, bringing in the latest improvements and security fixes from the Arcade ecosystem.  
  [#​35930](https://github.com/dotnet/efcore/pull/35930) by [@​dotnet-maestro](https://github.com/dotnet-maestro)
- **[release/9.0] Update dependencies from dotnet/arcade**  
  Updated Arcade dependencies for the 9.0 release branch, ensuring the build system benefits from the latest tooling and reliability enhancements.  
  [#​36006](https://github.com/dotnet/efcore/pull/36006) by [@​dotnet-maestro](https://github.com/dotnet-maestro)
- **[release/8.0] Update dependencies from dotnet/arcade**  
  Another update to Arcade dependencies for the 8.0 branch, further aligning with upstream improvements and fixes.  
  [#​36085](https://github.com/dotnet/efcore/pull/36085) by [@​dotnet-maestro](https://github.com/dotnet-maestro)
- **[release/9.0] Update dependencies from dotnet/arcade**  
  Additional update to Arcade dependencies for the 9.0 branch, maintaining up-to-date build tooling and infrastructure.  
  [#​36065](https://github.com/dotnet/efcore/pull/36065) by [@​dotnet-maestro](https://github.com/dotnet-maestro)

## Technical Improvements

- **Merging Internal Commits for release/8.0**  
  Integrated various internal commits into the 8.0 release branch, improving code quality, maintainability, and aligning with internal standards.  
  [#​35926](https://github.com/dotnet/efcore/pull/35926) by [@​vseanreesermsft](https://github.com/vseanreesermsft)
- **Merging Internal Commits for release/8.0**  
  Additional internal commits merged into the 8.0 branch, further enhancing stability and maintainability.  
  [#​36080](https://github.com/dotnet/efcore/pull/36080) by [@​vseanreesermsft](https://github.com/vseanreesermsft)
- **Merging Internal Commits for release/9.0**  
  Integrated internal improvements into the 9.0 branch, ensuring consistency and codebase health.  
  [#​36081](https://github.com/dotnet/efcore/pull/36081) by [@​vseanreesermsft](https://github.com/vseanreesermsft)

## Infrastructure

- **Update Branding to 9.0.6**  
  Updated the product branding and version numbers to 9.0.6, ensuring that all assemblies and packages reflect the correct release version.  
  [#​36044](https://github.com/dotnet/efcore/pull/36044) by [@​vseanreesermsft](https://github.com/vseanreesermsft)
- **Update Branding to 8.0.17**  
  Updated branding for the 8.0 release line to version 8.0.17, keeping versioning consistent across all release artifacts.  
  [#​36043](https://github.com/dotnet/efcore/pull/36043) by [@​vseanreesermsft](https://github.com/vseanreesermsft)

## Miscellaneous

- **[automated] Merge branch 'release/8.0' => 'release/9.0'**  
  Automated merge of changes from the 8.0 branch into the 9.0 branch, ensuring that all relevant fixes and improvements are carried forward.  
  [#​35927](https://github.com/dotnet/efcore/pull/35927) by [@​github-actions](https://github.com/github-actions)
- **Merge release/9.0 to release/9.0-staging**  
  Merged the 9.0 branch into the 9.0-staging branch, preparing for further testing and validation before final release.  
  [#​36051](https://github.com/dotnet/efcore/pull/36051) by [@​AndriySvyryd](https://github.com/AndriySvyryd)
 ... (truncated)

## 9.0.5

[Release](https://github.com/dotnet/core/releases/tag/v9.0.5)

## What's Changed
* Merge branch 'release/9.0' => 'release/9.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35750
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35765
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35780
* [release/9.0-staging] Fix to #​35162 - Regression from EF Core 8 to 9: MigrationBuilder.DropTable Causes Issues with Subsequent Table Recreation by @​maumar in https://github.com/dotnet/efcore/pull/35776
* [release/9.0-staging] Fix to #​21006 - Support a default value for non-nullable properties by @​maumar in https://github.com/dotnet/efcore/pull/35782
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35795
* Update branding to 9.0.5 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35889
* Update branding to 8.0.16 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35888
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions in https://github.com/dotnet/efcore/pull/35772
* Merge branch 'release/9.0-staging' => 'release/9.0' by @​maumar in https://github.com/dotnet/efcore/pull/35891
* Merge branch 'release/9.0' =>'release/9.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35896
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35912
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35931
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35925
* [release/9.0] Disable Cosmos tests on CI by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35933
* [release/9.0-staging] Cosmos Full Text Search support (query part) by @​maumar in https://github.com/dotnet/efcore/pull/35909
* [release/9.0] Merge Cosmos full-text search support from release/9.0-staging by @​maumar in https://github.com/dotnet/efcore/pull/35953
* [release/9.0] Bump version of Cosmos SDK from 3.45 to 3.48 to improve hybrid search experience out of the box by @​maumar in https://github.com/dotnet/efcore/pull/35954


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.4...v9.0.5

Commits viewable in [compare view](https://github.com/dotnet/efcore/compare/v9.0.4...v9.0.11).
</details>

Pinned [Microsoft.EntityFrameworkCore.Design](https://github.com/dotnet/efcore) at 9.0.11.

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

_Sourced from [Microsoft.EntityFrameworkCore.Design's releases](https://github.com/dotnet/efcore/releases)._

## 9.0.11

[Release](https://github.com/dotnet/core/releases/tag/v9.0.11)

## What's Changed
* [release/9.0-staging] Merge release/9.0 to release/9.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36800
* [release/8.0-staging] Merge release/8.0 to release/8.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36798
* [release/9.0-staging] Fix performance degradation in converters because the instance was not reused by @​cincuranet in https://github.com/dotnet/efcore/pull/36897
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36915
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36916
* Update branding to 9.0.11 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36925
* Update branding to 8.0.22 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36924
* [release/8.0] Merge release/8.0-staging to release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36943
* [release/9.0] Merge release/9.0-staging to release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36944
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36939
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36968
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36969
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36973
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36981


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.10...v9.0.11

## 9.0.10

[Release](https://github.com/dotnet/core/releases/tag/v9.0.10)

## What's Changed
* [release/8.0-staging] Merge release/8.0 to release/8.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36540
* [release/9.0-staging] Merge release/9.0 to release/9.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36541
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36690
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36697
* Update branding to 8.0.21 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36696
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36699
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36727
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36728
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36734
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36753
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36765
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36782
* [release/8.0] Disable Guardian Dotnet Analyzers by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36776
* [release/9.0] Disable Guardian Dotnet Analyzers by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36777
* [8.0] Resolve query logger from QueryContext in shaper generation (#​36758) by @​roji in https://github.com/dotnet/efcore/pull/36779
* [9.0] Resolve query logger from QueryContext in shaper generation (#​36758) by @​roji in https://github.com/dotnet/efcore/pull/36778
* [release/8.0] Merge release/8.0-staging to release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36788
* [release/9.0] Merge release/9.0-staging to release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36789
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36784
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36833
* [release/8.0] Remove OSX.13.ARM64 from HelixTargetQueues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36838
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36841
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36852
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36853
* [release/8.0] Remove OSX.13.Amd64 target from HelixTargetQueues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36855
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36860
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36867


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.9...v9.0.10

## 9.0.9

[Release](https://github.com/dotnet/core/releases/tag/v9.0.9)

## What's Changed
* [release/8.0] Merge release/8.0 => release/8.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36197
* [release/9.0] Merge release/9.0 => release/9.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36201
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36398
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36495
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36498
* Update branding to 8.0.20 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36497
* [release/9.0] Dispose related readers in GroupBySplitQueryingEnumerable (#​36484) by @​roji in https://github.com/dotnet/efcore/pull/36490
* [release/8.0] Dispose related readers in GroupBySplitQueryingEnumerable (#​36484) by @​roji in https://github.com/dotnet/efcore/pull/36489
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36500
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36512
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36511
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36514
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36533
* [release/8.0] Merge release/8.0-staging to release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36531
* [release/9.0] Merge release/9.0-staging to release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36532
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36534
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36537
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36592


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.8...v9.0.9

## 9.0.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.7)

## What's Changed
* Merge branch 'release/8.0' =>'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35893
* Merge branch 'release/8.0' =>'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/36047
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36098
* Delete src/arcade/eng/common directory by @​akoeplinger in https://github.com/dotnet/efcore/pull/36102
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36143
* [release/8.0] Add missing parentheses for set operations by @​roji in https://github.com/dotnet/efcore/pull/36139
* [release/9.0] Add missing parentheses for set operations by @​roji in https://github.com/dotnet/efcore/pull/36138
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36186
* Update branding to 8.0.18 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36185
* [release/8.0] Merge release/8.0-staging => release/8.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36193
* [release/9.0] Merge release/9.0-staging => release/9.0 by @​cincuranet in https://github.com/dotnet/efcore/pull/36194
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36192
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36213
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36222
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/36223
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/36227


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.6...v9.0.7

## 9.0.6

## Bug Fixes

- **Cosmos/FTS: Improved FullTextScore Translation for Multiple Keywords**  
  The translation of `FullTextScore` in Cosmos Full-Text Search has been updated to use multiple keywords instead of a keyword array, addressing issues with search accuracy and query compatibility. This resolves [#​35983](https://github.com/dotnet/efcore/issues/35983) and ensures more reliable full-text search results.  
  [#​36000](https://github.com/dotnet/efcore/pull/36000) by [@​maumar](https://github.com/maumar)

## Dependency Updates

- **[release/8.0] Update dependencies from dotnet/arcade**  
  Updated the Arcade build infrastructure dependencies for the 8.0 release branch, bringing in the latest improvements and security fixes from the Arcade ecosystem.  
  [#​35930](https://github.com/dotnet/efcore/pull/35930) by [@​dotnet-maestro](https://github.com/dotnet-maestro)
- **[release/9.0] Update dependencies from dotnet/arcade**  
  Updated Arcade dependencies for the 9.0 release branch, ensuring the build system benefits from the latest tooling and reliability enhancements.  
  [#​36006](https://github.com/dotnet/efcore/pull/36006) by [@​dotnet-maestro](https://github.com/dotnet-maestro)
- **[release/8.0] Update dependencies from dotnet/arcade**  
  Another update to Arcade dependencies for the 8.0 branch, further aligning with upstream improvements and fixes.  
  [#​36085](https://github.com/dotnet/efcore/pull/36085) by [@​dotnet-maestro](https://github.com/dotnet-maestro)
- **[release/9.0] Update dependencies from dotnet/arcade**  
  Additional update to Arcade dependencies for the 9.0 branch, maintaining up-to-date build tooling and infrastructure.  
  [#​36065](https://github.com/dotnet/efcore/pull/36065) by [@​dotnet-maestro](https://github.com/dotnet-maestro)

## Technical Improvements

- **Merging Internal Commits for release/8.0**  
  Integrated various internal commits into the 8.0 release branch, improving code quality, maintainability, and aligning with internal standards.  
  [#​35926](https://github.com/dotnet/efcore/pull/35926) by [@​vseanreesermsft](https://github.com/vseanreesermsft)
- **Merging Internal Commits for release/8.0**  
  Additional internal commits merged into the 8.0 branch, further enhancing stability and maintainability.  
  [#​36080](https://github.com/dotnet/efcore/pull/36080) by [@​vseanreesermsft](https://github.com/vseanreesermsft)
- **Merging Internal Commits for release/9.0**  
  Integrated internal improvements into the 9.0 branch, ensuring consistency and codebase health.  
  [#​36081](https://github.com/dotnet/efcore/pull/36081) by [@​vseanreesermsft](https://github.com/vseanreesermsft)

## Infrastructure

- **Update Branding to 9.0.6**  
  Updated the product branding and version numbers to 9.0.6, ensuring that all assemblies and packages reflect the correct release version.  
  [#​36044](https://github.com/dotnet/efcore/pull/36044) by [@​vseanreesermsft](https://github.com/vseanreesermsft)
- **Update Branding to 8.0.17**  
  Updated branding for the 8.0 release line to version 8.0.17, keeping versioning consistent across all release artifacts.  
  [#​36043](https://github.com/dotnet/efcore/pull/36043) by [@​vseanreesermsft](https://github.com/vseanreesermsft)

## Miscellaneous

- **[automated] Merge branch 'release/8.0' => 'release/9.0'**  
  Automated merge of changes from the 8.0 branch into the 9.0 branch, ensuring that all relevant fixes and improvements are carried forward.  
  [#​35927](https://github.com/dotnet/efcore/pull/35927) by [@​github-actions](https://github.com/github-actions)
- **Merge release/9.0 to release/9.0-staging**  
  Merged the 9.0 branch into the 9.0-staging branch, preparing for further testing and validation before final release.  
  [#​36051](https://github.com/dotnet/efcore/pull/36051) by [@​AndriySvyryd](https://github.com/AndriySvyryd)
 ... (truncated)

## 9.0.5

[Release](https://github.com/dotnet/core/releases/tag/v9.0.5)

## What's Changed
* Merge branch 'release/9.0' => 'release/9.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35750
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35765
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35780
* [release/9.0-staging] Fix to #​35162 - Regression from EF Core 8 to 9: MigrationBuilder.DropTable Causes Issues with Subsequent Table Recreation by @​maumar in https://github.com/dotnet/efcore/pull/35776
* [release/9.0-staging] Fix to #​21006 - Support a default value for non-nullable properties by @​maumar in https://github.com/dotnet/efcore/pull/35782
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35795
* Update branding to 9.0.5 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35889
* Update branding to 8.0.16 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35888
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions in https://github.com/dotnet/efcore/pull/35772
* Merge branch 'release/9.0-staging' => 'release/9.0' by @​maumar in https://github.com/dotnet/efcore/pull/35891
* Merge branch 'release/9.0' =>'release/9.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35896
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35912
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35931
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35925
* [release/9.0] Disable Cosmos tests on CI by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35933
* [release/9.0-staging] Cosmos Full Text Search support (query part) by @​maumar in https://github.com/dotnet/efcore/pull/35909
* [release/9.0] Merge Cosmos full-text search support from release/9.0-staging by @​maumar in https://github.com/dotnet/efcore/pull/35953
* [release/9.0] Bump version of Cosmos SDK from 3.45 to 3.48 to improve hybrid search experience out of the box by @​maumar in https://github.com/dotnet/efcore/pull/35954


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.4...v9.0.5

Commits viewable in [compare view](https://github.com/dotnet/efcore/compare/v9.0.4...v9.0.11).
</details>

Pinned [Riok.Mapperly](https://github.com/riok/mapperly) at 4.3.0.

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

_Sourced from [Riok.Mapperly's releases](https://github.com/riok/mapperly/releases)._

## 4.3.0

## 🚀 Features

- Support unsafe accessors in generic classes and nested mappers by @​latonz in #​1814
- Support roslyn 4.14 by @​latonz in #​1837
- Allow to disable null mismatch diagnostics RMG089 per member by @​3sRykaert in #​1804
- Include mapping configuration by @​faddiv in #​1833
- Support multiple mapping configuration includes by @​latonz in #​1854
- Explicit named mappings by @​faddiv in #​1863
- Support ref keyword in user defined methods for the target parameter by @​EraYaN in #​1895
- Add notnull constraint support in nullable disabled contexts by @​clegoz in #​1947
- Reference External mappings by @​faddiv in #​1890
- Add support for ignoring static convert methods with MapperIgnore by @​iclectic in #​1941

## 🐛 Bug Fixes

- Nullable user implemented value type mappings in queryable projections by @​latonz in #​1835
- Resolve top-level user-implemented mappings when resolving queryable projections by @​latonz in #​1852
- Name collision, reuse context within switch statement by @​EraYaN in #​1911
- Correctly inline user-defined nested queryable projection mappings by @​latonz in #​1966
- Handle single segment fullnameof by @​faddiv in #​1980

**Full Changelog**: https://github.com/riok/mapperly/compare/v4.2.1...v4.3.0


## 4.3.0-next.6

## 🐛 Bug Fixes

- fix: handle single segment fullnameof by @​faddiv in #​1980

**Full Changelog**: https://github.com/riok/mapperly/compare/v4.3.0-next.5...v4.3.0-next.6


## 4.3.0-next.5

## 🚀 Features

- Reference External mappings by @​faddiv in #​1890
- Add support for ignoring static convert methods with MapperIgnore by @​iclectic in #​1941

## 🐛 Bug Fixes

- Correctly inline user-defined nested queryable projection mappings by @​latonz in #​1966

**Full Changelog**: https://github.com/riok/mapperly/compare/v4.3.0-next.4...v4.3.0-next.5


## 4.3.0-next.4

## 🚀 Features

- fix: add notnull constraint support in nullable disabled contexts by @​clegoz in #​1947

## 🐛 Bug Fixes

- fix: Name collision, reuse context within switch statement by @​EraYaN in #​1911

**Full Changelog**: https://github.com/riok/mapperly/compare/v4.3.0-next.3...v4.3.0-next.4


## 4.3.0-next.3

## 🚀 Features

- feat: explicit named mappings by @​faddiv in #​1863
- feat: support ref keyword in user defined methods for the target parameter by @​EraYaN in #​1895

**Full Changelog**: https://github.com/riok/mapperly/compare/v4.3.0-next.2...v4.3.0-next.3


## 4.3.0-next.2

## 🚀 Features

- feat: Include mapping configuration by @​faddiv in #​1833

**Full Changelog**: https://github.com/riok/mapperly/compare/v4.3.0-next.1...v4.3.0-next.2


## 4.3.0-next.1

## 🐛 Bug Fixes

- fix: resolve top-level user-implemented mappings when resolving queryable projections by @​latonz in #​1852

**Full Changelog**: https://github.com/riok/mapperly/compare/v4.3.0-next.0...v4.3.0-next.1


## 4.3.0-next.0

## 🚀 Features

- feat: support unsafe accessors in generic classes and nested mappers by @​latonz in #​1814
- feat: support roslyn 4.14 by @​latonz in #​1837
- feat: Allow to disable null mismatch diagnostics RMG089 per member by @​3sRykaert in #​1804

## 🐛 Bug Fixes

- fix: nullable user implemented value type mappings in queryable projections by @​latonz in #​1835

**Full Changelog**: https://github.com/riok/mapperly/compare/v4.2.1...v4.3.0-next.0


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

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

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

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

## 10.1.0

## What's Changed

### New Features

* Add public method `SchemaRepository.ReplaceSchemaId` by @​bkoelman in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3708

### Bug Fixes

* Exclude inherited properties only when base added to `AllOf` by @​John-Paul-R in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3692

### Miscellaneous

* Add clarifying example in migration guide to v10 by @​markuspalme in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3672
* Add markdown linter by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3673
* Update dependencies by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3685
* Validate OpenAPI documents create valid C# clients by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3686
* End-to-end client validation tests by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3687
* Add NSwag client test by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3689
* Fix GitHub step summaries by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3691
* Clarify compatibility by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3694
* Update zizmor by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3695
* Suppress zizmor false-positive by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3696
* Refactor tests by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3705
* Use NuGet Trusted Publishing by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3574
* Annotate `TryLookupByType` with nullability hints by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3719
* Bump swagger-ui-dist to 5.31.0 by @​dependabot in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3720

## New Contributors

* @​markuspalme made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3672
* @​John-Paul-R made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3692

**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.0.1...v10.1.0


## 10.0.1

## What's Changed

* Prepare for OpenAPI.NET 3.0 by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3647
* Fix exception sorting operation tags by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3652
* Improve version table by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3653
* Update migration guide by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3654

**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.0.0...v10.0.1

## 10.0.0

# Swashbuckle.AspNetCore v10.0.0

> [!IMPORTANT]  
> This release contains major breaking changes.
>
> Read our [v10 migration guide](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/blob/HEAD/docs/migrating-to-v10.md) for further information.

With this release, Swashbuckle.AspNetCore adds support for generating OpenAPI 3.1 documents and for ASP.NET Core 10.

Swashbuckle.AspNetCore v10 depends on [OpenAPI.NET v2.3](https://github.com/microsoft/OpenAPI.NET/releases/tag/v2.3.0) which introduces many breaking changes to the public API surface. More information can be found in their [OpenAPI.NET v2 Upgrade Guide](https://github.com/microsoft/OpenAPI.NET/blob/main/docs/upgrade-guide-2.md).

To reduce the number of breaking behavioural changes in Swashbuckle.AspNetCore v10, generation of OpenAPI 3.1 documents is **opt-in**.
To generate OpenAPI 3.1 documents, change the OpenAPI version as shown in the code snippet below:

```csharp
app.UseSwagger(options =>
{
    options.OpenApiVersion = OpenApiSpecVersion.OpenApi3_1;
});

[!TIP]
It is strongly recommended that you upgrade to Swashbuckle.AspNetCore v9.0.6 before upgrading to v10.

[!IMPORTANT]
Use of Swashbuckle.AspNetCore with the ASP.NET Core WithOpenApi() method is no longer supported.

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.6...v10.0.0

9.0.6

What's Changed

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

9.0.5

What's Changed

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

9.0.4

What's Changed

New Contributors

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

9.0.3

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.2...v9.0.3

9.0.2

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.1...v9.0.2

9.0.1

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.0...v9.0.1

9.0.0

📣 This release contains the following breaking changes:

  • Drops support for netstandard2.0 and thus .NET Framework - now only net8.0 and net9.0 are supported.
  • Removes all public members annotated as [Obsolete] in previous releases.
  • Removes the deprecated --serializeasv2 option from Swashbuckle.AspNetCore.Cli, which was superseded by --openapiversion from version 8.0.0.

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v8.1.4...v9.0.0

8.1.4

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v8.1.3...v8.1.4

8.1.3

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v8.1.2...v8.1.3

8.1.2

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v8.1.1...v8.1.2

Commits viewable in compare view.

Pinned System.CodeDom at 10.0.1.

Release notes

Sourced from System.CodeDom's releases.

10.0.0-preview.6.25358.103

You can build .NET 10.0 Preview 6 from the repository by cloning the release tag v10.0.0-preview.6.25358.103 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.5.25277.114

You can build .NET 10.0 Preview 5 from the repository by cloning the release tag v10.0.0-preview.5.25277.114 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.4.25258.110

You can build .NET 10.0 Preview 4 from the repository by cloning the release tag v10.0.0-preview.4.25258.110 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.3.25171.5

You can build .NET 10.0 Preview 3 from the repository by cloning the release tag v10.0.0-preview.3.25171.5 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.2.25163.2

You can build .NET 10.0 Preview 2 from the repository by cloning the release tag v10.0.0-preview.2.25163.2 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.1.25080.5

You can build .NET 10.0 Preview 1 from the repository by cloning the release tag v10.0.0-preview.1.25080.5 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.112

You can build .NET 9.0 from the repository by cloning the release tag v9.0.112 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.111

You can build .NET 9.0 from the repository by cloning the release tag v9.0.111 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.110

You can build .NET 9.0 from the repository by cloning the release tag v9.0.110 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.109

You can build .NET 9.0 from the repository by cloning the release tag v9.0.109 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.101

You can build .NET 9.0 from the repository by cloning the release tag v9.0.101 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.7

You can build .NET 9.0 from the repository by cloning the release tag v9.0.7 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.6

You can build .NET 9.0 from the repository by cloning the release tag v9.0.6 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.5

You can build .NET 9.0 from the repository by cloning the release tag v9.0.5 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You...

_Descrip...

Description has been truncated

Bumps Dunet from 1.11.2 to 1.11.3
Bumps Jab from 0.11.0 to 0.12.0
Bumps JetBrains.Annotations from 2025.1.0-eap1 to 2025.2.4
Bumps LanguageExt.Core from 5.0.0-beta-54 to 5.0.0-beta-55
Bumps LinqKit.Core from 1.2.8 to 1.2.9
Bumps Microsoft.EntityFrameworkCore from 9.0.4 to 9.0.11
Bumps Microsoft.EntityFrameworkCore.Design from 9.0.4 to 9.0.11
Bumps Riok.Mapperly from 4.2.1 to 4.3.0
Bumps Swashbuckle.AspNetCore.Annotations from 8.1.1 to 10.1.0
Bumps System.CodeDom from 9.0.4 to 10.0.1
Bumps System.Linq.Async from 6.0.1 to 7.0.0
Bumps TestableIO.System.IO.Abstractions from 22.0.14 to 22.1.0
Bumps TestableIO.System.IO.Abstractions.Extensions from 22.0.3 to 22.0.4
Bumps TestableIO.System.IO.Abstractions.Wrappers from 22.0.14 to 22.1.0

---
updated-dependencies:
- dependency-name: Dunet
  dependency-version: 1.11.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Jab
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: JetBrains.Annotations
  dependency-version: 2025.2.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: LanguageExt.Core
  dependency-version: 5.0.0-beta-55
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: LinqKit.Core
  dependency-version: 1.2.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-version: 9.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-version: 9.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Riok.Mapperly
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Swashbuckle.AspNetCore.Annotations
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: System.CodeDom
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: System.Linq.Async
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: TestableIO.System.IO.Abstractions
  dependency-version: 22.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: TestableIO.System.IO.Abstractions.Extensions
  dependency-version: 22.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: TestableIO.System.IO.Abstractions.Wrappers
  dependency-version: 22.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Dec 22, 2025
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