From 3a04afdf15f86a86248987cc6cb083e3a6e70683 Mon Sep 17 00:00:00 2001 From: Fabio Ambauen Date: Fri, 17 Feb 2023 16:03:14 +0100 Subject: [PATCH] chore: release v8.0.0-beta.25 --- CHANGELOG.md | 17 +++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc98186aa..e76afb21c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# v8.0.0-beta.25 (17 February 2023) + +This release provides a management command for recalculating calculated Answers that +contain values from `TableQuestions`. Due to a bug, answers to calculated questions +were wrong under certain conditions, if they contained values from table rows. This +command recalculates all of them. + +If you use `CalculatedFloatQuestions` in your forms, it is advised to run this command: + +```shell +python manage.py recalculate_calc_answers +``` + +### Fix +* Replace faulty migration for calc answers with a command ([`4a3e85c`](https://github.com/projectcaluma/caluma/commit/4a3e85cf5a1ac105541dde1b04d8081d01a90e12)) + + # v8.0.0-beta.24 (17 February 2023) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 748aa133c..ee0a77686 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "caluma" -version = "8.0.0-beta.24" +version = "8.0.0-beta.25" description = "Caluma Service providing GraphQL API" homepage = "https://caluma.io" repository = "https://github.com/projectcaluma/caluma"