Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 4, 2025

Updated Microsoft.Data.SqlClient from 5.2.2 to 6.1.0.

Release notes

Sourced from Microsoft.Data.SqlClient's releases.

6.1.0

Release Notes

Stable Release 6.1.0 - 2025-07-25

This update brings the following changes since the
6.0.2 stable release:

Added

Added dedicated SQL Server vector datatype support

What Changed:

  • Optimized vector communications between MDS and SQL Server 2025, employing a
    custom binary format over the TDS protocol.
    (#​3433,
    #​3443)
  • Reduced processing load compared to existing JSON-based vector support.
  • Initial support for 32-bit single-precision floating point vectors.

Who Benefits:

  • Applications moving large vector data sets will see beneficial improvements
    to processing times and memory requirements.
  • Vector-specific APIs are ready to support future numeric representations with
    a consistent look-and-feel.

Impact:

  • Reduced transmission and processing times for vector operations versus JSON
    using SQL Server 2025 preview:
    • Reads: 50x improvement
    • Writes: 3.3x improvement
    • Bulk Copy: 19x improvement
    • (Observed with vector column of max 1998 size, and 10,000 records for each
      operation.)
  • Improved memory footprint due to the elimination of JSON
    serialization/deserialization and string representation bloat.
  • For backwards compatibility with earlier SQL Server Vector implementations,
    applications may continue to use JSON strings to send/receive vector data,
    although they will not see any of the performance improvements noted above.

Revived .NET Standard 2.0 target support

What Changed:

  • Support for targeting .NET Standard 2.0 has returned.
    (#​3381)
  • Support had previously been removed in the 6.0 release, with the
    community voicing concerns.
    ... (truncated)

6.1.0-preview2

Preview Release 6.1.0-preview2.25178.5 - 2025-06-27

This update brings the following changes since the 6.1.0-preview1 release:

Added

Added dedicated SQL Server vector datatype support

What Changed:

  • Optimized vector communications between MDS and SQL Server 2025, employing a custom binary format over the TDS protocol. (#​3433, #​3443)
  • Reduced processing load compared to existing JSON-based vector support.
  • Initial support for 32-bit single-precision floating point vectors.

Who Benefits:

  • Applications moving large vector data sets will see beneficial improvements to processing times and memory requirements.
  • Vector-specific APIs are ready to support future numeric representations with a consistent look-and-feel.

Impact:

  • Reduced transmission and processing times for vector operations versus JSON using SQL Server 2025 preview:
    • Reads: 50x improvement
    • Writes: 3.3x improvement
    • Bulk Copy: 19x improvement
    • (Observed with vector column of max 1998 size, and 10,000 records for each operation.)
  • Improved memory footprint due to the elimination of JSON serialization/deserialization and string representation bloat.
  • For backwards compatibility with earlier SQL Server Vector implementations, applications may continue to use JSON strings to send/receive vector data, although they will not see any of the performance improvements noted above.

Revived .NET Standard 2.0 target support

What Changed:

Who Benefits:

  • Libraries that depend on MDS may seamlessly target any of the following frameworks:
    • .NET Standard 2.0
    • .NET Framework 4.6.2 and above
    • .NET 8.0
    • .NET 9.0
  • Applications should continue to target runtimes.
    • The MDS .NET Standard 2.0 target framework support does not include an actual implementation, and cannot be used with a runtime.
    • An application's build/publish process should always pick the appropriate MDS .NET/.NET Framework runtime implementation.
    • Custom build/publish actions that incorrectly try to deploy the MDS .NET Standard 2.0 reference DLL at runtime are not supported.

Impact:

... (truncated)

6.1.0-preview1

This update brings the following changes over the previous release:

Added

  • Added packet multiplexing support to improve large data read performance. #​2714 #​3161 #​3202
  • Added support for special casing with Fabric endpoints. #​3084

Fixed

  • Fixed distributed transactions to be preserved during pooled connection resets. #​3019.
  • Fixed application crash when the Data Source parameter begins with a comma. #​3250.
  • Resolved synonym count discrepancies in debug mode. #​3098.
  • Addressed warnings for down-level SSL/TLS versions. #​3126.

Changed

New Contributors

6.0.2

This update brings the below changes over the previous release:

Fixed

  • Fixed possible NullPointerException during socket receive #​3283
  • Fixed reference assembly definitions for SqlJson APIs #​3169
  • Fixed an error reading the output parameter of type JSON while executing stored procedure #​3173

Changed

6.0.1

Released to NuGet.org on 2025-01-23

Breaking Changes

  • Removed support for .NET Standard. #​2386
  • Removed support for .NET 6 #​2927
  • Removed UWP (UAP) references. #​2483
  • Removed SQL 2000 client-side debugging support for .NET Framework #​2981, #​2940

Added

JSON Support

JSON data type support is now available in Microsoft.Data.SqlClient v6.0. This release introduces SqlJson type available as an extension to System.Data.SqlDbTypes:

using System;
using System.Data.SqlTypes;
using System.Text.Json;

namespace Microsoft.Data.SqlTypes
{
    /// <summary>
    /// Represents the JSON data type in SQL Server.
    /// </summary>
    public class SqlJson : INullable
    {
        /// <summary>
        /// Parameterless constructor. Initializes a new instance of the SqlJson class which 
        /// represents a null JSON value.
        /// </summary>
        public SqlJson() { }

        /// <summary>
        /// Takes a <see cref="string"/> as input and initializes a new instance of the SqlJson class.
        /// </summary>
        /// <param name="jsonString"></param>
        public SqlJson(string jsonString) { }

        /// <summary>
        /// Takes a <see cref="JsonDocument"/> as input and initializes a new instance of the SqlJson class.
        /// </summary>
        /// <param name="jsonDoc"></param>
        public SqlJson(JsonDocument jsonDoc) { }

        /// <inheritdoc/>
        public bool IsNull => throw null;

        /// <summary>
        /// Represents a null instance of the <see cref="SqlJson"/> type.
 ... (truncated)

## 6.0.0-preview3

## Breaking Changes
- Dropped support for .NET 6 [#​2927](https://github.com/dotnet/SqlClient/pull/2927)
- Removed SQL 2000 client-side debugging support for .NET Framework [#​2981](https://github.com/dotnet/SqlClient/pull/2981), [#​2940](https://github.com/dotnet/SqlClient/pull/2940)

### Added
- Enabled NuGet package auditing via NuGet.org audit source [#​3024](https://github.com/dotnet/SqlClient/pull/3024)
- Added support for .NET 9 [#​2946](https://github.com/dotnet/SqlClient/pull/2946)
- Added dependency on System.Security.Cryptography.Pkcs:9.0.0 to address [SYSLIB0057](https://learn.microsoft.com/en-us/dotnet/fundamentals/syslib-diagnostics/syslib0057)[#​2946](https://github.com/dotnet/SqlClient/pull/2946)
- Added dependency on Microsoft.Bcl.Cryptography:9.0.0 [#​2946](https://github.com/dotnet/SqlClient/pull/2946)
- Added missing SqlCommand_BeginExecuteReader code sample [#​3009](https://github.com/dotnet/SqlClient/pull/3009)
- Added support for SqlConnectionOverrides in OpenAsync() API [#​2433](https://github.com/dotnet/SqlClient/pull/2433)
- Added localization in Czech, Polish, and Turkish [#​2987](https://github.com/dotnet/SqlClient/pull/2987)

### Fixed
- Reverted default value of UseMinimumLoginTimeout context switch to 'true' [#​2419](https://github.com/dotnet/SqlClient/pull/2419)
- Added missing DynamicallyAccessedMembers attributes in .NET Runtime reference assemblies. [#​2946](https://github.com/dotnet/SqlClient/pull/2946)
- Synchronized dependencies of Reference Assemblies with Runtime assemblies [#​2878](https://github.com/dotnet/SqlClient/pull/2878)
- Fixed lazy initialization of the _SqlMetaData hidden column map for .NET Framework [#​2964](https://github.com/dotnet/SqlClient/pull/2964)

### Changed
- Updated Microsoft.Extensions.Caching.Memory to 9.0.0 for all frameworks [#​2946](https://github.com/dotnet/SqlClient/pull/2946)
- Updated System.Configuration.ConfigurationManager to 9.0.0 [#​2946](https://github.com/dotnet/SqlClient/pull/2946)
- Updated docs to use absolute links [#​2949](https://github.com/dotnet/SqlClient/pull/2949)
- Removed System.Text.Json dependency from .NET 8 [#​2930](https://github.com/dotnet/SqlClient/pull/2930)

### Contributors

Thanks to the following public contributors. Their efforts toward this project are very much appreciated.

- @​MichelZ
- @​EamonHetherton
- @​edwardneal
- @​deadlydog
- @​mus65

For detailed release notes, refer to [6.0.0-preview3.md](https://github.com/dotnet/SqlClient/blob/main/release-notes/6.0/6.0.0-preview3.md)

## 6.0.0-preview2

### Added

- Added a dependency on System.Text.Json 8.0.5 for .NET 8+ and 6.0.10 for other versions [#​2921](https://github.com/dotnet/SqlClient/pull/2921)
- Added support for [JSON native datatype](https://learn.microsoft.com/en-us/sql/t-sql/data-types/json-data-type?view=azuresqldb-current&preserve-view=true) currently in [Public preview in SQL Server](https://learn.microsoft.com/azure/azure-sql/database/doc-changes-updates-release-notes-whats-new?view=azuresql).  [#​2916](https://github.com/dotnet/SqlClient/pull/2916), [#​2892](https://github.com/dotnet/SqlClient/pull/2892), [#​2891](https://github.com/dotnet/SqlClient/pull/2891), [#​2880](https://github.com/dotnet/SqlClient/pull/2880), [#​2882](https://github.com/dotnet/SqlClient/pull/2882), [#​2829](https://github.com/dotnet/SqlClient/pull/2829), [#​2830](https://github.com/dotnet/SqlClient/pull/2830)
- Added readme to nuget package [#​2826](https://github.com/dotnet/SqlClient/pull/2826)

### Fixed

- Fixed scale serialization when explicitly set to 0 [#​2411](https://github.com/dotnet/SqlClient/pull/2411)
- Fixed issue blocking GetSchema commands from being enrolled into the current transaction [#​2876](https://github.com/dotnet/SqlClient/pull/2876)
- Adjusted retry logic to allow errors with negative numbers to be considered transient [#​2896](https://github.com/dotnet/SqlClient/pull/2896)
- Fixed string formatting in OutOfMemory exceptions [#​2797](https://github.com/dotnet/SqlClient/pull/2797)
- Increased routing attempts to 10 in netcore for LoginNoFailover and added routing support to LoginWithFailover to standardize routing behavior between netcore and netfx [#​2873](https://github.com/dotnet/SqlClient/pull/2873)
- Restructured documentation into XML format so that it displays correctly in visual studio [#​2836](https://github.com/dotnet/SqlClient/pull/2836), [#​2822](https://github.com/dotnet/SqlClient/pull/2822), [#​2834](https://github.com/dotnet/SqlClient/pull/2834), [#​2851](https://github.com/dotnet/SqlClient/pull/2851), [#​2863](https://github.com/dotnet/SqlClient/pull/2863), [#​2864](https://github.com/dotnet/SqlClient/pull/2864), [#​2865](https://github.com/dotnet/SqlClient/pull/2865), [#​2869](https://github.com/dotnet/SqlClient/pull/2869), [#​2871](https://github.com/dotnet/SqlClient/pull/2871), [#​2837](https://github.com/dotnet/SqlClient/pull/2837), [#​2821](https://github.com/dotnet/SqlClient/pull/2821)
- Fixed cleanup behavior when column decryption fails. Prevents leaving stale data on the wire for pooled connections [#​2843](https://github.com/dotnet/SqlClient/pull/2843), [#​2825](https://github.com/dotnet/SqlClient/pull/2825)

### Changed

- Updated System.Configuration.ConfigurationManager from 8.0.0 to 8.0.1 for .Net 8 [#​2921](https://github.com/dotnet/SqlClient/pull/2921)
- Updated Microsoft.Extensions.Caching.Memory from 8.0.0 to 8.0.1 for .Net 8 [#​2921](https://github.com/dotnet/SqlClient/pull/2921)
- Code Health Improvements [#​2915](https://github.com/dotnet/SqlClient/pull/2915), [#​2844](https://github.com/dotnet/SqlClient/pull/2844), [#​2812](https://github.com/dotnet/SqlClient/pull/2812), [#​2805](https://github.com/dotnet/SqlClient/pull/2805), [#​2897](https://github.com/dotnet/SqlClient/pull/2897), [#​2376](https://github.com/dotnet/SqlClient/pull/2376), [#​2814](https://github.com/dotnet/SqlClient/pull/2814), [#​2889](https://github.com/dotnet/SqlClient/pull/2889), [#​2885](https://github.com/dotnet/SqlClient/pull/2885), [#​2854](https://github.com/dotnet/SqlClient/pull/2854), [#​2835](https://github.com/dotnet/SqlClient/pull/2835), [#​2442](https://github.com/dotnet/SqlClient/pull/2442), [#​2820](https://github.com/dotnet/SqlClient/pull/2820), [#​2831](https://github.com/dotnet/SqlClient/pull/2831), [#​2907](https://github.com/dotnet/SqlClient/pull/2907), [#​2910](https://github.com/dotnet/SqlClient/pull/2910), [#​2898](https://github.com/dotnet/SqlClient/pull/2898), [#​2928](https://github.com/dotnet/SqlClient/pull/2928), [#​2929](https://github.com/dotnet/SqlClient/pull/2929), [#​2936](https://github.com/dotnet/SqlClient/pull/2936), [#​2939](https://github.com/dotnet/SqlClient/pull/2939)

## New Contributors
* @​Markeli made their first contribution in https://github.com/dotnet/SqlClient/pull/2797
* @​EamonHetherton made their first contribution in https://github.com/dotnet/SqlClient/pull/2411

For detailed release notes, refer to [6.0.0-preview2.md](https://github.com/dotnet/SqlClient/blob/main/release-notes/6.0/6.0.0-preview2.md)

## 6.0.0-preview1

## [Preview Release 6.0.0-preview1.24240.8] - 2024-08-27

This update brings the below changes over the 5.2 release:

### Breaking Changes

- Removed support for .NET Standard. [#​2386](https://github.com/dotnet/SqlClient/pull/2386)
- Removed UWP (uap) references. [#​2483](https://github.com/dotnet/SqlClient/pull/2483)

### Added

- Added `TokenCredential` object to take advantage of token caching in `ActiveDirectoryAuthenticationProvider`. [#​2380](https://github.com/dotnet/SqlClient/pull/2380)
- Added `DateOnly` and `TimeOnly` support to `DataTable` as a structured parameter. [#​2258](https://github.com/dotnet/SqlClient/pull/2258)
- Added `Microsoft.Data.SqlClient.Diagnostics.SqlClientDiagnostic` type in .NET. [#​2226](https://github.com/dotnet/SqlClient/pull/2226)
- Added scope trace for `GenerateSspiClientContext`. [#​2497](https://github.com/dotnet/SqlClient/pull/2497), [#​2725](https://github.com/dotnet/SqlClient/pull/2725)

### Fixed

- Fixed `Socket.Connect` timeout issue caused by thread starvation. [#​2777](https://github.com/dotnet/SqlClient/pull/2777)
- Fixed pending data with `SqlDataReader` against an encrypted column. [#​2618](https://github.com/dotnet/SqlClient/pull/2618)
- Fixed Entra authentication when using infinite connection timeout in `ActiveDirectoryAuthenticationProvider`. [#​2651](https://github.com/dotnet/SqlClient/pull/2651)
- Fixed `GetSchema` by excluding unsupported engines due to lack of support for `ASSEMBLYPROPERTY` function. [#​2593](https://github.com/dotnet/SqlClient/pull/2593)
- Fixed SSPI retry negotiation with default port in .NET. [#​2559](https://github.com/dotnet/SqlClient/pull/2559)
- Fixed assembly path in .NET 8.0 and `.AssemblyAttributes`. [#​2550](https://github.com/dotnet/SqlClient/pull/2550)
- Fixed certificate chain validation. [#​2487](https://github.com/dotnet/SqlClient/pull/2487)
- Fixed clone of `SqlConnection` to include `AccessTokenCallback`. [#​2525](https://github.com/dotnet/SqlClient/pull/2525)
- Fixed issue with `DateTimeOffset` in table-valued parameters, which was introduced in 5.2. [#​2453](https://github.com/dotnet/SqlClient/pull/2453)
- Fixed `ArgumentNullException` on `SqlDataRecord.GetValue` when using user-defined data type on .NET. [#​2448](https://github.com/dotnet/SqlClient/pull/2448)
- Fixed `SqlBuffer` and `SqlGuild` when it's null. [#​2310](https://github.com/dotnet/SqlClient/pull/2310)
- Fixed `SqlBulkCopy.WriteToServer` state in a consecutive calls. [#​2375](https://github.com/dotnet/SqlClient/pull/2375)
- Fixed null reference exception with `SqlConnection.FireInfoMessageEventOnUserErrors` after introducing the batch command. [#​2399](https://github.com/dotnet/SqlClient/pull/2399)

### Changed

- Updated Microsoft.Data.SqlClient.SNI version to `6.0.0-preview1.24226.4`. [#​2772](https://github.com/dotnet/SqlClient/pull/2772)
- Improved access to `SqlAuthenticationProviderManager.Instance` and avoid early object initiation. [#​2636](https://github.com/dotnet/SqlClient/pull/2636)
- Removed undocumented properties of `Azure.Identity` in `ActiveDirectoryAuthenticationProvider`. [#​2562](https://github.com/dotnet/SqlClient/pull/2562)
- Replaced `System.Runtime.Caching` with `Microsoft.Extensions.Caching.Memory`. [#​2493](https://github.com/dotnet/SqlClient/pull/2493)
- Updated `EnableOptimizedParameterBinding` to only accept text mode commands. [#​2417](https://github.com/dotnet/SqlClient/pull/2417)
- Updated `Azure.Identity` version from `1.10.3` to `1.11.4`. [#​2577](https://github.com/dotnet/SqlClient/pull/2577)
- Updated `Azure.Core` version from `1.35.0` to `1.38.0`. [#​2462](https://github.com/dotnet/SqlClient/pull/2462)
- Updated `Azure.Security.KeyVault.Keys` version from `4.4.0` to `4.5.0`. [#​2462](https://github.com/dotnet/SqlClient/pull/2462)
- Updated `Microsoft.IdentityModel.JsonWebTokens` and `Microsoft.IdentityModel.Protocols.OpenIdConnect` from `6.35.0` to `7.5.0`. [#​2429](https://github.com/dotnet/SqlClient/pull/2429)
- Removed direct dependency to `Microsoft.Identity.Client` to take the transient dependecy through `Azure.Identity`. [#​2577](https://github.com/dotnet/SqlClient/pull/2577)
- Removed unnecessary references `Microsoft.Extensions.Caching.Memory` and `System.Security.Cryptography.Cng` after removing .NET Standard. [#​2577](https://github.com/dotnet/SqlClient/pull/2577)
- Improved memory allocation when reader opened by `CommandBehavior.SequentialAccess` over the big string columns. [#​2356](https://github.com/dotnet/SqlClient/pull/2356)
- Improved SSPI by consolidating the context generation to single abstraction and using memory/span for SSPI generation. [#​2255](https://github.com/dotnet/SqlClient/pull/2255), [#​2447](https://github.com/dotnet/SqlClient/pull/2447)
- Reverted the [#​2281](https://github.com/dotnet/SqlClient/pull/2281) code changes on ManagedSNI. [#​2395](https://github.com/dotnet/SqlClient/pull/2395)
- Updated assembly version to 6.0.0.0. [#​2382](https://github.com/dotnet/SqlClient/pull/2382)
- Code health improvements: [#​2366](https://github.com/dotnet/SqlClient/pull/2366), [#​2369](https://github.com/dotnet/SqlClient/pull/2369), [#​2381](https://github.com/dotnet/SqlClient/pull/2381), [#​2390](https://github.com/dotnet/SqlClient/pull/2390), [#​2392](https://github.com/dotnet/SqlClient/pull/2392), [#​2403](https://github.com/dotnet/SqlClient/pull/2403), [#​2410](https://github.com/dotnet/SqlClient/pull/2410), [#​2413](https://github.com/dotnet/SqlClient/pull/2413), [#​2425](https://github.com/dotnet/SqlClient/pull/2425), [#​2428](https://github.com/dotnet/SqlClient/pull/2428), [#​2440](https://github.com/dotnet/SqlClient/pull/2440), [#​2443](https://github.com/dotnet/SqlClient/pull/2443), [#​2450](https://github.com/dotnet/SqlClient/pull/2450), [#​2466](https://github.com/dotnet/SqlClient/pull/2466), [#​2486](https://github.com/dotnet/SqlClient/pull/2486), [#​2521](https://github.com/dotnet/SqlClient/pull/2521), [#​2522](https://github.com/dotnet/SqlClient/pull/2522), [#​2533](https://github.com/dotnet/SqlClient/pull/2533), [#​2552](https://github.com/dotnet/SqlClient/pull/2552), [#​2560](https://github.com/dotnet/SqlClient/pull/2560), [#​2726](https://github.com/dotnet/SqlClient/pull/2726), [#​2751](https://github.com/dotnet/SqlClient/pull/2751), [#​2811](https://github.com/dotnet/SqlClient/pull/2811)
 ... (truncated)

## 5.2.3

This update brings the following changes since the 5.2.2 release:

### Fixed

- Fixed possible `NullPointerException` during socket receive (PR [#​3284](https://github.com/dotnet/SqlClient/pull/3284))
- Fixed inconsistencies between source and reference projects (PR [#​3124](https://github.com/dotnet/SqlClient/pull/3124))
- Adjusted retry logic to allow errors with negative numbers to be considered transient (PR [#​3185](https://github.com/dotnet/SqlClient/pull/3185))

### Changed

- Updated the following dependencies:
  - [System.Private.Uri](https://www.nuget.org/packages/System.Private.Uri) 4.3.2 - Avoid transitive [CVE-2019-0820](https://msrc.microsoft.com/update-guide/en-US/advisory/CVE-2019-0820) (PR [#​3076](https://github.com/dotnet/SqlClient/pull/3076))
  - [Microsoft.Extensions.Caching.Memory](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Memory/6.0.3) 6.0.1 to 6.0.3 - Avoid [CVE-2024-43483](https://github.com/advisories/GHSA-qj66-m88j-hmgj) (PR [#​3280](https://github.com/dotnet/SqlClient/pull/3280))

Commits viewable in [compare view](https://github.com/dotnet/sqlclient/compare/v5.2.2...v6.1.0).
</details>

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

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

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

## 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

## 9.0.4

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

## What's Changed
* Merge branch 'release/8.0' into 'release/8.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35541
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35621
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35633
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35634
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions in https://github.com/dotnet/efcore/pull/35626
* [release/9.0-staging] Set the environment when executing Scaffold-DBContext by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35693
* [release/8.0-staging] Improve LoadExtension to work correctly with dotnet run and lib* named libs by @​roji in https://github.com/dotnet/efcore/pull/35718
* [release/8.0-staging] Transform Span-based overloads to Enumerable in funcletizer by @​roji in https://github.com/dotnet/efcore/pull/35720
* [release/9.0-staging] Process Coalesce-simplified Convert node properly in funcletizer by @​roji in https://github.com/dotnet/efcore/pull/35721
* [release/9.0-staging] Improve LoadExtension to work correctly with dotnet run and lib* named libs by @​roji in https://github.com/dotnet/efcore/pull/35717
* [release/9.0-staging] Transform Span-based overloads to Enumerable in funcletizer by @​roji in https://github.com/dotnet/efcore/pull/35719
* Update branding to 8.0.15 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35738
* Update branding to 9.0.4 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35739
* Merge branch 'release/8.0-staging' => 'release/8.0'  by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35742
* Merge branch 'release/9.0-staging' => 'release/9.0'  by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35743
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions in https://github.com/dotnet/efcore/pull/35740
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35766
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35781


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

## 9.0.3

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

## What's Changed
* [release/9.0-staging] Fix to #​35393 - GroupJoin in EF Core 9 Returns Null for Joined Entities by @​maumar in https://github.com/dotnet/efcore/pull/35449
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35473
* [release/8.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35470
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35498
* Merge branch 'release/9.0' into 'release/9.0-staging' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35542
* [release/9.0-staging] Make SnapshotModelProcessor idempotent. by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35543
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35572
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions in https://github.com/dotnet/efcore/pull/35474
* Update branding to 9.0.3 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35584
* Update branding to 8.0.14 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35583
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions in https://github.com/dotnet/efcore/pull/35587
* Merge branch 'release/9.0-staging' => 'release/9.0'  by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35601
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35622


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.2...v9.0.3

## 9.0.2

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

## What's Changed
* [release/9.0-staging] Fix to #​35108 - Temporal table migration regression from EF Core 8 to 9 by @​maumar in https://github.com/dotnet/efcore/pull/35289
* [release/9.0-staging] Don't throw PendingModelChangesWarning when applying a specific migration by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35353
* [release/8.0] Update Helix queues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35408
* [release/9.0] Update Helix queues by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35407
* [release/9.0-staging] Fix to #​35239 - EF9: SaveChanges() is significantly slower in .NET9 vs. .NET8 when using .ToJson() Mapping vs. PostgreSQL Legacy POCO mapping by @​maumar in https://github.com/dotnet/efcore/pull/35360
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35415
* [release/9.0-staging] Don't scaffold NonNullableConventionState annotation by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35359
* Update branding to 8.0.13 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35427
* Update branding to 9.0.2 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35428
* Merge branch 'release/9.0-staging' => 'release/9.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35463
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35464
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions in https://github.com/dotnet/efcore/pull/35429
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35460
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35472


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.1...v9.0.2

## 9.0.1

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

## What's Changed
* [release/9.0-staging] Update macOS images to 13 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35004
* [release/8.0-staging] Update macOS images to 13 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35005
* [release/9.0-staging TEST ONLY] adjusting some migration tests so that baselines dont depend on the product version by @​maumar in https://github.com/dotnet/efcore/pull/34977
* Update branding to 8.0.12 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35048
* Update branding to 9.0.1 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35049
* Merge branch 'release/8.0' into release/8.0-staging by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35055
* Merge branch 'release/9.0' into release/9.0-staging by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35056
* Merge branch 'release/8.0-staging' => 'release/8.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35077
* Merge branch 'release/9.0-staging' => 'release/9.0' by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35078
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions in https://github.com/dotnet/efcore/pull/35050
* Merging internal commits for release/8.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35081
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/efcore/pull/35083
* [automated] Merge branch 'release/8.0' => 'release/9.0' by @​github-actions in https://github.com/dotnet/efcore/pull/35085
* [released/9.0] Add missing awaits in MigrationsInfrastructureTestBase by @​roji in https://github.com/dotnet/efcore/pull/35107
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35137
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/35199
* [release/9.0] Fix TPC equality check inside subquery predicate (#​35120) by @​roji in https://github.com/dotnet/efcore/pull/35201
* [release/9.0] Add missing Converts when simplifying in funcletizer (#​35122) by @​roji in https://github.com/dotnet/efcore/pull/35202
* [release/9.0] Correct VisitUnary operand evaluation in funcletizer (#​35172) by @​roji in https://github.com/dotnet/efcore/pull/35203
* [release/9.0-staging] Fix to #​35206 - Query/Perf: don't use Invoke in value comparer lambdas when constructing shaper with PopulateCollection by @​maumar in https://github.com/dotnet/efcore/pull/35207
* [release/9.0-staging] Fix to #​35208 - Query/Perf: don't compile liftable constant resolvers in interpretation mode by @​maumar in https://github.com/dotnet/efcore/pull/35211
* [release/9.0] Enable Cosmos vector search on EF9 by @​ajcvickers in https://github.com/dotnet/efcore/pull/35183
* [release/9.0] Return null when the type is nullable for Cosmos Max/Min/Average by @​ajcvickers in https://github.com/dotnet/efcore/pull/35216
* [release/9.0-staging] Fix to #​35212 - Query/Perf: Compile identifier lambdas passed to PopulateIncludeCollection rather than inline by @​maumar in https://github.com/dotnet/efcore/pull/35217
* [release/9.0] Uniquify all variables used in SQL Server migration scripts by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35228
* [release/9.0] Avoid using `^` and `~` when invalid because of value converters by @​roji in https://github.com/dotnet/efcore/pull/35241
* [release/9.0] Prevent owner entity from becoming optional by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35222
* [release/9.0] Set environment variables to "Development" when creating DbContext using IDesignTimeDbContextFactory by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35230
* [release/9.0] Fix query filters with context accessors by @​cincuranet in https://github.com/dotnet/efcore/pull/35246
* [release/9.0] Add more specific messages when pending model changes are detected by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35221
* [release/9.0] Fix Contains on ImmutableArray by @​cincuranet in https://github.com/dotnet/efcore/pull/35251
* Merge branch 'release/9.0-staging' into release/9.0 by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35255
* [release/9.0] Don't suppress transactions when creating the history repository by @​AndriySvyryd in https://github.com/dotnet/efcore/pull/35266


**Full Changelog**: https://github.com/dotnet/efcore/compare/v9.0.0...v9.0.1

## 9.0.0

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

## What's Changed
* Update branding to 9.0-alpha1 by @​wtgodbe in https://github.com/dotnet/efcore/pull/31465
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31467
* Bump Microsoft.AspNetCore.Identity.EntityFrameworkCore from 7.0.9 to 7.0.10 by @​dependabot in https://github.com/dotnet/efcore/pull/31461
* Bump Microsoft.Azure.Cosmos from 3.35.2 to 3.35.3 by @​dependabot in https://github.com/dotnet/efcore/pull/31463
* Bump Microsoft.AspNetCore.OData from 8.2.0 to 8.2.1 by @​dependabot in https://github.com/dotnet/efcore/pull/31462
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31474
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31483
* Fixes and improvements to StartsWith/EndsWith/Contains by @​roji in https://github.com/dotnet/efcore/pull/31482
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31421
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31499
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31509
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31510
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31512
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31516
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31523
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31524
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31526
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31528
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31542
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31566
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31575
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31582
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31598
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31601
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31624
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31632
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31635
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31636
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31560
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31640
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31641
* Add readme file for nuget package EFCore.Tools by @​lyndaidaii in https://github.com/dotnet/efcore/pull/30470
* Add readme for EFcore.Desgin NuGet package by @​lyndaidaii in https://github.com/dotnet/efcore/pull/30471
* Add readme for sql server by @​lyndaidaii in https://github.com/dotnet/efcore/pull/30466
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31648
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31649
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31650
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31654
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31660
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31667
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31668
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31670
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31671
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31674
* [automated] Merge branch 'release/8.0' => 'main' by @​dotnet-maestro-bot in https://github.com/dotnet/efcore/pull/31669
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31678
* [main] Update dependencies from dotnet/runtime by @​dotnet-maestro in https://github.com/dotnet/efcore/pull/31686
 ... (truncated)

## 9.0.0-rc.2.24474.1

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-rc.2)

## 9.0.0-rc.1.24451.1

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-rc.1)

## 9.0.0-preview.7.24405.3

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-preview.7)

## 9.0.0-preview.6.24327.4

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-preview.6)

## 9.0.0-preview.5.24306.3

The team has been working primarily on EF Core internals, so there are no new big features in EF Core 9 (EF9) Preview 5. However, this means we really need people like you to run your code on these new internals and report back what you find. We want to fix bugs in the new internals as soon as possible in order to have a strong GA release later in the year.

That being said, there are several smaller enhancements included in preview 5. For full details, see [What's new in EF Core 9](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew). To discuss the EF9 release, go to [Try EF Core 9 now!](https://github.com/dotnet/efcore/issues/33030) on GitHub.

## Enhanced database provider for Azure Cosmos DB for NoSQL

We are working on significant updates in EF9 to the EF Core database provider for Azure Cosmos DB for NoSQL. For preview 5, these include:

- Support for hierarchical partition keys
- Use of any numeric, bool, string, or value-converted type as a partition key

See [Azure Cosmos DB for NoSQL](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#cosmos) in the _What's New_ docs for more information.

## Query translation improvements

EF9 preview 5 contains three small enhancements to query translation:

- Optimization of queries using `Count != 0` or `Count > 0`
- Translations for `TimeOnly.FromDateTime` and `TimeOnly.FromTimeSpan`

See [LINQ and SQL translation](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#linq-and-sql-translation) in the _What's New_ docs for more information.

## Everything else in preview 5

Preview 5 contains:

- [6 enhancements](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A9.0.0-preview5+is%3Aclosed+label%3Atype-enhancement+)
- [6 bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A9.0.0-preview5+is%3Aclosed+label%3Atype-bug)

EF Core 9 preview 5 and Microsoft.Data.Sqlite contain work from the EF Team at Microsoft (@​roji @​AndriySvyryd @​maumar @​ajcvickers @​cincuranet @​SamMonoRT @​luisquintanilla).


## 9.0.0-preview.4.24267.1

The team has been working primarily on EF Core internals, so there are no new big features in EF Core 9 (EF9) Preview 4. However, this means we really need people like you to run your code on these new internals and report back what you find. We want to fix bugs in the new internals as soon as possible in order to have a strong GA release later in the year.

That being said, there are several smaller enhancements included in preview 4. For full details, see [What's new in EF Core 9](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew). To discuss the EF9 release, go to [Try EF Core 9 now!](https://github.com/dotnet/efcore/issues/33030) on GitHub.

### Enhanced database provider for Azure Cosmos DB for NoSQL

We are working on significant updates in EF9 to the EF Core database provider for Azure Cosmos DB for NoSQL. For preview 4, these include:

- Role-based access control (RBAC) is supported by EF9 for both management and use of containers.
- Azure Cosmos DB for NoSQL does not support synchronous (blocking) access from application code. EF Core now blocks synchronous access by default, helping people fall into the pit-of-success of using async I/O.
- Cosmos primitive collection support has been updated to use the metadata and model building APIs from EF8

See [Azure Cosmos DB for NoSQL](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#cosmos) in the _What's New_ docs for more information.

## GroupBy complex types

In preview 4, EF9 now supports grouping (`GroupBy` queries) that group by a complex type instance. The resulting SQL uses groups by all members, reflecting the value object semantics of complex types.

See [GroupBy complex types](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#groupby-complex-types) in the _What's New_ docs for more information.

## Read-only primitive collections

EF8 introduced support for mapping arrays and mutable lists of primitive types. This has been expanded in EF9 to include read-only collections declared as `IReadOnlyList`, `IReadOnlyCollection`, or `ReadOnlyCollection`.

See [Read-only primitive collections](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#read-only-primitives) in the _What's New_ docs for more information.

## Everything else in preview 4

Preview 4 contains:

- [10 enhancements](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A9.0.0-preview4+is%3Aclosed+label%3Atype-enhancement+)
- [15 bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A9.0.0-preview4+is%3Aclosed+label%3Atype-bug)

EF Core 9 preview 4 (and Microsoft.Data.Sqlite) contains work from the EF Team at Microsoft (@​roji @​AndriySvyryd @​maumar @​ajcvickers @​cincuranet @​SamMonoRT @​luisquintanilla) as well as contributions from the EF Core community. The community PRs in EF9 Preview 4 are:

- @​y0ung3r: [InMemoryTable: Make IsConcurrencyConflict() method more readable](https://github.com/dotnet/efcore/pull/33561)


## 9.0.0-preview.3.24172.4

The team has been working primarily on EF Core internals, so there are no new big features in EF Core 9 (EF9) Preview 3. However, this means we really need people like you to run your code on these new internals and report back what you find. We want to fix bugs in the new internals as soon as possible in order to have a strong GA release later in the year.

That being said, there are several smaller enhancements included in preview 3. For full details, see [What's new in EF Core 9](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew). To discuss the EF9 release, go to [Try EF Core 9 now!](https://github.com/dotnet/efcore/issues/33030) on GitHub.

### Auto-compiled models

Auto-compiled models allow the [EF Core compiled model](https://learn.microsoft.com/ef/core/performance/advanced-performance-topics#compiled-models) to be automatically regenerated when the model project is built. This means you no longer need to remember to re-run the `dotnet ef dbcontext optimize` command after your EF model changes. See [Auto-compiled models](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#auto-compiled-models) in the _What's New_ docs for more information.

### Sugar for `HierarchyId` path generation

First class support for the SQL Server `HierarchyId` type was [added in EF8](https://learn.microsoft.com/ef/core/providers/sql-server/hierarchyid). In EF9, a sugar method has been added to make it easier to create new child nodes in the tree structure. See [Sugar for HierarchyId path generation](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#hierarchyid-path-generation) in the _What's New_ docs for more information.

### Everything else in preview 3

Preview 3 contains:

- [6 enhancements](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A9.0.0-preview3+is%3Aclosed+label%3Atype-enhancement+)
- [5 bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A9.0.0-preview3+is%3Aclosed+label%3Atype-bug)

EF Core 9 preview 3 (and Microsoft.Data.Sqlite) contains work from the EF Team at Microsoft (@​roji @​AndriySvyryd @​maumar @​ajcvickers @​cincuranet @​SamMonoRT @​luisquintanilla) as well as contributions from the EF Core community. The community PRs in EF9 Preview 3 are:

- @​lauxjpn: [Cleanup duplicate tests (same test ID)](https://github.com/dotnet/efcore/pull/33185)
- @​clement911: [Fixed typo in getting-and-building-the-code.md](https://github.com/dotnet/efcore/pull/33166)
- @​Rezakazemi890: [32943-Sugar for HierarchyId path generation](https://github.com/dotnet/efcore/pull/33062)
- @​lauxjpn: [Change Where_math(f)_log_new_base queries, so they fail if LOG() parameters are swapped](https://github.com/dotnet/efcore/pull/33342)
- @​SteSinger: [33196 command timeout allow zero](https://github.com/dotnet/efcore/pull/33198)



## 9.0.0-preview.2.24128.4

The team has been working primarily on EF Core internals, so there are no new big features in EF Core 9 (EF9) Preview 2. However, this means we really need people like you to run your code on these new internals and report back what you find. We want to fix bugs in the new internals as soon as possible in order to have a strong GA release later in the year.

That being said, there are several smaller enhancements included in preview 2, many contributed by our community. For full details, see [What's new in EF Core 9](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew). To discuss the EF9 release, go to [Try EF Core 9 now!](https://github.com/dotnet/efcore/issues/33030) on GitHub.

## Improved queries

- Inlined uncorrelated subqueries
  - In EF8, an IQueryable referenced in another query may be executed as a separate database roundtrip.
  - See [Inlined uncorrelated subqueries](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#inlinedsubs) for full details.
- New ToHashSetAsync methods
  - The `ToHashSet` methods have existed since .NET Core 2.0. In EF9, the equivalent async methods have been added.
  - See [New `ToHashSetAsync<T>` methods](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#hashsetasync) for full details.

## Improved model building

- Specify caching for sequences
  - EF9 allows setting the caching options for database sequences for any relational database provider that supports this.
  - See [Specify caching for sequences](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#sequence-caching) for full details.
- Specify fill-factor for keys and indexes
  - EF9 supports specification of the SQL Server fill-factor when using EF Core Migrations to create keys and indexes.
  - See [Specify fill-factor for keys and indexes](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#fill-factor) for full details.

## Improved tooling

- Fewer rebuilds when using `dotnet ef` tools
  - EF9 invalidates build caches less often, resulting in faster re-builds. 
  - See [Fewer rebuilds](https://learn.microsoft.com/ef/core/what-is-new/ef-core-9.0/whatsnew#fewer-rebuilds) for full details.

## Everything else in preview 2

Preview 2 contains:

- [8 enhancements](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A9.0.0-preview2+is%3Aclosed+label%3Atype-enhancement)
- [10 bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A9.0.0-preview1+is%3Aclosed+label%3Atype-bug)

EF Core 9 preview 2 (and Microsoft.Data.Sqlite) contains work from the EF Team at Microsoft (@​roji @​AndriySvyryd @​maumar @​ajcvickers) as well as contributions from the EF Core community. The community PRs in EF9 Preview 1 are:

- @​Poppyto: [stackalloc for BytesToDecimal](https://github.com/dotnet/efcore/pull/31190)
- @​francopettinari: [Microsoft.Data.Sqlite.Core issue with multiple Blob colums](https://github.com/dotnet/efcore/pull/32770)
- @​wertzui: [Added `ToHashSetAsync<T>` Extension methods on `IQueryable<T>`](https://github.com/dotnet/efcore/pull/32905)
- @​Suchiman: [Fix incremental builds](https://github.com/dotnet/efcore/pull/32860)
- @​btecu: [Cleanup asserts](https://github.com/dotnet/efcore/pull/32968)
- @​EngincanV: [Fix typos on DeleteBehavior.cs](https://github.com/dotnet/efcore/pull/32781)
- @​petterh: [Fix typos, doubled words](https://github.com/dotnet/efcore/pull/32372)
- @​deano-hunter: [Add fill factor to keys and unique constraints](https://github.com/dotnet/efcore/pull/32900)


## 9.0.0-preview.1.24081.2

The team has been working primarily on EF Core internals, so there are no new big features in EF Core 9 (EF9) Preview 1. However, this means we really need people like you to run your code on these new internals and report back what you find. We want to fix bugs in the new internals as soon as possible in order to have a strong GA release later in the year...

_Description has been truncated_

Bumps Microsoft.Data.SqlClient from 5.2.2 to 6.1.0
Bumps Microsoft.EntityFrameworkCore.Relational from 8.0.15 to 9.0.7
Bumps Microsoft.EntityFrameworkCore.Sqlite.Core from 8.0.15 to 9.0.7
Bumps Microsoft.EntityFrameworkCore.SqlServer.HierarchyId from 8.0.15 to 9.0.7
Bumps Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite from 8.0.15 to 9.0.7
Bumps Npgsql.EntityFrameworkCore.PostgreSQL from 8.0.4 to 9.0.4
Bumps Pomelo.EntityFrameworkCore.MySql from 8.0.0 to 8.0.3
Bumps System.Diagnostics.DiagnosticSource from 8.0.0 to 9.0.7

---
updated-dependencies:
- dependency-name: Microsoft.Data.SqlClient
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.EntityFrameworkCore.Relational
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Pomelo.EntityFrameworkCore.MySql
  dependency-version: 8.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.EntityFrameworkCore.Sqlite.Core
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.EntityFrameworkCore.SqlServer.HierarchyId
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Npgsql.EntityFrameworkCore.PostgreSQL
  dependency-version: 9.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: System.Diagnostics.DiagnosticSource
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from videokojot August 4, 2025 17:48
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 4, 2025

The reviewers field in the dependabot.yml file will be removed soon. Please use the code owners file to specify reviewers for Dependabot PRs. For more information, see this blog post.

@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Aug 4, 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.

0 participants