From 48e1d3b57a683fb3d0e7dfb6797e4739a4e08441 Mon Sep 17 00:00:00 2001 From: Steven Bal Date: Tue, 14 May 2024 11:13:15 +0200 Subject: [PATCH] :ok_hand: [open-zaak/open-zaak#1629] PR feedback * remove unused setting * add warning in changelog to add Redis --- CHANGELOG.rst | 7 +++++++ src/objecttypes/conf/base.py | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3b6eb728..b750bb76 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,12 +8,19 @@ Change history **Bugfixes and QOL** * updated to Django 4.2 (objects-api#385) +* changed caching backend from LocMem to Redis .. warning:: Two-factor authentication is enabled by default. The ``DISABLE_2FA`` environment variable can be used to disable it if needed. +.. warning:: + + Because the caching barefer to env config for envvarsckend was changed to Redis, + existing deployments must add a Redis container or Redis instance + (see ``Installation > Environment configuration reference`` in the documentation on how to configure) the connection with Redis + 2.1.2 (2024-02-06) ------------------ diff --git a/src/objecttypes/conf/base.py b/src/objecttypes/conf/base.py index 7a016c83..a8683f9d 100644 --- a/src/objecttypes/conf/base.py +++ b/src/objecttypes/conf/base.py @@ -38,7 +38,6 @@ # PROJECT_NAME = "Objecttypes" SITE_TITLE = "Starting point" -SHOW_ALERT = True # FIXME this doesn't seem to be used anywhere? ##############################