From 7110f2792f85edb8e46e13e58ee4a91687a1edeb Mon Sep 17 00:00:00 2001 From: Michael Zaugg Date: Mon, 31 Oct 2022 13:28:21 +0100 Subject: [PATCH] gh-622: add note about unique constraint for release v1.17.28 --- release-changelog.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/release-changelog.md b/release-changelog.md index d308a6a8f..cc9b4e24d 100644 --- a/release-changelog.md +++ b/release-changelog.md @@ -1,3 +1,9 @@ +# v1.17.28 +* Due to a new unique constraint for issue [#622](https://github.com/liimaorg/liima/issues/622), `TAMW_RESOURCE` needs to be free of duplicate `RELEASE_ID, RESOURCEGROUP_ID` pairs **before** applying the change-set. Duplicates can be found using following sql statement: + ``` + select count(*), RELEASE_ID, RESOURCEGROUP_ID from TAMW_RESOURCE group by RELEASE_ID, RESOURCEGROUP_ID having count(*) > 1; + ``` + # v1.17.27 * **BREAKING CHANGE** New release of relation uses old prop descriptor for copied instance property [#487](https://github.com/liimaorg/liima/issues/487) * This fixes a long-standing bug in Liima and requires manual database cleanup before the updated can be deployed. Instructions can be found [here](./AMW_db_scripts/v1.17.27_property_cleanup.md)