Skip to content
This repository was archived by the owner on Jan 15, 2019. It is now read-only.

Commit bbd84c6

Browse files
author
Michael Friedrich
committed
Release v1.11.8
1 parent 1b3507e commit bbd84c6

File tree

9 files changed

+24
-15
lines changed

9 files changed

+24
-15
lines changed

Changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ NEWS
2323

2424
* Mailinglists have been migrated to icinga.org. Please check https://www.icinga.org/support for details!
2525

26+
1.11.8 - 22/12/2016
27+
28+
SECURITY FIXES
29+
30+
* Fix possible root privilege escalation during opening logs (CVE-2016-9566) #13709
31+
32+
Icinga is **not** vulnerable to CVE-2016-9565 since we do not provide any PHP
33+
files nor external advertising RSS feeds inside the Classic UI.
34+
2635

2736
1.11.7 - 03/09/2014
2837

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ MKDIR=/bin/mkdir
8888
###############################
8989
# Global
9090
###############################
91-
ICINGA_VERSION=1.11.7
91+
ICINGA_VERSION=1.11.8
9292

9393
CP=@CP@
9494

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2507,9 +2507,9 @@ ac_config_headers="$ac_config_headers include/config.h"
25072507
25082508
25092509
PKG_NAME=icinga-core
2510-
PKG_VERSION="1.11.7"
2510+
PKG_VERSION="1.11.8"
25112511
PKG_HOME_URL="http://www.icinga.org/"
2512-
PKG_REL_DATE="09-03-2014"
2512+
PKG_REL_DATE="12-22-2016"
25132513
25142514
ac_aux_dir=
25152515
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ AC_CONFIG_HEADER(include/config.h)
99
AC_PREFIX_DEFAULT(/usr/local/icinga)
1010

1111
PKG_NAME=icinga-core
12-
PKG_VERSION="1.11.7"
12+
PKG_VERSION="1.11.8"
1313
PKG_HOME_URL="http://www.icinga.org/"
14-
PKG_REL_DATE="09-03-2014"
14+
PKG_REL_DATE="12-22-2016"
1515

1616
dnl Figure out how to invoke "install" and what install options to use.
1717
AC_PROG_INSTALL

html/main.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
</div>
1919

2020
<div id="currentversioninfo">
21-
<div class="version">Version 1.11.7</div>
22-
<div class="releasedate">September 03, 2014</div>
23-
<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.11.7</a></div>
21+
<div class="version">Version 1.11.8</div>
22+
<div class="releasedate">December 22, 2016</div>
23+
<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.11.8</a></div>
2424
</div>
2525

2626
<div id="developer">

icinga.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
Summary: Open Source host, service and network monitoring program
5656
Name: icinga
57-
Version: 1.11.7
57+
Version: 1.11.8
5858
Release: %{revision}%{?dist}
5959
License: GPLv2
6060
Group: Applications/System

include/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
#define PROGRAM_NAME "Icinga"
2828
#define PROGRAM_NAME_UC "ICINGA"
2929
#define PROGRAM_NAME_LC "icinga"
30-
#define PROGRAM_VERSION "1.11.7"
31-
#define PROGRAM_MODIFICATION_DATE "09-03-2014"
30+
#define PROGRAM_VERSION "1.11.8"
31+
#define PROGRAM_MODIFICATION_DATE "12-22-2016"
3232

3333
/*#define DEBUG_CHECK_IPC 1 */
3434
/*#define DEBUG_CHECK_IPC2 1*/

module/idoutils/include/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#define LOG2IDO_NAME "LOG2IDO"
2323

2424
/* only one space for update-version matching */
25-
#define IDO_DATE "09-03-2014"
26-
#define IDO_VERSION "1.11.7"
25+
#define IDO_DATE "12-22-2016"
26+
#define IDO_VERSION "1.11.8"
2727

2828
#define IDO_SCHEMA_VERSION "1.11.7"
2929

update-version

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ else
1010
fi
1111

1212
# Current version number
13-
CURRENTVERSION=1.11.7
13+
CURRENTVERSION=1.11.8
1414

1515
# Last date
16-
LASTDATE=09-03-2014
16+
LASTDATE=12-22-2016
1717

1818
if [ "x$1" = "x" ]
1919
then

0 commit comments

Comments
 (0)