https://abp.io/docs/latest/release-info/migration-guides/abp-8-2-blazor-web-app
hi
If you only have one payment method, the GatewaySelection
page automatically redirects you to PaymentUrl
.
https://abp.io/docs/commercial/8.1/modules/payment
https://abp.io/docs/8.3/release-info/migration-guides/abp-8-3
This document is a guide for upgrading ABP v8.x solutions to ABP v8.2. There are some changes in this version that may affect your applications, please read it carefully and apply the necessary changes to your application.
TargetFrameworks
of the following template projects are upgraded to net8.0:
*.Application.Contracts
*.Domain.Shared
*.Domain
*.MongoDB
*.HttpApi.Client
*.Host.Shared
(for module template)Before this version, all of the projects above were targeting multiple frameworks (netstandard2.0, netstandard2.1 and net8.0), with this version, we started to only target net8.0 for these template projects. Note that, all other shared libraries still target multiple frameworks.
This change should not affect your pre-existing solutions and you don't need to make any changes in your application. See the PR for more info: https://github.com/abpframework/abp/pull/19565
In this version, AutoMapper library version upgraded to 13.0.1. See the release notes of AutoMapper v13.0.1 for more information.
.tab-content
class for Basic ThemeIn this version, default padding (padding-top: 1.5rem and padding-bottom: 1.5rem) has been added to the tab-content for the Basic Theme. See #19475 for more information.
With this version on, ABP Framework allows you to use single blog mode, without needing to define a blog and a prefix. With this change, the following namespace changes were done:
Volo.Blogging.Pages.Blog
-> Volo.Blogging.Pages.Blogs
Volo.Blogging.Pages.Members
-> Volo.Blogging.Pages.Blogs.Members
(members folder)If you haven't overridden the pages above, then you don't need to make any additional changes. See #19418 for more information.
FlagIcon
property from the ILanguageInfo
The FlagIcon
property has been removed from the ILanguageInfo
interface since we removed the flag icon library in the earlier versions from all of our themes and none of them using it now.
If the flag icon has been specified while defining the localization languages, then it should be removed:
Configure<AbpLocalizationOptions>(options =>
{
- options.Languages.Add(new LanguageInfo("hi", "hi", "Hindi", "in"));
+ options.Languages.Add(new LanguageInfo("hi", "hi", "Hindi"));
//...
}
In this version, ABP Framework provides a new UI option called Blazor Full-Stack WebApp. We have already created an introduction/migration guide for you to check it: Migrating to Blazor Web App
Please read the documentation carefully if you are considering migrating your existing Blazor project to Blazor WebApp.
The Session Management feature allows you to prevent concurrent login and manage user sessions.
In this version, a new entity called IdentitySession
has been added to the framework and you should create a new migration and apply it to your database.
hi
We will fix this issue.
hi
You can use @attribute [Authorize(AbpSolution1Permissions.Books.Default)]
in your component.
eg https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor#L2
hi
Link user feature : https://abp.io/docs/latest/modules/account/linkedaccounts
I think it comes from the Nuget package. You can ignore it.
Thanks. I will check your other ticket. The current ticket has been refunded.
anyway the problem is solved
Great!