Skip to content

Commit 5821c8d

Browse files
committed
Merge branch 'PomeloFoundation-main'
2 parents 171567d + 3a55559 commit 5821c8d

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,23 +57,22 @@ The codebase is prepared for EF Core 10 upgrade when .NET 10 becomes available,
5757

5858
Currently tested versions are:
5959

60+
- MySQL 8.4
6061
- MySQL 8.0
62+
- MariaDB 11.6
63+
- MariaDB 11.5
64+
- MariaDB 11.4 (LTS)
6165
- MariaDB 11.3
62-
- MariaDB 11.2
63-
- MariaDB 11.1
64-
- MariaDB 11.0
6566
- MariaDB 10.11 (LTS)
6667
- MariaDB 10.6 (LTS)
6768
- MariaDB 10.5 (LTS)
68-
- MariaDB 10.4 (LTS)
6969

7070
## Schedule and Roadmap
7171

7272
Milestone | Status | Release Date
7373
----------|----------|-------------
7474
9.0.8 | Released | 2025-08-05
7575
9.0.0 | Released | 2025-08-05
76-
9.0.0-preview.3.efcore.9.0.0 | Released | 2025-02-23
7776
8.0.3 | Released | 2025-03-02
7877
7.0.0 | Released | 2023-01-16
7978
6.0.3 | Released | 2024-03-16
@@ -124,7 +123,7 @@ Ensure that your `.csproj` file contains the following reference:
124123

125124
### 2. Services Configuration
126125

127-
Add `Pomelo.EntityFrameworkCore.MySql` to the services configuration in your the `Startup.cs` file of your ASP.NET Core project:
126+
Add `Pomelo.EntityFrameworkCore.MySql` to the services configuration in your `Startup.cs` file of your ASP.NET Core project:
128127

129128
```c#
130129
public class Startup
@@ -138,7 +137,7 @@ public class Startup
138137
// Use 'MariaDbServerVersion' for MariaDB.
139138
// Alternatively, use 'ServerVersion.AutoDetect(connectionString)'.
140139
// For common usages, see pull request #1233.
141-
var serverVersion = new MySqlServerVersion(new Version(8, 0, 40));
140+
var serverVersion = new MySqlServerVersion(new Version(8, 4, 6));
142141

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

0 commit comments

Comments
 (0)