From 46a2788cc70d0c09bc2c742ef76dbd467a9ecd0c Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Tue, 26 Nov 2024 16:52:16 -0300 Subject: [PATCH] 1.1.1 release --- CHANGES.rst | 14 ++++++++++++++ openwisp_monitoring/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 96bad5b5..3f566b79 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,20 @@ Changelog ========= +Version 1.1.1 [2024-11-26] +-------------------------- + +Bugfixes +~~~~~~~~ + +- Fixed a backward compatibility issue with custom health status labels: + previously, if customized health status labels + (``OPENWISP_MONITORING_HEALTH_STATUS_LABELS``) were used and the new + "deactivated" status label was missing after an upgrade, the application + would crash during startup. In this version, a default set of valid + labels is always available, which is then overridden by custom labels as + needed. + Version 1.1.0 [2024-11-22] -------------------------- diff --git a/openwisp_monitoring/__init__.py b/openwisp_monitoring/__init__.py index 5616c298..5327dc4c 100644 --- a/openwisp_monitoring/__init__.py +++ b/openwisp_monitoring/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 1, 0, 'final') +VERSION = (1, 1, 1, 'final') __version__ = VERSION # alias