Skip to content

Releases: SORMAS-Foundation/SORMAS-Docker

v2.11.0-rc1

25 Sep 13:08
0dcb549
Compare
Choose a tag to compare
v2.11.0-rc1 Pre-release
Pre-release
Merge pull request #104 from hzi-braunschweig/integration

v2.10.1

v2.10.1

11 Sep 13:00
697705e
Compare
Choose a tag to compare

This hotfix fixes a potential problem during server update that occurs only for servers that have been running for more than two months. If you've already successfully updated your server to 1.48.0, you don't have to update your server to this hotfix version.

For more infos about 1.48.0 , check the release notes:
https://github.com/hzi-braunschweig/SORMAS-Project/releases/tag/v1.48.0

v2.10.0

09 Sep 15:12
f049072
Compare
Choose a tag to compare
v2.10.0 Pre-release
Pre-release

Changed to SORMAS Version 1.48.0

IMPORTANT: Please execute the following SQL directly in your database BEFORE updating to this version:

ALTER TABLE campaignformmeta ADD COLUMN campaignformtranslations json;

It's fine if this command fails. In that case, you can ignore it and do the update.

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

v2.9.1

04 Sep 11:36
dadf742
Compare
Choose a tag to compare

Release Hotfix 1.47.1

This release fixes a bug in 1.47.0 that removed most symptoms and epi data from cases. Please execute the following code in your database to restore these relations:

DROP TABLE IF EXISTS t_cases;
DROP TABLE IF EXISTS t_cases_history;

CREATE temp table t_cases
AS SELECT c.id FROM cases c WHERE c.epidata_id IS NULL OR c.symptoms_id IS NULL;

CREATE temp table t_cases_history
AS SELECT DISTINCT ON(ch.id) ch.id, ch.epidata_id, ch.symptoms_id FROM cases_history ch, t_cases c WHERE ch.id = c.id AND ch.epidata_id IS NOT NULL AND ch.symptoms_id IS NOT NULL;

UPDATE cases SET symptoms_id = ch.symptoms_id, epidata_id = ch.epidata_id FROM t_cases_history ch WHERE ch.id = cases.id AND (cases.symptoms_id IS NULL OR cases.epidata_id IS NULL);

DROP TABLE IF EXISTS t_cases;
DROP TABLE IF EXISTS t_cases_history;

Enabled metrics-endpoint for payara.

Now it is possible to scrape metrics directly from the builtin payara. The endpoint is accessable via /metrics.
The access to that page is limited by PROMETHEUS_SERVERS environment. A list of ips divided by spaces.

v2.9.0

31 Aug 15:50
982ab44
Compare
Choose a tag to compare

BROKEN RELEASE, DO NOT USE!

If you updated to v2.9.0 (1.47.0), immediately update to Hotfix v2.9.1 (1.47.1) and read the release notes

Changed to SORMAS Version 1.47.0

Important notes:
CASE_FOLLOWUP feature is newly implemented in this release but disabled by default. If you wish to enable it, you have to do it via database query:
update featureconfiguration set enabled='t' where featuretype='CASE_FOLLOWUP';

v2.8.0

05 Aug 14:35
f43ecea
Compare
Choose a tag to compare

Changes

Changed to SORMAS Version 1.46.0

v2.7.1

28 Jul 09:49
5026d27
Compare
Choose a tag to compare

Changes

Changed to SORMAS Version 1.45.0
Added syptomjournal parameters

v2.7.0

24 Jul 12:52
f7ca049
Compare
Choose a tag to compare
v2.7.0 Pre-release
Pre-release
Merge pull request #77 from hzi-braunschweig/development

updated to version2.7.0

v2.5.2

16 Jul 10:01
9c427ba
Compare
Choose a tag to compare

Changes

Changed to SORMAS Version 1.44.3

v2.5.1

15 Jul 15:19
Compare
Choose a tag to compare
v2.5.1 Pre-release
Pre-release
Release v2.5.2