Skip to content

Bump the nuget-dependencies group with 31 updates#208

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/dot-config/nuget-dependencies-4a6a2754da
Closed

Bump the nuget-dependencies group with 31 updates#208
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/dot-config/nuget-dependencies-4a6a2754da

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 26, 2026

Updated Dunet from 1.11.2 to 1.13.1.

Release notes

Sourced from Dunet's releases.

1.13.1

What's Changed

Packages

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

Full Changelog

domn1995/dunet@v1.13.0...v1.13.1

1.13.0

What's Changed

Switch expressions on union types are now checked for exhaustiveness. For example:

using Dunet;
using static Option<int>;

[Union]
partial record Option<T>
{
    partial record Some(T Value);
    partial record None;
}

Option<int> option = new Some(42);

// Does not emit an exhaustiveness warning since all union variants are handled.
var message = option switch
{
    Some(var value) => $"The value is {value}!",
    None => "There's no value.",
};

// Emits an exhaustiveness warning because Some variant with Value != 5 is unhandled.
var message2 = option switch
{
   Some(5) => "Value is 5!",
   None => "There's no value.",
}

This largely makes the .Match() method unnecessary and a future version of the package may mark it as obsolete.

Packages

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

Full Changelog

domn1995/dunet@v1.12.0...v1.13.0

1.12.0

What's Changed

[Union]
public partial record Option<T>
{
    // An implicit conversion from `T` to `Some` is now generated.
    public partial record Some(T Value);
    public partial record None;
}

Packages

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

Full Changelog

domn1995/dunet@v1.11.4...v1.12.0

1.11.4

What's Changed

Packages

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

Full Changelog

domn1995/dunet@v1.11.3...v1.11.4

New Contributors

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.

Updated Jab from 0.11.0 to 0.12.0.

Release notes

Sourced from Jab's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated JetBrains.Annotations from 2025.1.0-eap1 to 2025.2.4.

Release notes

Sourced from JetBrains.Annotations's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated LanguageExt.Core from 5.0.0-beta-54 to 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>

Updated [LinqKit.Core](https://github.com/scottksmith95/LINQKit) from 1.2.8 to 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>

Updated [Microsoft.AspNetCore.Mvc.Testing](https://github.com/dotnet/aspnetcore) from 9.0.4 to 9.0.12.

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

_Sourced from [Microsoft.AspNetCore.Mvc.Testing's releases](https://github.com/dotnet/aspnetcore/releases)._

## 9.0.12

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

## What's Changed
* Update branding to 9.0.12 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/64248
* Update `Microsoft.Build` versions to 17.8.43 by @​MackinnonBuck in https://github.com/dotnet/aspnetcore/pull/64277
* [release/9.0] (deps): Bump src/submodules/googletest from `9706f75` to `6ec14df` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/64230
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/64111
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/64065
* [release/9.0] Upgrade to MacOS 15 for CI by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/64310
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/64312
* [release/9.0] Don't use netcoreapp2.1 in dotnet-get-document by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/64351
* [release/9.0] AppContext for HttpSys CBT hardening by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/64297
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/64350
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/64388
* [release/9.0] Delete signalr-daily-tests.yml by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/64589
* [release/9.0] (deps): Bump src/submodules/googletest from `6ec14df` to `1b96fa1` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/64580
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/64503


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.11...v9.0.12

## 9.0.11

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

## What's Changed
* Update branding to 9.0.11 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63950
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63677
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63678
* [release/9.0] (deps): Bump src/submodules/googletest from `eb2d85e` to `9706f75` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/63894
* [release/9.0] Fixed devtools url used for debug with chrome and edge by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/61948
* [release/9.0] (http2): Lower WINDOWS_UPDATE received on (half)closed stream to stream abortion by @​DeagleGross in https://github.com/dotnet/aspnetcore/pull/63934
* [release/9.0] Re-quarantine ServerRoutingTest.NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigation by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/63956
* [release/9.0] Fix nginx install on mac, linux by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/63966
* [Hot Reload] Do not attempt to apply empty deltas. by @​tmat in https://github.com/dotnet/aspnetcore/pull/63979
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/64036
* Revert log level severity for unknown proxy in ForwardedHeadersMiddleware by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/64091
* Set timeoutInMinutes to 0 for Windows build job by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/64126


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

## 9.0.10

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

## What's Changed
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63510
* [9.0] Make duplicate deb/rpm packages so we can sign them with the new PMC key by @​jkoritzinsky in https://github.com/dotnet/aspnetcore/pull/63249
* [release/9.0] Extend Unofficial 1ES template in IdentityModel nightly tests job by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/63465
* [release/9.0] (deps): Bump src/submodules/googletest from `373af2e` to `eb2d85e` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/63501
* [release/9.0] Quarantine ResponseBody_WriteContentLength_PassedThrough by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/63533
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63304
* [release/9.0] [OpenAPI] Use invariant culture for TextWriter by @​martincostello in https://github.com/dotnet/aspnetcore/pull/62239
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63303
* Unquarantine `RadioButtonGetsResetAfterSubmittingEnhancedForm` by @​ilonatommy in https://github.com/dotnet/aspnetcore/pull/63556
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63577
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63604
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63648
* backport(9.0): Fix runtime architecture detection logic in ANCM. by @​DeagleGross in https://github.com/dotnet/aspnetcore/pull/63707


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

## 9.0.9

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

## What's Changed
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63107
* [release/9.0] (deps): Bump src/submodules/googletest from `c67de11` to `373af2e` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/63035
* [release/9.0] Dispose the certificate chain elements with the chain by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/62992
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/62702
* [release/9.0] Update Microsoft.Build versions by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/62505
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/62832
* [release/9.0] Update SignalR Redis tests to use internal Docker Hub mirror by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/63116
* [release/9.0] [SignalR] Don't throw for message headers in Java client by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/62783
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63151
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63190
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63214


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

## 9.0.7

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

## What's Changed
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62242
* [release/9.0] (deps): Bump src/submodules/googletest from `04ee1b4` to `e9092b1` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/62199
* Fix OpenApiJsonSchema array parsing (#​62051) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62118
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61986
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61945
* [release/9.0] Update Alpine helix references by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/62240
* [Backport 9.0] [IIS] Manually parse exe bitness (#​61894) by @​BrennanConroy in https://github.com/dotnet/aspnetcore/pull/62038
* [release/9.0] Associate tagged keys with entries so replacements are not evicted by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62248
* [release/9.0] Block test that is failing after switching to latest-chrome by @​github-actions in https://github.com/dotnet/aspnetcore/pull/62283
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62281
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/62282
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/62303


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

## 9.0.6

## Bug Fixes

- **Forwarded Headers Middleware: Ignore X-Forwarded-Headers from Unknown Proxy** ([#​61622](https://github.com/dotnet/aspnetcore/pull/61622))  
  The Forwarded Headers Middleware now ignores `X-Forwarded-Headers` sent from unknown proxies. This change improves security by ensuring that only trusted proxies can influence forwarded header values, preventing potential spoofing or misrouting issues.

## Dependency Updates

- **Bump src/submodules/googletest from `52204f7` to `04ee1b4`** ([#​61762](https://github.com/dotnet/aspnetcore/pull/61762))  
  Updates the GoogleTest submodule to a newer commit, bringing in the latest improvements and bug fixes from the upstream project.
- **Update dependencies from dotnet/arcade** ([#​61714](https://github.com/dotnet/aspnetcore/pull/61714))  
  Updates internal build and infrastructure dependencies from the dotnet/arcade repository, ensuring compatibility and access to the latest build tools.
- **Update dependencies from dotnet/extensions** ([#​61571](https://github.com/dotnet/aspnetcore/pull/61571))  
  Refreshes dependencies from the dotnet/extensions repository, incorporating the latest features and fixes from the extensions libraries.
- **Update dependencies from dotnet/extensions** ([#​61877](https://github.com/dotnet/aspnetcore/pull/61877))  
  Further updates dependencies from dotnet/extensions, ensuring the project benefits from recent improvements and bug fixes.
- **Update dependencies from dotnet/arcade** ([#​61892](https://github.com/dotnet/aspnetcore/pull/61892))  
  Additional updates to build and infrastructure dependencies from dotnet/arcade, maintaining up-to-date tooling and build processes.

## Miscellaneous

- **Update branding to 9.0.6** ([#​61831](https://github.com/dotnet/aspnetcore/pull/61831))  
  Updates the project version and branding to 9.0.6, reflecting the new release and ensuring version consistency across the codebase.
- **Merging internal commits for release/9.0** ([#​61925](https://github.com/dotnet/aspnetcore/pull/61925))  
  Incorporates various internal commits into the release/9.0 branch, ensuring that all relevant changes are included in this release.

---

This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

Full Changelog: [v9.0.5...v9.0.6](https://github.com/dotnet/aspnetcore/compare/v9.0.5...v9.0.6)

## 9.0.5

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

## What's Changed
* Update branding to 9.0.5 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/61284
* [release/9.0] (deps): Bump src/submodules/googletest from `24a9e94` to `52204f7` by @​dependabot in https://github.com/dotnet/aspnetcore/pull/61261
* [release/9.0] Upgrade to Ubuntu 22 by @​github-actions in https://github.com/dotnet/aspnetcore/pull/61215
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60964
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/60902
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61355
* [release/9.0] Caching SERedis critical bugfix; defer HC metadata detection because of DI cycle by @​github-actions in https://github.com/dotnet/aspnetcore/pull/60916
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61354
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/61393
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61412
* Revert "Revert "[release/9.0] Update remnants of azureedge.net"" by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/60353
* [release/9.0] Fix preserving messages for stateful reconnect with backplane by @​github-actions in https://github.com/dotnet/aspnetcore/pull/61374
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in https://github.com/dotnet/aspnetcore/pull/61483
* [Identity] Fix Identity UI asset definitions by @​javiercn in https://github.com/dotnet/aspnetcore/pull/59100


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

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

Updated [Microsoft.CodeAnalysis.CSharp.Workspaces](https://github.com/dotnet/roslyn) from 4.13.0 to 5.0.0.

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

_Sourced from [Microsoft.CodeAnalysis.CSharp.Workspaces's releases](https://github.com/dotnet/roslyn/releases)._

No release notes found for this version range.

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

Updated [Microsoft.EntityFrameworkCore](https://github.com/dotnet/efcore) from 9.0.4 to 9.0.12.

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

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

## 9.0.12

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

## 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/36948
* [release/9.0-staging] Merge release/9.0 to release/9.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36949
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36980
* [release/9.0] Update Microsoft.Build.* versions by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37004
* [release/9.0] Merge release/9.0-staging to release/9.0 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37041
* [release/8.0] Update dependencies by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37048
* Update branding to 8.0.23 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37074
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37080
* [automated] Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37079
* Update branding to 9.0.12 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37075
* [release/9.0-staging] Fix 0-byte reads/writes on blobs by @​cincuranet in https://github.com/dotnet/efcore/pull/37068
* [release/8.0-staging] Fix 0-byte reads/writes on blobs by @​cincuranet in https://github.com/dotnet/efcore/pull/37067
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37088
* [release/8.0] Update BinSkim to 4.3.1 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37091
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37116
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37130
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37129
* [release/8.0] Change NuGet audit to moderate by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37138
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37135
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37160
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37161
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37163
* [release/9.0-staging] Handle .NET 10 MemoryExtensions.Contains overload with comparer by @​roji in https://github.com/dotnet/efcore/pull/37183
* [release/8.0-staging] Handle .NET 10 MemoryExtensions.Contains overload with comparer by @​roji in https://github.com/dotnet/efcore/pull/37182
* [release/8.0-staging] Update to Mac 15 queues. by @​cincuranet in https://github.com/dotnet/efcore/pull/37097
* [release/9.0-staging] Update to Mac 15 queues. by @​cincuranet in https://github.com/dotnet/efcore/pull/37098
* Merge release/8.0-staging to release/8.0 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37305
* [release/9.0] Fix snapshot generation to capture column type for JSON columns by @​Copilot in https://github.com/dotnet/efcore/pull/37294
* Merge release/9.0-staging to release/9.0 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37306
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37315
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37307


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

## 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.12).
</details>

Updated [Microsoft.EntityFrameworkCore.Design](https://github.com/dotnet/efcore) from 9.0.4 to 9.0.12.

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

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

## 9.0.12

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

## 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/36948
* [release/9.0-staging] Merge release/9.0 to release/9.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36949
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36980
* [release/9.0] Update Microsoft.Build.* versions by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37004
* [release/9.0] Merge release/9.0-staging to release/9.0 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37041
* [release/8.0] Update dependencies by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37048
* Update branding to 8.0.23 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37074
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37080
* [automated] Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37079
* Update branding to 9.0.12 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37075
* [release/9.0-staging] Fix 0-byte reads/writes on blobs by @​cincuranet in https://github.com/dotnet/efcore/pull/37068
* [release/8.0-staging] Fix 0-byte reads/writes on blobs by @​cincuranet in https://github.com/dotnet/efcore/pull/37067
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37088
* [release/8.0] Update BinSkim to 4.3.1 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37091
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37116
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37130
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37129
* [release/8.0] Change NuGet audit to moderate by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37138
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37135
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37160
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37161
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37163
* [release/9.0-staging] Handle .NET 10 MemoryExtensions.Contains overload with comparer by @​roji in https://github.com/dotnet/efcore/pull/37183
* [release/8.0-staging] Handle .NET 10 MemoryExtensions.Contains overload with comparer by @​roji in https://github.com/dotnet/efcore/pull/37182
* [release/8.0-staging] Update to Mac 15 queues. by @​cincuranet in https://github.com/dotnet/efcore/pull/37097
* [release/9.0-staging] Update to Mac 15 queues. by @​cincuranet in https://github.com/dotnet/efcore/pull/37098
* Merge release/8.0-staging to release/8.0 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37305
* [release/9.0] Fix snapshot generation to capture column type for JSON columns by @​Copilot in https://github.com/dotnet/efcore/pull/37294
* Merge release/9.0-staging to release/9.0 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37306
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37315
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37307


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

## 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.12).
</details>

Updated [Microsoft.EntityFrameworkCore.Relational](https://github.com/dotnet/efcore) from 9.0.4 to 9.0.12.

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

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

## 9.0.12

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

## 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/36948
* [release/9.0-staging] Merge release/9.0 to release/9.0-staging by @​cincuranet in https://github.com/dotnet/efcore/pull/36949
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/36980
* [release/9.0] Update Microsoft.Build.* versions by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37004
* [release/9.0] Merge release/9.0-staging to release/9.0 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37041
* [release/8.0] Update dependencies by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37048
* Update branding to 8.0.23 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37074
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37080
* [automated] Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37079
* Update branding to 9.0.12 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37075
* [release/9.0-staging] Fix 0-byte reads/writes on blobs by @​cincuranet in https://github.com/dotnet/efcore/pull/37068
* [release/8.0-staging] Fix 0-byte reads/writes on blobs by @​cincuranet in https://github.com/dotnet/efcore/pull/37067
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37088
* [release/8.0] Update BinSkim to 4.3.1 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37091
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37116
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37130
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/37129
* [release/8.0] Change NuGet audit to moderate by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/37138
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37135
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37160
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/efcore/pull/37161
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions[bot] in https://github.com/dotnet/efcore/pull/37163
* [release/9.0-staging] Handle .NET 10 MemoryExtensions.Contains overload with comparer by @​roji in https://github.com/dotnet/efcore/pull/37183
* [release/8.0-staging] Han...

_Description has been truncated_

Bumps Dunet from 1.11.2 to 1.13.1
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.AspNetCore.Mvc.Testing from 9.0.4 to 9.0.12
Bumps Microsoft.CodeAnalysis.CSharp.Workspaces from 4.13.0 to 5.0.0
Bumps Microsoft.EntityFrameworkCore from 9.0.4 to 9.0.12
Bumps Microsoft.EntityFrameworkCore.Design from 9.0.4 to 9.0.12
Bumps Microsoft.EntityFrameworkCore.Relational from 9.0.4 to 9.0.12
Bumps Microsoft.EntityFrameworkCore.Sqlite from 9.0.4 to 9.0.12
Bumps Microsoft.Extensions.DependencyInjection.Abstractions from 9.0.4 to 10.0.2
Bumps Microsoft.NET.Test.Sdk from 17.13.0 to 18.0.1
Bumps Newtonsoft.Json from 13.0.3 to 13.0.4
Bumps NUnit from 4.3.2 to 4.4.0
Bumps NUnit.Analyzers from 4.7.0 to 4.11.2
Bumps NUnit3TestAdapter from 5.0.0 to 6.1.0
Bumps Polly from 8.5.2 to 8.6.5
Bumps RestSharp from 112.1.0 to 113.1.0
Bumps Retro.ReadOnlyParams from 1.0.0 to 1.0.1
Bumps Riok.Mapperly from 4.2.1 to 4.3.1
Bumps Swashbuckle.AspNetCore.Annotations from 8.1.1 to 10.1.0
Bumps swashbuckle.aspnetcore.cli from 8.1.1 to 10.1.0
Bumps System.CodeDom from 9.0.4 to 10.0.2
Bumps System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.2
Bumps System.CommandLine.NamingConventionBinder from 2.0.0-beta4.22272.1 to 2.0.0-beta5.25306.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.TestingHelpers from 22.0.14 to 22.1.0
Bumps TestableIO.System.IO.Abstractions.Wrappers from 22.0.14 to 22.1.0

---
updated-dependencies:
- dependency-name: Dunet
  dependency-version: 1.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: Jab
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: 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.AspNetCore.Mvc.Testing
  dependency-version: 9.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-version: 9.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-version: 9.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Relational
  dependency-version: 9.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Sqlite
  dependency-version: 9.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Sqlite
  dependency-version: 9.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.DependencyInjection.Abstractions
  dependency-version: 10.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Newtonsoft.Json
  dependency-version: 13.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: NUnit
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: NUnit
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: NUnit
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: NUnit.Analyzers
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: NUnit.Analyzers
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: NUnit.Analyzers
  dependency-version: 4.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: NUnit3TestAdapter
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: NUnit3TestAdapter
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: NUnit3TestAdapter
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Polly
  dependency-version: 8.6.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: RestSharp
  dependency-version: 113.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Retro.ReadOnlyParams
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Retro.ReadOnlyParams
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Retro.ReadOnlyParams
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Retro.ReadOnlyParams
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Retro.ReadOnlyParams
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Riok.Mapperly
  dependency-version: 4.3.1
  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: swashbuckle.aspnetcore.cli
  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.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: System.CommandLine
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: System.CommandLine
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: System.CommandLine.NamingConventionBinder
  dependency-version: 2.0.0-beta5.25306.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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.TestingHelpers
  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.TestingHelpers
  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.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] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Jan 26, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 2, 2026

Superseded by #210.

@dependabot dependabot bot closed this Feb 2, 2026
@dependabot dependabot bot deleted the dependabot/nuget/dot-config/nuget-dependencies-4a6a2754da branch February 2, 2026 09:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants