From 1276cfb5e0e756cccee9966cf8a966ead407e8d4 Mon Sep 17 00:00:00 2001 From: Ma Liming Date: Fri, 9 Jan 2026 14:20:19 +0800 Subject: [PATCH] Enhance migration guide for ABP v10.1 Updated migration guide to include user passkey entity details. --- docs/en/release-info/migration-guides/abp-10-1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/release-info/migration-guides/abp-10-1.md b/docs/en/release-info/migration-guides/abp-10-1.md index 9b4c7df66a..dce45aff64 100644 --- a/docs/en/release-info/migration-guides/abp-10-1.md +++ b/docs/en/release-info/migration-guides/abp-10-1.md @@ -11,9 +11,9 @@ This document is a guide for upgrading ABP v10.0 solutions to ABP v10.1. There a ## Open-Source (Framework) -### Add New EF Core Migrations for Password History Entity +### Add New EF Core Migrations for Password History/User Passkey Entities -In this version, we added password history support to the [Identity PRO Module](../../modules/identity-pro.md) to enhance security compliance. A new `IdentityUserPasswordHistory` entity has been added to store previous password hashes, preventing users from reusing recent passwords. +In this version, we added password history/ user passkeys support to the [Identity PRO Module](../../modules/identity-pro.md) to enhance security compliance. A new `IdentityUserPasswordHistory` entity has been added to store previous password hashes, preventing users from reusing recent passwords. Additionally, we have introduced an `IdentityUserPasskey `entity to support passkey-based authentication. **You need to create a new EF Core migration and apply it to your database** after upgrading to ABP 10.1. @@ -49,4 +49,4 @@ In this version, the FAQ group system in the [CMS Kit Pro Module](../../modules/ 2. **Create a new EF Core migration and apply it to your database** 3. **Run the one-time data migration seeder** to migrate existing FAQ sections to the new group entity model -> **Note:** If you have existing FAQ data, you may need to create a data seeder to migrate your existing group associations to the new entity-based model. \ No newline at end of file +> **Note:** If you have existing FAQ data, you may need to create a data seeder to migrate your existing group associations to the new entity-based model.