Browse Source

Enhance migration guide for ABP v10.1

Updated migration guide to include user passkey entity details.
pull/24578/head
Ma Liming 7 months ago
committed by GitHub
parent
commit
1276cfb5e0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      docs/en/release-info/migration-guides/abp-10-1.md

6
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.
> **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.

Loading…
Cancel
Save