Skip to content

Commit

Permalink
gh-622: add note about unique constraint for release v1.17.28
Browse files Browse the repository at this point in the history
  • Loading branch information
dowhiletrue committed Oct 31, 2022
1 parent c850c48 commit 7110f27
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions release-changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 7110f27

Please sign in to comment.