Skip to content

Releases: SORMAS-Foundation/SORMAS-Docker

v2.13.1

23 Nov 16:40
4ef9677
Compare
Choose a tag to compare

Release notes

  • Added document path
  • Made changes to the backup cycle of pg_dump

v2.13.0

18 Nov 10:19
1bff031
Compare
Choose a tag to compare

Changes

Changed to SORMAS Version 1.51.1

Important!


### More release notes at: https://github.com/hzi-braunschweig/SORMAS-Project/releases/tag/v1.51.1

v2.13.0-rc2

13 Nov 09:42
c6b7b9f
Compare
Choose a tag to compare
v2.13.0-rc2 Pre-release
Pre-release
Merge pull request #133 from hzi-braunschweig/development

2.13.0-rc2

v2.13.0-rc1

09 Nov 11:52
86340fb
Compare
Choose a tag to compare
v2.13.0-rc1 Pre-release
Pre-release
Merge pull request #130 from hzi-braunschweig/development

Development

v2.12.1

30 Oct 13:32
f102b1e
Compare
Choose a tag to compare

This release fixes a bug during the database initialization that causes a crash loop of the postgres container.
The crashloop will only occur when installing a new instance with docker. Updating an instance won't have any issues.

Important!

This update introduces a performance problem in the case directory when the case follow-up feature is used (visits for cases).
To solve this you have to execute the following statements on the database:

ALTER TABLE visit ADD CONSTRAINT fk_visit_caze_id FOREIGN KEY (caze_id) REFERENCES cases (id);
create index idx_visit_caze_id on visit using hash (caze_id);
create index idx_eventparticipant_resultingcase_id on eventparticipant using hash (resultingcase_id);

This update adds an even title field and removes the event description column from the event directory. You can use the following SQL script to migrate the first 75 characters of every event description to the title of the same event (as long as the title field hasn't already been filled in) in order to not lose this information in the directory. The description field is still accessible as always in the event details view and in the detailed export:

UPDATE events SET changedate = now() WHERE eventtitle IS NULL OR eventtitle = '' AND archived = false AND deleted = false;
UPDATE events SET eventtitle = (SELECT CASE WHEN char_length(eventdesc) <= 75 THEN eventdesc ELSE (LEFT(eventdesc, 75) || ' ...') END) WHERE (eventtitle IS NULL OR eventtitle = '') AND deleted = false;

More release notes at: https://github.com/hzi-braunschweig/SORMAS-Project/releases/tag/v1.50.0

v2.12.0

27 Oct 10:34
a679e07
Compare
Choose a tag to compare
v2.12.0 Pre-release
Pre-release

Changes

Changed to SORMAS Version 1.50.0

Changed timout for autoheal for sormas to 7s

Added autoconf to tune the postgres

Important!

This update introduces a performance problem in the case directory when the case follow-up feature is used (visits for cases).
To solve this you have to execute the following statements on the database:

ALTER TABLE visit ADD CONSTRAINT fk_visit_caze_id FOREIGN KEY (caze_id) REFERENCES cases (id);
create index idx_visit_caze_id on visit using hash (caze_id);
create index idx_eventparticipant_resultingcase_id on eventparticipant using hash (resultingcase_id);

This update adds an even title field and removes the event description column from the event directory. You can use the following SQL script to migrate the first 75 characters of every event description to the title of the same event (as long as the title field hasn't already been filled in) in order to not lose this information in the directory. The description field is still accessible as always in the event details view and in the detailed export:

UPDATE events SET changedate = now() WHERE eventtitle IS NULL OR eventtitle = '' AND archived = false AND deleted = false;
UPDATE events SET eventtitle = (SELECT CASE WHEN char_length(eventdesc) <= 75 THEN eventdesc ELSE (LEFT(eventdesc, 75) || ' ...') END) WHERE (eventtitle IS NULL OR eventtitle = '') AND deleted = false;

More release notes at: https://github.com/hzi-braunschweig/SORMAS-Project/releases/tag/v1.50.0

v2.12.0-rc1

15 Oct 09:32
9009d32
Compare
Choose a tag to compare
v2.12.0-rc1 Pre-release
Pre-release
Merge pull request #116 from hzi-braunschweig/development

Release 1.50.0-rc1

v2.11.0

05 Oct 16:19
30f827b
Compare
Choose a tag to compare

Changes

Changed to SORMAS Version 1.49.1

v2.11.0-rc2

01 Oct 11:52
a9d8bf9
Compare
Choose a tag to compare
v2.11.0-rc2 Pre-release
Pre-release
Merge pull request #110 from hzi-braunschweig/development

RC 1.49.1

v2.10.3

18 Sep 18:16
b7d2f4f
Compare
Choose a tag to compare

Changes

Changed to SORMAS Version 1.48.2