This document is a guide for upgrading ABP v6.0 solutions to ABP v7.0. There is a change in this version that may affect your applications, please read it carefully and apply the necessary changes to your application.
## Remove `FormTenantResolveContributor` from the `AbpTenantResolveOptions`.
If you need to get tenant info from `HTTP Request From`, please add a custom `TenantResolveContributor` to implement it.
## Remove `IHybridServiceScopeFactory`.
Please use `IServiceScopeFactory` to replace the `IHybridServiceScopeFactory`.
## Hybrid JSON was removed.
Since [System.Text.Json](https://learn.microsoft.com/en-us/dotnet/standard/serialization/system-text-json/overview) library supports more custom features in NET 7, ABP no longer need the hybrid Json feature.
@ -34,3 +42,53 @@ Check the docs to see the more info: https://github.com/abpframework/abp/blob/de
Check the docs to see how to customize a JSON contract: https://learn.microsoft.com/en-us/dotnet/standard/serialization/system-text-json/custom-contracts
## Move "host features" to the settings page.
It's just a UI change.
See https://github.com/abpframework/abp/pull/13359
## Remove the `setter` from the auditing interfaces.
`AuditedEntity` and other base entity classes will continue to have public setters. If you want to make them private, don't derive from these base classes, but implement the interfaces yourself.
See https://github.com/abpframework/abp/issues/12229#issuecomment-1191384798
## Add Abp prefix to DbProperties classes
Please update the database migration and related connection string names.
## `EntityCreatingEventData`, `EntityUpdatingEventData`, `EntityDeletingEventData` and `EntityChangingEventData` has been removed.
They are deprecated don't use them anymore.
## LayoutHookInfo.cs, LayoutHookViewModel.cs, LayoutHooks.cs, AbpLayoutHookOptions.cs classes have been moved under the Volo.Abp.Ui.LayoutHooks namespace.
See https://github.com/abpframework/abp/pull/13903
## Remove abp.auth.policies.
`abp.auth.policies` was never used, We only use `abp.auth.grantedPolicies`.
## Static C# proxy generation
The `abp generate-proxy -t csharp ..` command will generate all the `classes/enums/other types` in the client side (including application service interfaces)
If you have reference to the target contracts package, then we can pass a parameter `--without-contracts (shortcut: -c)`.
See https://github.com/abpframework/abp/issues/13613#issue-1333088953
## Dynamic permissions
* `IPermissionDefinitionManager` methods are converted to asynchronous, and renamed (added Async postfix).
* Removed `MultiTenancySides` from permission groups.
* Inherit `MultiTenancySides` enum from byte (default was int).
* Needs to add migration for new entities in the Permission Management module.
See https://github.com/abpframework/abp/pull/13644
## External Localization Infrastructure
* Introduced LocalizationResourceBase that is base for localization resources. LocalizationResource inherits from it for typed (static) localization resources (like before). Also introduced NonTypedLocalizationResource that inherits from LocalizationResourceBase for dynamic/external localization resources. We are using LocalizationResourceBase for most of the places where we were using LocalizationResource before and that can be a breaking change for some applications.
* All layouts in all MVC UI themes should add this line just before the ApplicationConfigurationString line <scriptsrc="~/Abp/ApplicationLocalizationScript?cultureName=@CultureInfo.CurrentUICulture.Name"></script>. I've implemented for the basic theme with this release. Because of that, we should be careful while merging this PR - it will break the LeptonX theme.
See https://github.com/abpframework/abp/pull/13845