Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 28, 2025

Updated Microsoft.CodeAnalysis.CSharp from 4.13.0 to 4.14.0.

Release notes

Sourced from Microsoft.CodeAnalysis.CSharp's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Data.SqlClient from 5.2.3 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)

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

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

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

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

## 7.0.20

## Note: EF Core 7 is now [out-of-support](https://learn.microsoft.com/ef/core/what-is-new/).

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.20) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.19.


## 7.0.19

## Note: EF Core 7 is now [out-of-support](https://learn.microsoft.com/ef/core/what-is-new/).

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.19) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.18.


## 7.0.18

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.18) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.17.


## 7.0.17

EF Core 7.0.17 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.17). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.17+is%3Aclosed):

- [SqlClient - Update 8.0 to 5.1.5](https://github.com/dotnet/efcore/issues/33010)


## 7.0.16

EF Core 7.0.16 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.16). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.16+is%3Aclosed):

- [Cancelled token does not prevent execution of ExecuteDeleteAsync(token)](https://github.com/dotnet/efcore/issues/31448)


## 7.0.15

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.15) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.14.


## 7.0.14

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.14) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.13.


## 7.0.13

EF Core 7.0.13 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.13). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.13+is%3Aclosed):

- [Update from ef 6 to ef 7. Error getting base type entities where one child has a required navigation property](https://github.com/dotnet/efcore/issues/31107)
- [Incorrect translation of comparison of current value with owned type default value](https://github.com/dotnet/efcore/issues/30996)
- [GroupBy generates invalid SQL when using custom database function](https://github.com/dotnet/efcore/issues/29638)

And also the following bug fixes from [EF Core 6.0.24](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A6.0.24+is%3Aclosed):

- [Memory leak in EntityMaterializerSource](https://github.com/dotnet/efcore/issues/31866)
- [Possible finalizer thread stuck on System.RuntimeMethodHandle.Destroy](https://github.com/dotnet/efcore/issues/31782)
- [Memory Issue with EF Core 7 DbContext ServiceProviderCache](https://github.com/dotnet/efcore/issues/31539)



## 7.0.12

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.12) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.11.


## 7.0.11

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.11) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.10.


## 7.0.10

EF Core 7.0.10 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.10). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.10+is%3Aclosed):

- [Scaffolding synapse fails when attempting to enumerate triggers](https://github.com/dotnet/efcore/issues/30998)
- [Silent data loss when adding objects to an sqlite DB with PRAGMA journal_mode=DELETE in a multi-threaded environment.](https://github.com/dotnet/efcore/issues/30851)


## 7.0.9

EF Core 7.0.9 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.9). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.9+is%3Aclosed):

- [Error "Index was outside the bounds of the array." when reading from dataset without AsNoTracking()](https://github.com/dotnet/efcore/issues/30764)


## 7.0.8

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.8) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.7.


## 7.0.7

EF Core 7.0.7 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.7). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.7+is%3Aclosed):

- [IndexOutOfRangeException in CreateNavigationExpansionExpression](https://github.com/dotnet/efcore/issues/30115)
- [Linq select cannot project an entity containing both Json columns and ICollections](https://github.com/dotnet/efcore/issues/30266)
- [Json: updating property with conversion from string to other type fails on sql server](https://github.com/dotnet/efcore/issues/30330)
- [Duplicate table alias in generated select query (An item with the same key has already been added)](https://github.com/dotnet/efcore/issues/30358)
- [InvalidOperationException when calling ExecuteUpdate with owned entity & using current value](https://github.com/dotnet/efcore/issues/30528)
- [Query/Json: projecting entity collection along with json collection generates invalid shaper](https://github.com/dotnet/efcore/issues/30565)
- [AutoInclude causes ExecuteDelete to fail](https://github.com/dotnet/efcore/issues/30572)
- [Multiple LeftJoins (GroupJoins) lead to GroupJoin Exception when the same where is used twice](https://github.com/dotnet/efcore/issues/30575)
- [SaveChanges circular dependency in unique unfiltered index (when change doesn't affect any column from unique index).](https://github.com/dotnet/efcore/issues/30601)


## 7.0.5

EF Core 7.0.5 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.5). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.5+is%3Aclosed):

- [Can't add migration renaming a column on TPC root](https://github.com/dotnet/efcore/issues/30321)
- [Scaffolded collection navigation properties do not have setters](https://github.com/dotnet/efcore/issues/30286)
- [EF7 generating incorrect SQL for the Concat/Union All](https://github.com/dotnet/efcore/issues/30273)
- [Added nullable property to Json mapped model resulting in errors instead of mapping non existing json property to null](https://github.com/dotnet/efcore/issues/30028)



## 7.0.4

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.4) containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.4+is%3Aclosed):

- [Exception replacing multi-level relationship in EF7](https://github.com/dotnet/efcore/issues/30135)
- [Deletion can cause error "The association between entity types A and B has been severed..."](https://github.com/dotnet/efcore/issues/30122)
- [Non-empty second migration in TPC scheme using inheritance](https://github.com/dotnet/efcore/issues/30058)
- [Entity Framework Core 7 keeps creating the same migration for Nullable DateTime field](https://github.com/dotnet/efcore/issues/29985)
- [TPC mapping strategy not respecting default database schema during migration](https://github.com/dotnet/efcore/issues/29899)
- [Count after Take throws "No column name was specified for column 1 of 't'."](https://github.com/dotnet/efcore/issues/29667)

And for [Microsoft.Data.Sqlite](https://www.nuget.org/packages/Microsoft.Data.Sqlite/7.0.4):

- [ArgumentOutOfRangeException in SqliteConnectionFactory.PruneCallback](https://github.com/dotnet/efcore/issues/29952)


## 7.0.3

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.3) containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.3+is%3Aclosed):

- [Add-Migration fails with "An item with the same key has already been added" when renaming entity](https://github.com/dotnet/efcore/issues/27504)
- [ExecuteUpdate fails when target entity has an owned entity](https://github.com/dotnet/efcore/issues/28727)
- [EF Core 7 Rev eng: Missing HasForeignKey when referencing a navigation property with a unique constraint with DataAnnotations on](https://github.com/dotnet/efcore/issues/29418)
- [Change in behaviour of CSharpHelper.Identifier(string name)](https://github.com/dotnet/efcore/issues/29450)
- [NullReferenceException scaffolding when no primary key set](https://github.com/dotnet/efcore/issues/29516)
- [Idempotent migration script not working on EFCore7.0 for AlterColumn when nullable changed from true to false](https://github.com/dotnet/efcore/issues/29530)
- [6.0.11 to 7.0.0: [...] are both mapped to column [..] but are configured to use differing provider types ('double' and 'double?').'](https://github.com/dotnet/efcore/issues/29531)
- [Generated Model Snapshot throws InvalidOperationException](https://github.com/dotnet/efcore/issues/29534)
- [SQL Server bulk insert broken when new command applies pending commands and goes over the batch parameter limit](https://github.com/dotnet/efcore/issues/29539)
- [Invalid singularization when scaffolding a manytomany table](https://github.com/dotnet/efcore/issues/29544)
- [In EF7, SqLite unable to load spatialite using the NetTopologySuite Package](https://github.com/dotnet/efcore/issues/29584)
- [Cannot access property through interface in ExecuteUpdate setter lambda](https://github.com/dotnet/efcore/issues/29618)
- [DbContext scaffold missing IndexerProperty for M2M relation after moving to EF Core 7](https://github.com/dotnet/efcore/issues/29634)
- [Performance regression in model building in Entity Framework Core 7](https://github.com/dotnet/efcore/issues/29642)
- [Mixing sproc and non-sproc commands in the same batch may fail with a NullReferenceException](https://github.com/dotnet/efcore/issues/29643)
- [Condition's order will cause different result when using .Contains() to search string cross varchar and nvarchar columns](https://github.com/dotnet/efcore/issues/29646)
- [SaveChanges circular dependency in unique unfiltered index](https://github.com/dotnet/efcore/issues/29647)
- [QueryTrackingBehavior resets to TrackAll when using DbContext pooling](https://github.com/dotnet/efcore/issues/29733)
- [EFCore 7.0.0 - Graph of entity insertion throws a FK exception](https://github.com/dotnet/efcore/issues/29741)
- [Replacing PK to PK TPH dependent with different type fails](https://github.com/dotnet/efcore/issues/29789)
- [dotnet ef migrations add freezes](https://github.com/dotnet/efcore/issues/29826)
- [InvalidOperationException when mapping properties of different types to the same column](https://github.com/dotnet/efcore/issues/29859)
- [Obsoletion message for AutoTransactionsEnabled is wrong](https://github.com/dotnet/efcore/issues/29990)
- [Incorrect NullReferenceException for parameter in split query with GroupBy](https://github.com/dotnet/efcore/issues/30022)

## 7.0.2

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.2) containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.2+is%3Aclosed):

- [Exception when inserting multiple rows into the same table on SQL Server](https://github.com/dotnet/efcore/issues/29502)


## 7.0.1

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.1) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.1.


## 7.0.0

EF Core 7.0 GA (commonly referred to as EF7) is now available from [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.0).

See [What's New in EF7](https://docs.microsoft.com/en-us/ef/core/what-is-new/ef-core-7.0/whatsnew) for a detailed look at all the new features in EF7. In summary, the following new features are included in EF7:

- [Make basic EF scenarios work under aggressive trimming](https://github.com/dotnet/efcore/issues/29092)
- [Entity splitting support](https://github.com/dotnet/efcore/issues/620)
- [Support for GroupBy entityType](https://github.com/dotnet/efcore/issues/17653)
- [Support GroupJoin when it is final query operator](https://github.com/dotnet/efcore/issues/19930)
- [ExecuteUpdate: Add SetProperty overload that accepts a value directly (no lambda)](https://github.com/dotnet/efcore/issues/28968)
- [Support sproc input/output parameters on non-concurrency-token properties](https://github.com/dotnet/efcore/issues/28704)
- [Implement TagWith for ExecuteUpdate and DeleteUpdate](https://github.com/dotnet/efcore/issues/28690)
- [ExecuteDelete for owner when only its owned types are sharing the same table](https://github.com/dotnet/efcore/issues/28671)
- [Stop scaffolding DbSet initialization to null!](https://github.com/dotnet/efcore/issues/26877)
- [CSharpHelper: support more types of collection literals](https://github.com/dotnet/efcore/issues/19274)
- [Map JSON values stored in database to EF properties](https://github.com/dotnet/efcore/issues/4021)
- [ExecuteUpdate/Delete (AKA bulk update, without loading data into memory)](https://github.com/dotnet/efcore/issues/795)
- [Code templates for scaffolding entity types and DbContext from an existing database](https://github.com/dotnet/efcore/issues/4038)
- [Support raw SQL Queries for basic types like Guid, DateTime and int](https://github.com/dotnet/efcore/issues/11624)
- [Allow applications to create model building conventions (aka public conventions)](https://github.com/dotnet/efcore/issues/214)
- [Cosmos: Support AAD RBAC via the ClientSecretCredential](https://github.com/dotnet/efcore/issues/26491)
- [Map inserts, updates, and deletes (CUD operations) to stored procedures](https://github.com/dotnet/efcore/issues/245)
- [Add a static flag in EF that will be set when code is being executed for design-time discover](https://github.com/dotnet/efcore/issues/27306)
- [Support sequence key generation on SQL Server, which is useful for Table-per-concrete-type (TPC) mapping](https://github.com/dotnet/efcore/issues/28096)
- [Allow null connection string to be passed to UseProvider methods](https://github.com/dotnet/efcore/issues/26869)
- [Downgrade the ContextInitialized event from Information to Debug](https://github.com/dotnet/efcore/issues/28480)
- [Get an EntityEntry<TEntity> for Shared Entity Types](https://github.com/dotnet/efcore/issues/25354)
- [Make EntityEntryGraphIterator publicly usable](https://github.com/dotnet/efcore/issues/26461)
- [Support unidirectional many-to-many relationships](https://github.com/dotnet/efcore/issues/3864)
- [Translate string.Join and string.Concat](https://github.com/dotnet/efcore/issues/2981)
- [RevEng: Enable generating IEntityTypeConfiguration classes (avoids large OnModelCreating)](https://github.com/dotnet/efcore/issues/8434)
- [Interception to modify the LINQ expression tree](https://github.com/dotnet/efcore/issues/28505)
- [Interception for DbUpdateConcurrencyException](https://github.com/dotnet/efcore/issues/28315)
- [Add interception event to be fired when EF has finished consuming a result set](https://github.com/dotnet/efcore/issues/23535)
- [Add events for DetectChanges/state change](https://github.com/dotnet/efcore/issues/16256)
- [ChangeTracker: New event for "entity about to get tracked"](https://github.com/dotnet/efcore/issues/27093)
- [Translate EnvelopeCombiner.CombineAsGeometry aggregate function](https://github.com/dotnet/efcore/issues/28184)
- [SQL Server: Translate statistics aggregate functions](https://github.com/dotnet/efcore/issues/28104)
- [Filtered Includes for hidden navigation properties](https://github.com/dotnet/efcore/issues/27493)
- [Make it easier to pass a CancellationToken to FindAsync](https://github.com/dotnet/efcore/issues/22667)
- [Interception for object materialization (a.k.a. "ObjectMaterialized")](https://github.com/dotnet/efcore/issues/15911)
- [Provide a hook for identity resolution](https://github.com/dotnet/efcore/issues/20124)
- [Create lazy-loading and change-tracking proxy types lazily](https://github.com/dotnet/efcore/issues/20135)
- [Compiled model: Allow use of lazy loading and change tracking proxy types](https://github.com/dotnet/efcore/issues/24902)
- [Full support for custom provider aggregate functions](https://github.com/dotnet/efcore/issues/22957)
- [Spatial: Translate aggregate functions](https://github.com/dotnet/efcore/issues/13278)
- [Allow specifying different column names per table in TPT, TPC or entity splitting](https://github.com/dotnet/efcore/issues/19811)
- [Support for custom proxy generation](https://github.com/dotnet/efcore/issues/14554)
- [TPC inheritance mapping pattern](https://github.com/dotnet/efcore/issues/3170)
- [DeleteBehaviorAttribute](https://github.com/dotnet/efcore/issues/9621)
- [Translate GetType() for entity types with inheritance](https://github.com/dotnet/efcore/issues/13424)
 ... (truncated)

## 7.0.0-rc.2.22472.11

EF Core 7.0 (EF7) RC2 is [available from NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.0-rc.2.22472.11)

RC2 is does not include some important fixes that will be in the GA release. Therefore, we recommend using the [daily builds](https://github.com/dotnet/efcore/blob/release/7.0/docs/DailyBuilds.md) when testing your applications with EF7.

RC2 contains the following new features:

- [Make basic EF scenarios work under aggressive trimming](https://github.com/dotnet/efcore/issues/29092)
- [Entity splitting support](https://github.com/dotnet/efcore/issues/620)
- [Support for GroupBy entityType](https://github.com/dotnet/efcore/issues/17653)
- [Support GroupJoin when it is final query operator](https://github.com/dotnet/efcore/issues/19930)
- [ExecuteUpdate: Add SetProperty overload that accepts a value directly (no lambda)](https://github.com/dotnet/efcore/issues/28968)
- [Support sproc input/output parameters on non-concurrency-token properties](https://github.com/dotnet/efcore/issues/28704)
- [Implement TagWith for ExecuteUpdate and DeleteUpdate](https://github.com/dotnet/efcore/issues/28690)
- [ExecuteDelete for owner when only its owned types are sharing the same table](https://github.com/dotnet/efcore/issues/28671)
- [Stop scaffolding DbSet initialization to null!](https://github.com/dotnet/efcore/issues/26877)
- [CSharpHelper: support more types of collection literals](https://github.com/dotnet/efcore/issues/19274)

RC2 also includes the following new features from previews 1 through 7 and RC1:

- [Map JSON values stored in database to EF properties](https://github.com/dotnet/efcore/issues/4021)
- [ExecuteUpdate/Delete (AKA bulk update, without loading data into memory)](https://github.com/dotnet/efcore/issues/795)
- [Code templates for scaffolding entity types and DbContext from an existing database](https://github.com/dotnet/efcore/issues/4038)
- [Support raw SQL Queries for basic types like Guid, DateTime and int](https://github.com/dotnet/efcore/issues/11624)
- [Allow applications to create model building conventions (aka public conventions)](https://github.com/dotnet/efcore/issues/214)
- [Cosmos: Support AAD RBAC via the ClientSecretCredential](https://github.com/dotnet/efcore/issues/26491)
- [Map inserts, updates, and deletes (CUD operations) to stored procedures](https://github.com/dotnet/efcore/issues/245)
- [Add a static flag in EF that will be set when code is being executed for design-time discover](https://github.com/dotnet/efcore/issues/27306)
- [Support sequence key generation on SQL Server, which is useful for Table-per-concrete-type (TPC) mapping](https://github.com/dotnet/efcore/issues/28096)
- [Allow null connection string to be passed to UseProvider methods](https://github.com/dotnet/efcore/issues/26869)
- [Downgrade the ContextInitialized event from Information to Debug](https://github.com/dotnet/efcore/issues/28480)
- [Get an `EntityEntry<TEntity>` for Shared Entity Types](https://github.com/dotnet/efcore/issues/25354)
- [Make EntityEntryGraphIterator publicly usable](https://github.com/dotnet/efcore/issues/26461)
- [Support unidirectional many-to-many relationships](https://github.com/dotnet/efcore/issues/3864)
- [Translate string.Join and string.Concat](https://github.com/dotnet/efcore/issues/2981)
- [RevEng: Enable generating IEntityTypeConfiguration classes (avoids large OnModelCreating)](https://github.com/dotnet/efcore/issues/8434)
- [Interception to modify the LINQ expression tree](https://github.com/dotnet/efcore/issues/28505)
- [Interception for DbUpdateConcurrencyException](https://github.com/dotnet/efcore/issues/28315)
- [Add interception event to be fired when EF has finished consuming a result set](https://github.com/dotnet/efcore/issues/23535)
- [Add events for DetectChanges/state change](https://github.com/dotnet/efcore/issues/16256)
- [ChangeTracker: New event for "entity about to get tracked"](https://github.com/dotnet/efcore/issues/27093)
- [Translate EnvelopeCombiner.CombineAsGeometry aggregate function](https://github.com/dotnet/efcore/issues/28184)
- [SQL Server: Translate statistics aggregate functions](https://github.com/dotnet/efcore/issues/28104)
- [Filtered Includes for hidden navigation properties](https://github.com/dotnet/efcore/issues/27493)
- [Make it easier to pass a CancellationToken to FindAsync](https://github.com/dotnet/efcore/issues/22667)
- [Interception for object materialization (a.k.a. "ObjectMaterialized")](https://github.com/dotnet/efcore/issues/15911)
- [Provide a hook for identity resolution](https://github.com/dotnet/efcore/issues/20124)
- [Create lazy-loading and change-tracking proxy types lazily](https://github.com/dotnet/efcore/issues/20135)
- [Compiled model: Allow use of lazy loading and change tracking proxy types](https://github.com/dotnet/efcore/issues/24902)
- [Full support for custom provider aggregate functions](https://github.com/dotnet/efcore/issues/22957)
- [Spatial: Translate aggregate functions](https://github.com/dotnet/efcore/issues/13278)
 ... (truncated)

## 7.0.0-rc.1.22426.7

EF Core 7.0 (EF7) RC1 is [available from NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.0-rc.1.22426.7).

RC1 is does not include more than 70 fixes that will be in RC2. Therefore, we recommend using the [daily builds](https://github.com/dotnet/efcore/blob/release/7.0/docs/DailyBuilds.md) when testing your applications with EF7.

RC1 contains the following new features:

- [Map JSON values stored in database to EF properties](https://github.com/dotnet/efcore/issues/4021)
- [ExecuteUpdate/Delete (AKA bulk update, without loading data into memory)](https://github.com/dotnet/efcore/issues/795)
- [Code templates for scaffolding entity types and DbContext from an existing database](https://github.com/dotnet/efcore/issues/4038)
- [Support raw SQL Queries for basic types like Guid, DateTime and int](https://github.com/dotnet/efcore/issues/11624)
- [Allow applications to create model building conventions (aka public conventions)](https://github.com/dotnet/efcore/issues/214)
- [Cosmos: Support AAD RBAC via the ClientSecretCredential](https://github.com/dotnet/efcore/issues/26491)
- [Map inserts, updates, and deletes (CUD operations) to stored procedures](https://github.com/dotnet/efcore/issues/245)
- [Add a static flag in EF that will be set when code is being executed for design-time discover](https://github.com/dotnet/efcore/issues/27306)
- [Support sequence key generation on SQL Server, which is useful for Table-per-concrete-type (TPC) mapping](https://github.com/dotnet/efcore/issues/28096)
- [Allow null connection string to be passed to UseProvider methods](https://github.com/dotnet/efcore/issues/26869)
- [Downgrade the ContextInitialized event from Information to Debug](https://github.com/dotnet/efcore/issues/28480)
- [Get an `EntityEntry<TEntity>` for Shared Entity Types](https://github.com/dotnet/efcore/issues/25354)
- [Make EntityEntryGraphIterator publicly usable](https://github.com/dotnet/efcore/issues/26461)

RC1 also includes the following new features from previews 1 through 7:

- [Support unidirectional many-to-many relationships](https://github.com/dotnet/efcore/issues/3864)
- [Translate string.Join and string.Concat](https://github.com/dotnet/efcore/issues/2981)
- [RevEng: Enable generating IEntityTypeConfiguration classes (avoids large OnModelCreating)](https://github.com/dotnet/efcore/issues/8434)
- [Interception to modify the LINQ expression tree](https://github.com/dotnet/efcore/issues/28505)
- [Interception for DbUpdateConcurrencyException](https://github.com/dotnet/efcore/issues/28315)
- [Add interception event to be fired when EF has finished consuming a result set](https://github.com/dotnet/efcore/issues/23535)
- [Add events for DetectChanges/state change](https://github.com/dotnet/efcore/issues/16256)
- [ChangeTracker: New event for "entity about to get tracked"](https://github.com/dotnet/efcore/issues/27093)
- [Translate EnvelopeCombiner.CombineAsGeometry aggregate function](https://github.com/dotnet/efcore/issues/28184)
- [SQL Server: Translate statistics aggregate functions](https://github.com/dotnet/efcore/issues/28104)
- [Filtered Includes for hidden navigation properties](https://github.com/dotnet/efcore/issues/27493)
- [Make it easier to pass a CancellationToken to FindAsync](https://github.com/dotnet/efcore/issues/22667)
- [Interception for object materialization (a.k.a. "ObjectMaterialized")](https://github.com/dotnet/efcore/issues/15911)
- [Provide a hook for identity resolution](https://github.com/dotnet/efcore/issues/20124)
- [Create lazy-loading and change-tracking proxy types lazily](https://github.com/dotnet/efcore/issues/20135)
- [Compiled model: Allow use of lazy loading and change tracking proxy types](https://github.com/dotnet/efcore/issues/24902)
- [Full support for custom provider aggregate functions](https://github.com/dotnet/efcore/issues/22957)
- [Spatial: Translate aggregate functions](https://github.com/dotnet/efcore/issues/13278)
- [Allow specifying different column names per table in TPT, TPC or entity splitting](https://github.com/dotnet/efcore/issues/19811)
- [Support for custom proxy generation](https://github.com/dotnet/efcore/issues/14554)
- [TPC inheritance mapping pattern](https://github.com/dotnet/efcore/issues/3170)
- [DeleteBehaviorAttribute](https://github.com/dotnet/efcore/issues/9621)
- [Translate GetType() for entity types with inheritance](https://github.com/dotnet/efcore/issues/13424)
- [Delay DbCommandInterceptor.CommandCreated until DbCommand properties are initialized](https://github.com/dotnet/efcore/issues/17261)
- [Remove unnecessary extra batches in SaveChanges](https://github.com/dotnet/efcore/issues/20664)
- [Don't check for a connection string until after ConnectionOpening has been called](https://github.com/dotnet/efcore/issues/23085)
- [Add ConnectionCreating/ConnectionCreated to DbConnectionInterceptor](https://github.com/dotnet/efcore/issues/23087)
- [Migration name filter](https://github.com/dotnet/efcore/issues/23222)
 ... (truncated)

## 7.0.0-preview.7.22376.2

EF Core 7.0 (EF7) preview 7 is [available from NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.0-preview.7.22376.2)

Preview 7 contains the following new features:

- [Support unidirectional many-to-many relationships](https://github.com/dotnet/efcore/issues/3864)
- [Translate string.Join and string.Concat](https://github.com/dotnet/efcore/issues/2981)
- [RevEng: Enable generating IEntityTypeConfiguration classes (avoids large OnModelCreating)](https://github.com/dotnet/efcore/issues/8434)
- [Interception to modify the LINQ expression tree](https://github.com/dotnet/efcore/issues/28505)
- [Interception for DbUpdateConcurrencyException](https://github.com/dotnet/efcore/issues/28315)
- [Add interception event to be fired when EF has finished consuming a result set](https://github.com/dotnet/efcore/issues/23535)
- [Add events for DetectChanges/state change](https://github.com/dotnet/efcore/issues/16256)
- [ChangeTracker: New event for "entity about to get tracked"](https://github.com/dotnet/efcore/issues/27093)
- [Translate EnvelopeCombiner.CombineAsGeometry aggregate function](https://github.com/dotnet/efcore/issues/28184)
- [SQL Server: Translate statistics aggregate functions](https://github.com/dotnet/efcore/issues/28104)
- [Filtered Includes for hidden navigation properties](https://github.com/dotnet/efcore/issues/27493)
- [Make it easier to pass a CancellationToken to FindAsync](https://github.com/dotnet/efcore/issues/22667)

Preview 7 also includes the following new features from previews 1 through 6:

- [Interception for object materialization (a.k.a. "ObjectMaterialized")](https://github.com/dotnet/efcore/issues/15911)
- [Provide a hook for identity resolution](https://github.com/dotnet/efcore/issues/20124)
- [Create lazy-loading and change-tracking proxy types lazily](https://github.com/dotnet/efcore/issues/20135)
- [Compiled model: Allow use of lazy loading and change tracking proxy types](https://github.com/dotnet/efcore/issues/24902)
- [Full support for custom provider aggregate functions](https://github.com/dotnet/efcore/issues/22957)
- [Spatial: Translate aggregate functions](https://github.com/dotnet/efcore/issues/13278)
- [Allow specifying different column names per table in TPT, TPC or entity splitting](https://github.com/dotnet/efcore/issues/19811)
- [Support for custom proxy generation](https://github.com/dotnet/efcore/issues/14554)
- [TPC inheritance mapping pattern](https://github.com/dotnet/efcore/issues/3170)
- [DeleteBehaviorAttribute](https://github.com/dotnet/efcore/issues/9621)
- [Translate GetType() for entity types with inheritance](https://github.com/dotnet/efcore/issues/13424)
- [Delay DbCommandInterceptor.CommandCreated until DbCommand properties are initialized](https://github.com/dotnet/efcore/issues/17261)
- [Remove unnecessary extra batches in SaveChanges](https://github.com/dotnet/efcore/issues/20664)
- [Don't check for a connection string until after ConnectionOpening has been called](https://github.com/dotnet/efcore/issues/23085)
- [Add ConnectionCreating/ConnectionCreated to DbConnectionInterceptor](https://github.com/dotnet/efcore/issues/23087)
- [Migration name filter](https://github.com/dotnet/efcore/issues/23222)
- [Add support for AT TIME ZONE](https://github.com/dotnet/efcore/issues/26199)
- [GroupBy aggregate lifting](https://github.com/dotnet/efcore/issues/27132)
- [Pascal-case the DbContext name when scaffolding](https://github.com/dotnet/efcore/issues/27886)
- [Support value generation with converters](https://github.com/dotnet/efcore/issues/11597)
- [Improve batching performance when using TPH mappings](https://github.com/dotnet/efcore/issues/3954)
- [Attribute (Data Annotations) mapping for composite primary keys](https://github.com/dotnet/efcore/issues/11003)
- [SQL Server UTF8 collations](https://github.com/dotnet/efcore/issues/25798)
- [Stop wrapping single changes in transactions where possible](https://github.com/dotnet/efcore/issues/27439)
- [Use RETURNING/OUTPUT clause for UPDATE/DELETE](https://github.com/dotnet/efcore/issues/27547)
- [SQLite SaveChanges: Use RETURNING clause](https://github.com/dotnet/efcore/issues/24835)
- [SQL Server: Optimize SQL Server OUTPUT clause usage when retrieving database-generated values](https://github.com/dotnet/efcore/issues/27372)
- [Stop automatically deleting orphans for optional relationships with cascade delete configured](https://github.com/dotnet/efcore/issues/27217)
- [Empty default interface implementations for all interceptor interface methods](https://github.com/dotnet/efcore/issues/27625)
- [Temporal tables support for owned entities and other table splitting scenarios](https://github.com/dotnet/efcore/issues/26469)
- [Support for index ordering (ASC/DESC)](https://github.com/dotnet/efcore/issues/4150)
 ... (truncated)

Commits viewable in [compare view](https://github.com/dotnet/efcore/compare/v6.0.36...v7.0.20).
</details>

Updated [Microsoft.EntityFrameworkCore.SqlServer](https://github.com/dotnet/efcore) from 6.0.1 to 7.0.20.

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

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

## 7.0.20

## Note: EF Core 7 is now [out-of-support](https://learn.microsoft.com/ef/core/what-is-new/).

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.20) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.19.


## 7.0.19

## Note: EF Core 7 is now [out-of-support](https://learn.microsoft.com/ef/core/what-is-new/).

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.19) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.18.


## 7.0.18

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.18) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.17.


## 7.0.17

EF Core 7.0.17 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.17). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.17+is%3Aclosed):

- [SqlClient - Update 8.0 to 5.1.5](https://github.com/dotnet/efcore/issues/33010)


## 7.0.16

EF Core 7.0.16 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.16). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.16+is%3Aclosed):

- [Cancelled token does not prevent execution of ExecuteDeleteAsync(token)](https://github.com/dotnet/efcore/issues/31448)


## 7.0.15

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.15) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.14.


## 7.0.14

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.14) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.13.


## 7.0.13

EF Core 7.0.13 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.13). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.13+is%3Aclosed):

- [Update from ef 6 to ef 7. Error getting base type entities where one child has a required navigation property](https://github.com/dotnet/efcore/issues/31107)
- [Incorrect translation of comparison of current value with owned type default value](https://github.com/dotnet/efcore/issues/30996)
- [GroupBy generates invalid SQL when using custom database function](https://github.com/dotnet/efcore/issues/29638)

And also the following bug fixes from [EF Core 6.0.24](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A6.0.24+is%3Aclosed):

- [Memory leak in EntityMaterializerSource](https://github.com/dotnet/efcore/issues/31866)
- [Possible finalizer thread stuck on System.RuntimeMethodHandle.Destroy](https://github.com/dotnet/efcore/issues/31782)
- [Memory Issue with EF Core 7 DbContext ServiceProviderCache](https://github.com/dotnet/efcore/issues/31539)



## 7.0.12

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.12) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.11.


## 7.0.11

This is a [patch release of EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.11) containing only updates to dependencies. There are no additional fixes in this release beyond those already shipped in EF Core 7.0.10.


## 7.0.10

EF Core 7.0.10 is [available on NuGet now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.10). This is a patch release of EF Core 7 containing only [important bug fixes](https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.10+is%3Aclosed):

- [Scaffolding synapse fails whe...

_Description has been truncated_

Bumps Microsoft.CodeAnalysis.CSharp from 4.13.0 to 4.14.0
Bumps Microsoft.Data.SqlClient from 5.2.3 to 6.1.0
Bumps Microsoft.EntityFrameworkCore.Design from 6.0.36 to 7.0.20
Bumps Microsoft.EntityFrameworkCore.SqlServer from 6.0.1 to 7.0.20
Bumps Microsoft.Extensions.DependencyModel from 9.0.4 to 9.0.7

---
updated-dependencies:
- dependency-name: Microsoft.CodeAnalysis.CSharp
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Data.SqlClient
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-version: 7.0.20
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.EntityFrameworkCore.SqlServer
  dependency-version: 7.0.20
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.Extensions.DependencyModel
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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 Jul 28, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 18, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 18, 2025

Looks like these dependencies are no longer a dependency, so this is no longer needed.

@dependabot dependabot bot closed this Aug 18, 2025
@dependabot dependabot bot deleted the dependabot/nuget/EFCore.SqlServer.DateOnlyTimeOnly.Test/multi-f9924504f0 branch August 18, 2025 05:57
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