You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,31 @@ Icinga.Icinga Release Notes
4
4
5
5
.. contents:: Topics
6
6
7
+
v0.4.3
8
+
======
9
+
10
+
Release Summary
11
+
---------------
12
+
13
+
Small bugfix release mostly regarding databases and Icinga Web 2.
14
+
15
+
Bugfixes
16
+
--------
17
+
18
+
- Add internal modules to installable modules list. This allows for modules directly shipped with Icinga Web 2 to be configurable. This mostly affects the :code:`monitoring` module since it has actual configuration options. Others like :code:`setup` can now be enabled/disabled.
19
+
- Fix issue where the package for any given Icinga Web 2 module was not installed if that module had set :code:`enabled: false`.
20
+
Modules are now installed and configured properly even when they are set to be disabled in the end.
21
+
- Fixed an issue where the :code:`config.ini` file of the :code:`monitoring` module was not deployed.
22
+
- More complex database passwords have been an issue when importing database schemas. The passwords are now properly quoted using the :code:`quote` filter.
23
+
This means that passwords containing characters such as :code:`#` and :code:`\ ` should now work correctly.
24
+
25
+
The change affects Icinga 2 (IDO), Icinga for Kubernetes, Icinga DB and Icinga Web 2.
26
+
- Switch from :code:`run_once: true` to :code:`throttle: 1` when applying database schema.
27
+
The initial intention was to apply the schema once per cluster. However, if nodes are independent, e.g. multiple clusters, this would still only run on the first host, leaving the other node(s) with empty databases.
28
+
29
+
The tasks are rewritten to now check whether the schema needs to be applied before trying to do so.
30
+
This happens one host at a time. Thus, the tasks take slightly more time but work when using multiple clusters.
0 commit comments