[pkg-nagios-changes] [Git][nagios-team/pkg-icingaweb2][master] 4 commits: New upstream version 2.9.5
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Fri Nov 19 20:06:59 GMT 2021
Bas Couwenberg pushed to branch master at Debian Nagios Maintainer Group / pkg-icingaweb2
Commits:
ace71de8 by Bas Couwenberg at 2021-11-19T20:54:10+01:00
New upstream version 2.9.5
- - - - -
8048e757 by Bas Couwenberg at 2021-11-19T20:54:57+01:00
Update upstream source from tag 'upstream/2.9.5'
Update to upstream version '2.9.5'
with Debian dir d17c04b4a122309e3fbe9070467377c64eb5d864
- - - - -
604c1e25 by Bas Couwenberg at 2021-11-19T20:55:25+01:00
New upstream release.
- - - - -
394e48c9 by Bas Couwenberg at 2021-11-19T20:56:12+01:00
Set distribution to unstable.
- - - - -
13 changed files:
- CHANGELOG.md
- VERSION
- application/VERSION
- debian/changelog
- library/Icinga/Application/Version.php
- modules/doc/module.info
- modules/migrate/module.info
- modules/monitoring/module.info
- modules/setup/application/forms/LdapDiscoveryPage.php
- modules/setup/module.info
- modules/test/module.info
- modules/translation/module.info
- public/js/icinga/loader.js
Changes:
=====================================
CHANGELOG.md
=====================================
@@ -4,6 +4,13 @@ Please make sure to always read our [Upgrading](doc/80-Upgrading.md) documentati
## What's New
+### What's New in Version 2.9.5
+
+This is a hotfix release which fixes the following issues:
+
+* Some detail views of Icinga Director and other modules are broken with Web 2.9.4 [#4598](https://github.com/Icinga/icingaweb2/issues/4598)
+* Error on skipping LDAP Discovery [#4603](https://github.com/Icinga/icingaweb2/issues/4603)
+
### What's New in Version 2.9.4
You can also find all issues related to this release on our [Roadmap](https://github.com/Icinga/icingaweb2/milestone/68?closed=1).
=====================================
VERSION
=====================================
@@ -1 +1 @@
-v2.9.4
+v2.9.5
=====================================
application/VERSION
=====================================
@@ -1 +1 @@
-d208d1ccfef86606984739e6357138c459146134 2021-11-10 10:18:58 +0100
+053971c99dc1a4510beb64a888ea695cc14032dc 2021-11-18 10:48:44 +0100
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+icingaweb2 (2.9.5-1) unstable; urgency=medium
+
+ * Team upload.
+ * New upstream release.
+
+ -- Bas Couwenberg <sebastic at debian.org> Fri, 19 Nov 2021 20:56:00 +0100
+
icingaweb2 (2.9.4-1) unstable; urgency=medium
* Team upload.
=====================================
library/Icinga/Application/Version.php
=====================================
@@ -8,7 +8,7 @@ namespace Icinga\Application;
*/
class Version
{
- const VERSION = '2.9.4';
+ const VERSION = '2.9.5';
/**
* Get the version of this instance of Icinga Web 2
=====================================
modules/doc/module.info
=====================================
@@ -1,4 +1,4 @@
Module: doc
-Version: 2.9.4
+Version: 2.9.5
Description: Documentation module
Extracts, shows and exports documentation for Icinga Web 2 and its modules.
=====================================
modules/migrate/module.info
=====================================
@@ -1,5 +1,5 @@
Module: migrate
-Version: 2.9.4
+Version: 2.9.5
Description: Migrate module
This module was introduced with the domain-aware authentication feature in version 2.5.0.
It helps you migrating users and user configurations according to a given domain.
=====================================
modules/monitoring/module.info
=====================================
@@ -1,5 +1,5 @@
Module: monitoring
-Version: 2.9.4
+Version: 2.9.5
Description: Icinga monitoring module
IDO accessor and UI for your monitoring. This is the initial instalment for a
graphical presentation of Icinga environments. The predecessor of Icinga DB.
=====================================
modules/setup/application/forms/LdapDiscoveryPage.php
=====================================
@@ -97,12 +97,12 @@ class LdapDiscoveryPage extends Form
*
* @param bool $suppressArrayNotation
*
- * @return array|null
+ * @return array
*/
public function getValues($suppressArrayNotation = false)
{
if (! isset($this->discovery) || ! $this->discovery->isSuccess()) {
- return null;
+ return [];
}
$disc = $this->discovery;
return array(
=====================================
modules/setup/module.info
=====================================
@@ -1,5 +1,5 @@
Module: setup
-Version: 2.9.4
+Version: 2.9.5
Description: Setup module
Web based wizard for setting up Icinga Web 2 and its modules.
This includes the data backends (e.g. relational database, LDAP),
=====================================
modules/test/module.info
=====================================
@@ -1,5 +1,5 @@
Module: test
-Version: 2.9.4
+Version: 2.9.5
Description: Translation module
This module allows developers to run (unit) tests against Icinga Web 2 and
any of its modules. Usually you do not need to enable this.
=====================================
modules/translation/module.info
=====================================
@@ -1,5 +1,5 @@
Module: translation
-Version: 2.9.4
+Version: 2.9.5
Description: Translation module
This module allows developers and translators to translate modules for multiple
languages. You do not need this module to run an internationalized web frontend.
=====================================
public/js/icinga/loader.js
=====================================
@@ -643,7 +643,7 @@
this.loadUrl(parts.shift(), $('#col2'));
} else {
if ($target.attr('id') === 'col2') { // TODO: multicol
- if ($target.data('icingaUrl').split('?')[0] === url.split('?')[0]) {
+ if (($target.data('icingaUrl') || '').split('?')[0] === url.split('?')[0]) {
// Don't do anything in this case
} else if ($('#col1').data('icingaUrl').split('?')[0] === url.split('?')[0]) {
icinga.ui.layout1col();
View it on GitLab: https://salsa.debian.org/nagios-team/pkg-icingaweb2/-/compare/06ad76e0a850a8ca2960c481fd655738d74fa4be...394e48c99ecbd07fd9cdf852be2eddc0b8a3839a
--
View it on GitLab: https://salsa.debian.org/nagios-team/pkg-icingaweb2/-/compare/06ad76e0a850a8ca2960c481fd655738d74fa4be...394e48c99ecbd07fd9cdf852be2eddc0b8a3839a
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-nagios-changes/attachments/20211119/0c2d3e20/attachment-0001.htm>
More information about the pkg-nagios-changes
mailing list