Browse Source

docs: add @volo/ai-management NPM package requirement to ABP 10.2 migration guide

Co-authored-by: EngincanV <43685404+EngincanV@users.noreply.github.com>
pull/25013/head
copilot-swe-agent[bot] 7 months ago
parent
commit
2dee7d8252
  1. 20
      docs/en/release-info/migration-guides/abp-10-2.md

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

@ -126,7 +126,25 @@ ABP now uses Angular's ARIA support for accessible tabs. Add the `@angular/aria`
## 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:
There are no breaking changes on the PRO side. However, please check the following sections if they apply to your application.
### Add `@volo/ai-management` NPM Package for MVC UI
If you are using the MVC UI of the [AI Management Module](../../modules/ai-management.md), you need to add the `@volo/ai-management` package to your `package.json` file. This package was introduced in ABP v10.2 to support the enhanced markdown rendering on the chat playground.
Add the following line to the `dependencies` section of your `package.json` file:
```json
"@volo/ai-management": "10.2.0"
```
After adding the package, run the following command in the root directory of your web project:
```bash
abp install-libs
```
Alternatively, you can run this command via ABP Studio.
### Add `UserInvitations` DbSet for Identity Pro EF Core DbContexts

Loading…
Cancel
Save