Skip to content

Commit 22524b4

Browse files
committed
Update release information.
1 parent 58dd688 commit 22524b4

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The following versions of MySqlConnector, EF Core, .NET (Core), .NET Standard an
1515

1616
Release | Branch | MySqlConnector | EF Core | .NET (Core) | .NET Standard | .NET Framework
1717
--- |--------------------------------------------------------------------------------------------------|--------------------|:-------:|:-----------:| :---: | :---:
18-
[9.0.0-<br />rc.1.<br />efcore.9.0.0](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/9.0.0-rc.1.efcore.9.0.0) | [main](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/tree/main) | >= 2.4.0 | 9.0.x | 8.0+ | - | -
18+
[9.0.0](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/9.0.0) | [main](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/tree/main) | >= 2.4.0 | 9.0.x | 8.0+ | - | -
1919
[8.0.3](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/8.0.3) | [8.0-maint](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/tree/8.0-maint) | >= 2.3.5 | 8.0.x | 8.0+ | - | -
2020
[7.0.0](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/7.0.0) | [7.0-maint](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/tree/7.0-maint) | >= 2.2.5 | 7.0.x | 6.0+ | - | -
2121
[6.0.3](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/6.0.3) | [6.0-maint](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/tree/6.0-maint) | >= 2.1.2 | 6.0.x | 6.0+ | - | -
@@ -35,22 +35,21 @@ Release | Branch
3535

3636
Currently tested versions are:
3737

38+
- MySQL 8.4
3839
- MySQL 8.0
40+
- MariaDB 11.6
41+
- MariaDB 11.5
42+
- MariaDB 11.4 (LTS)
3943
- MariaDB 11.3
40-
- MariaDB 11.2
41-
- MariaDB 11.1
42-
- MariaDB 11.0
4344
- MariaDB 10.11 (LTS)
4445
- MariaDB 10.6 (LTS)
4546
- MariaDB 10.5 (LTS)
46-
- MariaDB 10.4 (LTS)
4747

4848
## Schedule and Roadmap
4949

5050
Milestone | Status | Release Date
5151
----------|----------|-------------
52-
9.0.0 | Planned | 2025-08 (see [#1841](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/issues/1841))
53-
9.0.0-rc.1.efcore.9.0.0 | Released | 2025-07-28
52+
9.0.0 | Released | 2025-08-17
5453
8.0.3 | Released | 2025-03-02
5554
7.0.0 | Released | 2023-01-16
5655
6.0.3 | Released | 2024-03-16
@@ -96,12 +95,12 @@ All `.pdb` files use Source Link.
9695
Ensure that your `.csproj` file contains the following reference:
9796

9897
```xml
99-
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.3" />
98+
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0" />
10099
```
101100

102101
### 2. Services Configuration
103102

104-
Add `Pomelo.EntityFrameworkCore.MySql` to the services configuration in your the `Startup.cs` file of your ASP.NET Core project:
103+
Add `Pomelo.EntityFrameworkCore.MySql` to the services configuration in your `Startup.cs` file of your ASP.NET Core project:
105104

106105
```c#
107106
public class Startup
@@ -115,7 +114,7 @@ public class Startup
115114
// Use 'MariaDbServerVersion' for MariaDB.
116115
// Alternatively, use 'ServerVersion.AutoDetect(connectionString)'.
117116
// For common usages, see pull request #1233.
118-
var serverVersion = new MySqlServerVersion(new Version(8, 0, 40));
117+
var serverVersion = new MySqlServerVersion(new Version(8, 4, 6));
119118

120119
// Replace 'YourDbContext' with the name of your own DbContext derived class.
121120
services.AddDbContext<YourDbContext>(

0 commit comments

Comments
 (0)