diff --git a/.changes/unreleased/Fixed-20241031-121123.yaml b/.changes/unreleased/Fixed-20241031-121123.yaml deleted file mode 100644 index 21d407240..000000000 --- a/.changes/unreleased/Fixed-20241031-121123.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: Fixed -body: Add the possibility of unknown to the gender entity -time: 2024-10-31T12:11:23.734888589+01:00 -custom: - Issue: "" diff --git a/.changes/unreleased/Fixed-20241031-121212.yaml b/.changes/unreleased/Fixed-20241031-121212.yaml deleted file mode 100644 index eac6a4e77..000000000 --- a/.changes/unreleased/Fixed-20241031-121212.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixed -body: Fix the fusion of person doubles by excluding accompanyingPeriod work entities - to be deleted. They are moved instead. -time: 2024-10-31T12:12:12.572142413+01:00 -custom: - Issue: "" diff --git a/.changes/v3.2.1.md b/.changes/v3.2.1.md new file mode 100644 index 000000000..dd1466922 --- /dev/null +++ b/.changes/v3.2.1.md @@ -0,0 +1,4 @@ +## v3.2.1 - 2024-10-31 +### Fixed +* Add the possibility of unknown to the gender entity +* Fix the fusion of person doubles by excluding accompanyingPeriod work entities to be deleted. They are moved instead. diff --git a/CHANGELOG.md b/CHANGELOG.md index e88b081f0..fa8fdca22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## v3.2.1 - 2024-10-31 +### Fixed +* Add the possibility of unknown to the gender entity +* Fix the fusion of person doubles by excluding accompanyingPeriod work entities to be deleted. They are moved instead. + ## v3.2.0 - 2024-10-30 ### Feature * Introduce a gender entity diff --git a/src/Bundle/ChillPersonBundle/Actions/Remove/PersonMove.php b/src/Bundle/ChillPersonBundle/Actions/Remove/PersonMove.php index a70f515f2..603825d35 100644 --- a/src/Bundle/ChillPersonBundle/Actions/Remove/PersonMove.php +++ b/src/Bundle/ChillPersonBundle/Actions/Remove/PersonMove.php @@ -201,7 +201,7 @@ class PersonMove private function getDeleteEntities(): array { return [ -// AccompanyingPeriod\AccompanyingPeriodWork::class, + // AccompanyingPeriod\AccompanyingPeriodWork::class, Relationship::class, ]; }