From 51491c2b3c1463eefbb5829439d11f9fcf9824d7 Mon Sep 17 00:00:00 2001 From: Christian Zosel Date: Tue, 21 May 2024 11:02:31 +0200 Subject: [PATCH] chore(release): v10.2.0 --- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9be94c529..610216a19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# v10.2.0 (21 May 2024) +### Feature + +* feat(form): add more case info to jexl context ([`ab73edd`](https://github.com/projectcaluma/caluma/commit/ab73eddb03215d288c782e12ca15e04bc7dc2e48)) + +* feat(jexl): add main_case_form to info object + +This is convenient when you'd like to write a JEXL expression in a task +form attached to some work item, that depends on the main case's form. ([`bcb9136`](https://github.com/projectcaluma/caluma/commit/bcb913668e2454ca0dd0c8990eba310efef32b96)) + +### Fix + +* fix(validation): do not block __typename when introspection is disabled + +The `DisableIntrospection` validator rejects everything that could +lead to insight into the schema. Sadly, our frontends rely on having +`__typename` available, thus we need our own validator that allows this +specific introspection key (but not anything else) ([`46f2184`](https://github.com/projectcaluma/caluma/commit/46f21840610be6ddb3569a2b96b7866ae9f33e12)) + # v10.1.1 (8 February 2024) ### Fix diff --git a/pyproject.toml b/pyproject.toml index e31016244..e91dbadec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "caluma" -version = "10.1.1" +version = "10.2.0" description = "Caluma Service providing GraphQL API" homepage = "https://caluma.io" repository = "https://github.com/projectcaluma/caluma"