diff --git a/docs/en/Migration-Guides/Abp-7_4.md b/docs/en/Migration-Guides/Abp-7_4.md index d34b891b66..b2996d0a0a 100644 --- a/docs/en/Migration-Guides/Abp-7_4.md +++ b/docs/en/Migration-Guides/Abp-7_4.md @@ -2,6 +2,19 @@ This document is a guide for upgrading ABP v7.3 solutions to ABP v7.4. There are a few changes in this version that may affect your applications, please read it carefully and apply the necessary changes to your application. +## Bumped the `Microsoft.Extensions.FileProviders.Embedded` Package Version To v7.0.10 + +In this version, the `Microsoft.Extensions.FileProviders.Embedded` (and other `Microsoft.*` packages) upgraded to the latest version, which is v7.0.10. Therefore, in your solution, you should update the `Microsoft.Extensions.FileProviders.Embedded` package (and other `Microsoft.*` packages) version to v7.0.10. This package typically would be in your `Domain.Shared` project and other projects that have embedded resource(s). So, search this package through your solution and update it accordingly. + +> You can check [this issue](https://github.com/abpframework/abp/pull/17516) to see the updated package versions. + +## Bumped the `Blazorise` dependencies to `1.3.1` +In this version, the `Blazorise` dependencies are upgraded to `1.3.1` version. So, if your solution includes any **Blazor** project, then you should upgrade Blazorise packages to 1.3.1 in your `Blazor.csproj` file. +The following packages are included in the templates by default: +- `Blazorise.Bootstrap5` +- `Blazorise.Icons.FontAwesome` +> _If your project depends on more blazorise packages, then you should upgrade all of them._ + ## Renamed the `AddGlobalFilters<>` method as `FilterQueryable<>` in `IMongoDbRepositoryFilterer` ABP Framework provides services to automatically filter data on querying from a database. Prior to this version, creating a new class that derives from the `MongoDbRepositoryFilterer` and overriding its `AddGlobalFilters` method was needed for implementing a data filter for [MongoDB](../MongoDB.md).