@ -13,7 +13,7 @@ This document is a guide for upgrading ABP v10.1 solutions to ABP v10.2. There a
## Open-Source (Framework)
This version only requires changes on the open-source side. **There are no breaking changes on the PRO side.**
This version contains the following changes on the open-source side:
### Add New EF Core Migrations for Audit Logging Module
@ -116,3 +116,17 @@ x.WithHostAuthentication();
- **BatchRunCondition renamed:**`BatchRunCondition? BatchRunCondition` → `RunCondition? RunCondition` in `AbpBackgroundJobsTimeTickerConfiguration`
> See [#24916](https://github.com/abpframework/abp/pull/24916) for more details.
## Pro
There are no breaking changes on the PRO side. However, if you use the Identity Pro module with Entity Framework Core, you need to make the following update:
### Add `UserInvitations` DbSet for Identity Pro EF Core DbContexts
If your solution uses the Identity Pro module with Entity Framework Core, and your DbContext base class implements `IIdentityProDbContext`, add the new `UserInvitations` DbSet property to your DbContext:
```csharp
public DbSet<UserInvitation> UserInvitations { get; set; }
```
This is required for Identity Pro module users (it is installed by default in most/every startup templates). After adding the property, create a new EF Core migration and apply it to your database.