Hello community,
here is the log from the commit of package icingaweb2-module-director for
openSUSE:Factory checked in at 2019-03-05 12:26:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/icingaweb2-module-director (Old)
and /work/SRC/openSUSE:Factory/.icingaweb2-module-director.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "icingaweb2-module-director"
Tue Mar 5 12:26:43 2019 rev:9 rq:681663 version:1.6.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/icingaweb2-module-director/icingaweb2-module-director.changes
2019-02-17 12:21:14.328202246 +0100
+++
/work/SRC/openSUSE:Factory/.icingaweb2-module-director.new.28833/icingaweb2-module-director.changes
2019-03-05 12:26:49.652835246 +0100
@@ -1,0 +2,11 @@
+Tue Mar 5 09:47:49 UTC 2019 - [email protected]
+
+- update to 1.6.2
+ * Fixed issues
+ - You can find issues and feature requests related to this
+ release on our roadmap
+ * Icinga Configuration
+ - FIX: rendering for Service Sets on single Hosts has been
+ fixed (#1788, #1789)
+
+-------------------------------------------------------------------
Old:
----
icingaweb2-module-director-1.6.1.tar.gz
New:
----
icingaweb2-module-director-1.6.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ icingaweb2-module-director.spec ++++++
--- /var/tmp/diff_new_pack.RLcuAj/_old 2019-03-05 12:26:50.840835460 +0100
+++ /var/tmp/diff_new_pack.RLcuAj/_new 2019-03-05 12:26:50.840835460 +0100
@@ -19,7 +19,7 @@
# See also http://en.opensuse.org/openSUSE:Specfile_guidelines
Name: icingaweb2-module-director
-Version: 1.6.1
+Version: 1.6.2
Release: 0
Summary: Config module for Icinga Web 2
License: GPL-2.0-or-later
++++++ icingaweb2-module-director-1.6.1.tar.gz ->
icingaweb2-module-director-1.6.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/icingaweb2-module-director-1.6.1/doc/02-Installation.md
new/icingaweb2-module-director-1.6.2/doc/02-Installation.md
--- old/icingaweb2-module-director-1.6.1/doc/02-Installation.md 2019-02-15
01:46:14.000000000 +0100
+++ new/icingaweb2-module-director-1.6.2/doc/02-Installation.md 2019-03-01
11:06:29.000000000 +0100
@@ -84,7 +84,7 @@
ICINGAWEB_MODULEPATH="/usr/share/icingaweb2/modules"
REPO_URL="https://github.com/icinga/icingaweb2-module-director"
TARGET_DIR="${ICINGAWEB_MODULEPATH}/director"
- MODULE_VERSION="1.6.1"
+ MODULE_VERSION="1.6.2"
URL="${REPO_URL}/archive/v${MODULE_VERSION}.tar.gz"
install -d -m 0755 "${TARGET_DIR}"
wget -q -O - "$URL" | tar xfz - -C "${TARGET_DIR}" --strip-components 1
@@ -101,7 +101,7 @@
ICINGAWEB_MODULEPATH="/usr/share/icingaweb2/modules"
REPO_URL="https://github.com/icinga/icingaweb2-module-director"
TARGET_DIR="${ICINGAWEB_MODULEPATH}/director"
- MODULE_VERSION="1.6.1"
+ MODULE_VERSION="1.6.2"
git clone "${REPO_URL}" "${TARGET_DIR}" --branch v${MODULE_VERSION}
You can now directly use our current GIT master or check out a specific
version.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/icingaweb2-module-director-1.6.1/doc/82-Changelog.md
new/icingaweb2-module-director-1.6.2/doc/82-Changelog.md
--- old/icingaweb2-module-director-1.6.1/doc/82-Changelog.md 2019-02-15
01:46:14.000000000 +0100
+++ new/icingaweb2-module-director-1.6.2/doc/82-Changelog.md 2019-03-01
11:06:29.000000000 +0100
@@ -4,6 +4,15 @@
Please make sure to always read our [Upgrading](05-Upgrading.md) documentation
before switching to a new version.
+1.6.2
+-----
+### Fixed issues
+* You can find issues and feature requests related to this release on our
+
[roadmap](https://github.com/Icinga/icingaweb2-module-director/milestone/20?closed=1)
+
+### Icinga Configuration
+* FIX: rendering for Service Sets on single Hosts has been fixed (#1788, #1789)
+
1.6.1
-----
### Fixed issues
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/icingaweb2-module-director-1.6.1/library/Director/Objects/IcingaServiceSet.php
new/icingaweb2-module-director-1.6.2/library/Director/Objects/IcingaServiceSet.php
---
old/icingaweb2-module-director-1.6.1/library/Director/Objects/IcingaServiceSet.php
2019-02-15 01:46:14.000000000 +0100
+++
new/icingaweb2-module-director-1.6.2/library/Director/Objects/IcingaServiceSet.php
2019-03-01 11:06:29.000000000 +0100
@@ -295,7 +295,9 @@
if (in_array($host, $this->getBlacklistedHostnames($service)))
{
continue;
}
- $service->set('host_id', $this->get('host_id'));
+ $service->set('object_type', 'object');
+ $service->set('use_var_overrides', 'y');
+ $service->set('host_id', $hostId);
} else {
// Service set template without assign filter or host
continue;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/icingaweb2-module-director-1.6.1/module.info
new/icingaweb2-module-director-1.6.2/module.info
--- old/icingaweb2-module-director-1.6.1/module.info 2019-02-15
01:46:14.000000000 +0100
+++ new/icingaweb2-module-director-1.6.2/module.info 2019-03-01
11:06:29.000000000 +0100
@@ -1,5 +1,5 @@
Name: Icinga Director
-Version: 1.6.1
+Version: 1.6.2
Depends: monitoring
Description: Director - Config tool for Icinga 2
Icinga Director is a configuration tool that has been designed to make