Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2021-01-28 | 1.6 kB | |
Totals: 1 Item | 1.6 kB | 0 |
Important: There is a known issue with data synchronization on some tablets using Android 7. Please do not use this release without prior testing when you have tablets in use that are running any version of Android 7.
Important: You might experience problems when trying to update your server to this version after you have used the duplicate case merging feature to merge cases with documented exposures. If that is the case, please execute the following SQL script directly in the database before you do the server update. It removes duplicate locations that are responsible for the update failing from deleted cases. There's not data loss involved.
ALTER TABLE exposures ALTER COLUMN location_id DROP NOT NULL;
ALTER TABLE exposures_history ALTER COLUMN location_id DROP NOT NULL;
UPDATE exposures SET location_id = null FROM cases WHERE cases.epidata_id = exposures.epidata_id AND cases.deleted IS true AND (SELECT COUNT(location_id) FROM exposures ex WHERE ex.location_id = exposures.location_id) > 1;
New Features
- [SORMAS2SurvNet] Added functionality to share cluster events with SurvNet (#4082)
Bugfixes
- Fixed a bug in 1.54.0 that would mistakenly set the facility type of most locations in the system to "Hospital" (#4120)
- Fixed error when trying to start server with more than one line listing feature configuration in the database (#4140)
- [Web] Fixed pseudonymization inconsistencies concerning event participant samples (#3965)
Technology
- Preprocess template filling by xdocreport with docx4j (#4095)