Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions entity-framework/core/what-is-new/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: EF Core releases and planning
description: Current EF Core releases and schedule/planning details for future releases
author: ajcvickers
ms.date: 11/9/2022
ms.date: 11/13/2024
uid: core/what-is-new/index
---

Expand All @@ -12,9 +12,10 @@ uid: core/what-is-new/index

| Release | Target framework | Supported until | Links |
|----------------------------------------------------------------------------------------|-------------------|---------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [EF Core 9.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore) | .NET 8 | May 12, 2026 | [What's new](xref:core/what-is-new/ef-core-9.0/whatsnew) / [Breaking changes](xref:core/what-is-new/ef-core-9.0/breaking-changes) |
| [EF Core 8.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore) | .NET 8 | November 10, 2026 | [What's new](xref:core/what-is-new/ef-core-8.0/whatsnew) / [Breaking changes](xref:core/what-is-new/ef-core-8.0/breaking-changes) |
| ~~[EF Core 7.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.0)~~ | .NET 6 | Expired May 14, 2024 | [What's new](xref:core/what-is-new/ef-core-7.0/whatsnew) / [Breaking changes](xref:core/what-is-new/ef-core-7.0/breaking-changes) |
| [EF Core 6.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/6.0.0) | .NET 6 | November 12, 2024 (LTS) | [What's new](xref:core/what-is-new/ef-core-6.0/whatsnew) / [Breaking changes](xref:core/what-is-new/ef-core-6.0/breaking-changes) |
| ~~[EF Core 6.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/6.0.0)~~ | .NET 6 | Expired November 12, 2024 | [What's new](xref:core/what-is-new/ef-core-6.0/whatsnew) / [Breaking changes](xref:core/what-is-new/ef-core-6.0/breaking-changes) |
| ~~[EF Core 5.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/5.0.17)~~ | .NET Standard 2.1 | Expired May 10, 2022 | [Announcement](https://devblogs.microsoft.com/dotnet/announcing-the-release-of-ef-core-5-0/) / [Breaking changes](xref:core/what-is-new/ef-core-5.0/breaking-changes) |
| ~~[EF Core 3.1](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/3.1.31)~~ | .NET Standard 2.0 | Expired December 13, 2022 | [Announcement](https://devblogs.microsoft.com/dotnet/announcing-entity-framework-core-3-1-and-entity-framework-6-4/) |
| ~~[EF Core 3.0](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/3.0.3)~~ | .NET Standard 2.1 | Expired March 3, 2020 | [Announcement](https://devblogs.microsoft.com/dotnet/announcing-ef-core-3-0-and-ef-6-3-general-availability/) / [Breaking changes](xref:core/what-is-new/ef-core-3.x/breaking-changes) |
Expand All @@ -32,8 +33,8 @@ Entity Framework Core releases and support are aligned with .NET releases and su

## Guidance on updating to new releases

* Supported releases are patched for security and other critical bugs. Always use the latest patch of a given release. For example, for EF Core 2.1, use 2.1.x for the highest 'x' available.
* Major version updates (for example, from EF Core 2 to EF Core 3) often have breaking changes. Thorough testing is advised when updating across major versions. Use the breaking changes links above for guidance on dealing with breaking changes.
* Supported releases are patched for security and other critical bugs. Always use the latest patch of a given release. For example, for EF Core 9.0, use 9.0.x for the highest 'x' available.
* Major version updates (for example, from EF Core 8 to EF Core 9) often have breaking changes. Thorough testing is advised when updating across major versions. Use the breaking changes links above for guidance on dealing with breaking changes.
* Minor version updates do not typically contain breaking changes. However, thorough testing is still advised since new features can introduce regressions.

## Release planning and schedules
Expand All @@ -44,8 +45,6 @@ Patch releases usually ship monthly, but have a long lead time.

See the [release planning process](xref:core/what-is-new/release-planning) for more information on how we decide what to ship in each release. We typically don't do detailed planning for further out than the next major or minor release.

## EF Core 9.0
## EF Core 10.0

The next planned stable release is **EF Core 9.0**, or just **EF9**, scheduled for **November 2024**.

See the [What's New in EF9](xref:core/what-is-new/ef-core-9.0/whatsnew) for more information.
The next planned stable release is **EF Core 10.0**, or just **EF10**, scheduled for **November 2025**.
Loading