From 4ab4d3cc4bb1192036460fcd9bf0727c41621048 Mon Sep 17 00:00:00 2001 From: maliming Date: Mon, 28 Oct 2024 14:36:56 +0800 Subject: [PATCH 1/2] Update abp-8-3.md https://github.com/abpframework/abp/pull/20012#issuecomment-2438383059 --- docs/en/release-info/migration-guides/abp-8-3.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/en/release-info/migration-guides/abp-8-3.md b/docs/en/release-info/migration-guides/abp-8-3.md index 50a7f274a4b..5105e9790d6 100644 --- a/docs/en/release-info/migration-guides/abp-8-3.md +++ b/docs/en/release-info/migration-guides/abp-8-3.md @@ -49,6 +49,10 @@ However, notice this package is used by the `@abp/aspnetcore.mvc.ui.theme.shared See the PR for more info: https://github.com/abpframework/abp/pull/19340 +### ApplyAbpConcepts to entities whose navigation property changed + +In this version, We will update the entity's `EntityVersion`, `ModificationAuditProperties` and `ConcurrencyStamp` if its navigation property changes. + ### Angular UI We wish to formally inform you that ABP version 8.3 has been upgraded to incorporate Angular version 18. Consequently, we recommend migrating your application to [Angular v18](https://angular.dev/update-guide) to ensure compatibility. @@ -65,4 +69,4 @@ ABP provides a [URL Forwarding System](../../modules/cms-kit-pro/url-forwarding. Since a new property has been added to the `CmsShortenedUrl` entity, you should create a new migration and apply it to your database. -> After creating a new migration and applying it to your database, typically you don't need to make any changes, however, if you have overridden a page/method or class related to the URL Forwarding System, you might need to update it accordingly. For this purpose, you can get the source code of the [CMS Kit Module's](../../modules/cms-kit-pro/index.md) and update the related parts in your application. \ No newline at end of file +> After creating a new migration and applying it to your database, typically you don't need to make any changes, however, if you have overridden a page/method or class related to the URL Forwarding System, you might need to update it accordingly. For this purpose, you can get the source code of the [CMS Kit Module's](../../modules/cms-kit-pro/index.md) and update the related parts in your application. From d587718a076468f7d438ccbaa7c9e582b0290d01 Mon Sep 17 00:00:00 2001 From: Engincan VESKE Date: Mon, 28 Oct 2024 09:48:03 +0300 Subject: [PATCH 2/2] Update abp-8-3.md --- docs/en/release-info/migration-guides/abp-8-3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/release-info/migration-guides/abp-8-3.md b/docs/en/release-info/migration-guides/abp-8-3.md index 5105e9790d6..85d67e5f1e3 100644 --- a/docs/en/release-info/migration-guides/abp-8-3.md +++ b/docs/en/release-info/migration-guides/abp-8-3.md @@ -49,9 +49,9 @@ However, notice this package is used by the `@abp/aspnetcore.mvc.ui.theme.shared See the PR for more info: https://github.com/abpframework/abp/pull/19340 -### ApplyAbpConcepts to entities whose navigation property changed +### `ApplyAbpConcepts` to Entities Whose Navigation Properties Changed -In this version, We will update the entity's `EntityVersion`, `ModificationAuditProperties` and `ConcurrencyStamp` if its navigation property changes. +In this version, we have started updating entities' `EntityVersion`, `ModificationAuditProperties`, and `ConcurrencyStamp` properties whenever their navigation property changes. Normally, this should not affect your code, however, you may need to fix your tests or codebase for this change. Please see [#20012](https://github.com/abpframework/abp/pull/20012#issuecomment-2438383059) for more information. ### Angular UI