Releases: SORMAS-Foundation/SORMAS-Docker
v2.11.0-rc1
Merge pull request #104 from hzi-braunschweig/integration v2.10.1
v2.10.1
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
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
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
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';