Skip to content

Commit 16e7287

Browse files
authored
Merge pull request #23991 from abpframework/auto-merge/rel-10-0/4056
Merge branch dev with rel-10.0
2 parents cfc2224 + c7c2d19 commit 16e7287

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

docs/en/release-info/migration-guides/abp-10-0.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ This document is a guide for upgrading ABP v9.x solutions to ABP v10.0. There ar
88

99
We've upgraded ABP to .NET 10.0, so you need to move your solutions to .NET 10.0 if you want to use ABP 10.0. You can check Microsoft’s [Migrate from ASP.NET Core 9.0 to 10.0](https://learn.microsoft.com/en-us/aspnet/core/migration/90-to-100) documentation, to see how to update an existing ASP.NET Core 9.0 project to ASP.NET Core 10.0.
1010

11+
### Add new EF Core Migrations
12+
13+
Some entities in certain modules have been modified. If you are using Entity Framework Core, please create a new EF Core migration in your project after upgrading to ABP 10.0.
14+
15+
> If the migration file is empty, you can remove it by `dotnet ef migrations remove` command.
16+
1117
### Razor Runtime Compilation Obsolete
1218

1319
We removed the Razor Runtime Compilation support since it is obsolete and replaced by [Hot Reload](https://learn.microsoft.com/en-us/aspnet/core/test/hot-reload) in .NET 10.0.

modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/IdentitySessionConsts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class IdentitySessionConsts
66

77
public static int MaxDeviceLength { get; set; } = 64;
88

9-
public static int MaxDeviceInfoLength { get; set; } = 64;
9+
public static int MaxDeviceInfoLength { get; set; } = 256;
1010

1111
public static int MaxClientIdLength { get; set; } = 64;
1212

0 commit comments

Comments
 (0)