mirror of https://github.com/Icinga/icinga2.git
Release version 2.3.7
This commit is contained in:
parent
46a9b30260
commit
072263901c
20
ChangeLog
20
ChangeLog
|
@ -4,6 +4,26 @@ Please check [doc/1-about.md].
|
|||
|
||||
## What's New
|
||||
|
||||
### What's New in Version 2.3.7
|
||||
|
||||
#### Changes
|
||||
|
||||
* Bugfixes
|
||||
|
||||
#### Features
|
||||
|
||||
* Feature 9610: Enhance troubleshooting ssl errors & cluster replay log
|
||||
|
||||
#### Bugfixes
|
||||
|
||||
* Bug 9406: Selective cluster reconnecting breaks client communication
|
||||
* Bug 9535: Config parser ignores "ignore" in template definition
|
||||
* Bug 9584: Incorrect return value for the macro() function
|
||||
* Bug 9585: Wrong formatting in DB IDO extensions docs
|
||||
* Bug 9586: DB IDO: endpoint* tables are cleared on reload causing constraint violations
|
||||
* Bug 9621: Assertion failed in icinga::ScriptUtils::Intersection
|
||||
* Bug 9622: Missing lock in ScriptUtils::Union
|
||||
|
||||
### What's New in Version 2.3.6
|
||||
|
||||
#### Changes
|
||||
|
|
|
@ -54,6 +54,26 @@ More details in the [Icinga FAQ](https://www.icinga.org/icinga/faq/).
|
|||
|
||||
## <a id="whats-new"></a> What's New
|
||||
|
||||
### What's New in Version 2.3.7
|
||||
|
||||
#### Changes
|
||||
|
||||
* Bugfixes
|
||||
|
||||
#### Features
|
||||
|
||||
* Feature [9610](https://dev.icinga.org/issues/9610 "Feature 9610"): Enhance troubleshooting ssl errors & cluster replay log
|
||||
|
||||
#### Bugfixes
|
||||
|
||||
* Bug [9406](https://dev.icinga.org/issues/9406 "Bug 9406"): Selective cluster reconnecting breaks client communication
|
||||
* Bug [9535](https://dev.icinga.org/issues/9535 "Bug 9535"): Config parser ignores "ignore" in template definition
|
||||
* Bug [9584](https://dev.icinga.org/issues/9584 "Bug 9584"): Incorrect return value for the macro() function
|
||||
* Bug [9585](https://dev.icinga.org/issues/9585 "Bug 9585"): Wrong formatting in DB IDO extensions docs
|
||||
* Bug [9586](https://dev.icinga.org/issues/9586 "Bug 9586"): DB IDO: endpoint* tables are cleared on reload causing constraint violations
|
||||
* Bug [9621](https://dev.icinga.org/issues/9621 "Bug 9621"): Assertion failed in icinga::ScriptUtils::Intersection
|
||||
* Bug [9622](https://dev.icinga.org/issues/9622 "Bug 9622"): Missing lock in ScriptUtils::Union
|
||||
|
||||
### What's New in Version 2.3.6
|
||||
|
||||
#### Changes
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
|
||||
<id>icinga2</id>
|
||||
<title>Icinga2</title>
|
||||
<version>2.3.6</version>
|
||||
<version>2.3.7</version>
|
||||
<authors>2015 - The Icinga Project</authors>
|
||||
<owners>Icinga Development Team</owners>
|
||||
<summary>icinga2 - Monitoring Agent for Windows</summary>
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
|
||||
Summary: Network monitoring application
|
||||
Name: icinga2
|
||||
Version: 2.3.6
|
||||
Version: 2.3.7
|
||||
Release: %{revision}%{?dist}
|
||||
License: GPL-2.0+
|
||||
Group: Applications/System
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$packageName = 'icinga2'
|
||||
$installerType = 'exe'
|
||||
$url = 'http://packages.icinga.org/windows/Icinga2-v2.3.6.exe'
|
||||
$url = 'http://packages.icinga.org/windows/Icinga2-v2.3.7.exe'
|
||||
$silentArgs = '/S'
|
||||
$validExitCodes = @(0)
|
||||
|
||||
|
|
Loading…
Reference in New Issue