From c23833caaacabbff4b1e0c970b82760261254346 Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Tue, 26 Jul 2022 12:11:59 +0300 Subject: [PATCH 1/5] Create Abp-6_0.md --- docs/en/Migration-Guides/Abp-6_0.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docs/en/Migration-Guides/Abp-6_0.md diff --git a/docs/en/Migration-Guides/Abp-6_0.md b/docs/en/Migration-Guides/Abp-6_0.md new file mode 100644 index 0000000000..d776ef0f38 --- /dev/null +++ b/docs/en/Migration-Guides/Abp-6_0.md @@ -0,0 +1,21 @@ +# ABP Version 6.0 Migration Guide + +This document is a guide for upgrading ABP v5.3 solutions to ABP v6.0. There is a change in this version that may effect your applications, please read it carefully and apply the necessary changes to your application. + +## Added IsActive property + +`IsActive` property is added to `IUserData`. This property is set to **true** by default. **Cmskit** and **Blog** modules are effected by this change. You need to add new migration to your existing application if you are using any of these modules. Please see [#11417](https://github.com/abpframework/abp/pull/11417) for more info. + +## Default behavior change in MultiTenancyMiddlewareErrorPageBuilder + +If you have customized the `MultiTenancyMiddlewareErrorPageBuilder` of `AbpMultiTenancyOptions`, the pipeline now returns **true** to stop the pipeline as default behavior. See [AbpMultiTenancyOptions: Handle inactive and non-existent tenants](https://github.com/abpframework/abp/blob/dev/docs/en/Multi-Tenancy.md#abpmultitenancyoptions-handle-inactive-and-non-existent-tenants) for more info. + + + +## Renamed UrlSortingMiddleware (volo) + +There was a typo in CMS.Kit.Pro.Public.Web module. UrlSortingMiddleware is renamed to UrlS**h**ortingMiddleware. + +## See Also + +* [Official blog post for the 6.0 release](https://blog.abp.io/abp/ABP.IO-Platform-6.0-RC-Has-Been-Published) From 699818215ceca89833e4945fe16b0d9e794b9608 Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Tue, 26 Jul 2022 15:02:40 +0300 Subject: [PATCH 2/5] Added LeptonX and OpenIddict headers --- docs/en/Migration-Guides/Abp-6_0.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/en/Migration-Guides/Abp-6_0.md b/docs/en/Migration-Guides/Abp-6_0.md index d776ef0f38..788c08c676 100644 --- a/docs/en/Migration-Guides/Abp-6_0.md +++ b/docs/en/Migration-Guides/Abp-6_0.md @@ -10,11 +10,14 @@ This document is a guide for upgrading ABP v5.3 solutions to ABP v6.0. There is If you have customized the `MultiTenancyMiddlewareErrorPageBuilder` of `AbpMultiTenancyOptions`, the pipeline now returns **true** to stop the pipeline as default behavior. See [AbpMultiTenancyOptions: Handle inactive and non-existent tenants](https://github.com/abpframework/abp/blob/dev/docs/en/Multi-Tenancy.md#abpmultitenancyoptions-handle-inactive-and-non-existent-tenants) for more info. +## Migrating to LeptonX Lite +LeptonX Lite is now being introduced and you can follow [Migrating from Lepton to LeptonX guide](#todo) to migrate your existing application. +Migrating to OpenIddict -## Renamed UrlSortingMiddleware (volo) +## Migrating to OpenIddict -There was a typo in CMS.Kit.Pro.Public.Web module. UrlSortingMiddleware is renamed to UrlS**h**ortingMiddleware. +After the [announcement of plan to replace the IdentityServer](https://github.com/abpframework/abp/issues/11989), we have successfully implemented [Openiddict](https://github.com/openiddict/openiddict-core) as a replacement for IdentityServer4 as OpenID-Provider. You can follow [Migrating Identity Server to OpenIddict guide](./IdentityServer_To_OpenIddict.md) ## See Also From e76ccb8352984dc730c246ebd9bc9215b29593b9 Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Tue, 26 Jul 2022 16:34:53 +0300 Subject: [PATCH 3/5] Updated leptonx guide --- docs/en/Migration-Guides/Abp-6_0.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/en/Migration-Guides/Abp-6_0.md b/docs/en/Migration-Guides/Abp-6_0.md index 788c08c676..5fd1f6f254 100644 --- a/docs/en/Migration-Guides/Abp-6_0.md +++ b/docs/en/Migration-Guides/Abp-6_0.md @@ -12,12 +12,15 @@ If you have customized the `MultiTenancyMiddlewareErrorPageBuilder` of `AbpMulti ## Migrating to LeptonX Lite -LeptonX Lite is now being introduced and you can follow [Migrating from Lepton to LeptonX guide](#todo) to migrate your existing application. -Migrating to OpenIddict +LeptonX Liite is now being introduced and you can follow the guides below to migrate your existing applications: + +- [Migrating to LeptonX MVC UI](../themes/LeptonXLite/AspNetCore.md) +- [Migrating to LeptonX Angular UI](../themes/LeptonXLite/angular.md) +- [Migrating to LeptonX Blazor UI](../themes/LeptonXLite/blazor.md) ## Migrating to OpenIddict -After the [announcement of plan to replace the IdentityServer](https://github.com/abpframework/abp/issues/11989), we have successfully implemented [Openiddict](https://github.com/openiddict/openiddict-core) as a replacement for IdentityServer4 as OpenID-Provider. You can follow [Migrating Identity Server to OpenIddict guide](./IdentityServer_To_OpenIddict.md) +After the [announcement of plan to replace the IdentityServer](https://github.com/abpframework/abp/issues/11989), we have successfully implemented [Openiddict](https://github.com/openiddict/openiddict-core) as a replacement for IdentityServer4 as OpenID-Provider. You can follow [Migrating Identity Server to OpenIddict guide](./IdentityServer_To_OpenIddict.md). ## See Also From ab4ef50b8b04a467e939d6f1a9c0c3c9ee84e3de Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Wed, 27 Jul 2022 13:35:52 +0300 Subject: [PATCH 4/5] Update Abp-6_0.md --- docs/en/Migration-Guides/Abp-6_0.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/Migration-Guides/Abp-6_0.md b/docs/en/Migration-Guides/Abp-6_0.md index 5fd1f6f254..0d99ee5a2d 100644 --- a/docs/en/Migration-Guides/Abp-6_0.md +++ b/docs/en/Migration-Guides/Abp-6_0.md @@ -1,18 +1,18 @@ # ABP Version 6.0 Migration Guide -This document is a guide for upgrading ABP v5.3 solutions to ABP v6.0. There is a change in this version that may effect your applications, please read it carefully and apply the necessary changes to your application. +This document is a guide for upgrading ABP v5.3 solutions to ABP v6.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. ## Added IsActive property -`IsActive` property is added to `IUserData`. This property is set to **true** by default. **Cmskit** and **Blog** modules are effected by this change. You need to add new migration to your existing application if you are using any of these modules. Please see [#11417](https://github.com/abpframework/abp/pull/11417) for more info. +`IsActive` property is added to `IUserData`. This property is set to **true** by default. **Cmskit** and **Blog** modules are affected by this change. You need to add new migration to your existing application if you are using any of these modules. Please see [#11417](https://github.com/abpframework/abp/pull/11417) for more info. ## Default behavior change in MultiTenancyMiddlewareErrorPageBuilder -If you have customized the `MultiTenancyMiddlewareErrorPageBuilder` of `AbpMultiTenancyOptions`, the pipeline now returns **true** to stop the pipeline as default behavior. See [AbpMultiTenancyOptions: Handle inactive and non-existent tenants](https://github.com/abpframework/abp/blob/dev/docs/en/Multi-Tenancy.md#abpmultitenancyoptions-handle-inactive-and-non-existent-tenants) for more info. +If you have customized the `MultiTenancyMiddlewareErrorPageBuilder` of `AbpMultiTenancyOptions`, the pipeline now returns **true** to stop the pipeline as the default behavior. See [AbpMultiTenancyOptions: Handle inactive and non-existent tenants](https://github.com/abpframework/abp/blob/dev/docs/en/Multi-Tenancy.md#abpmultitenancyoptions-handle-inactive-and-non-existent-tenants) for more info. ## Migrating to LeptonX Lite -LeptonX Liite is now being introduced and you can follow the guides below to migrate your existing applications: +LeptonX Lite is now being introduced and you can follow the guides below to migrate your existing applications: - [Migrating to LeptonX MVC UI](../themes/LeptonXLite/AspNetCore.md) - [Migrating to LeptonX Angular UI](../themes/LeptonXLite/angular.md) From d1cc1c272841c94ac6aca49fd72b42e6290131e2 Mon Sep 17 00:00:00 2001 From: Engincan VESKE <43685404+EngincanV@users.noreply.github.com> Date: Thu, 28 Jul 2022 12:33:15 +0300 Subject: [PATCH 5/5] Add 6.0 migration guide to Migration Guides list --- docs/en/Migration-Guides/Index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en/Migration-Guides/Index.md b/docs/en/Migration-Guides/Index.md index c24ac09eee..e3ea77db1f 100644 --- a/docs/en/Migration-Guides/Index.md +++ b/docs/en/Migration-Guides/Index.md @@ -2,6 +2,7 @@ The following documents explain how to migrate your existing ABP applications. We write migration documents only if you need to take an action while upgrading your solution. Otherwise, you can easily upgrade your solution using the [abp update command](../Upgrading.md). +- [5.3 to 6.0](Abp-6_0.md) - [5.2 to 5.3](Abp-5_3.md) - [5.1 to 5.2](Abp-5_2.md) - [4.x to 5.0](Abp-5_0.md)