Changes of Revision 5
[-] | Changed | icinga.changes |
1
2 ------------------------------------------------------------------- 3 +Tue Feb 17 19:19:35 UTC 2015 - cs@linux-administrator.com 4 + 5 +- update to release 1.12.2 6 + 7 +------------------------------------------------------------------- 8 Sun Feb 1 18:11:34 UTC 2015 - cs@linux-administrator.com 9 10 - update to release 1.12.1 11 |
||
[-] | Changed | icinga.spec ^ |
11 1
2 #!BuildIgnore: post-build-checks 3 %define name icinga 4 -%define version 1.12.1 5 -%define pkgversion 1.12.1 6 +%define version 1.12.2 7 +%define pkgversion 1.12.2 8 %define release 1 9 %define nsusr icinga 10 %define nsgrp icinga 11 |
||
[+] | Changed | icinga-1.12.2.tar.bz2/Changelog ^ |
@@ -23,6 +23,20 @@ * Mailinglists have been migrated to icinga.org. Please check https://www.icinga.org/support for details! +1.12.2 - 14/02/2015 + +FIXES + +* Bug #3305: Duplicate service definitions are not generating a config validation error + + +1.12.1 - 24/01/2015 + +FIXES + +* Docs - Bug #7801: Add a minified js library for the html docs + + 1.12.0 - 19/11/2014 ENHANCEMENTS | ||
[+] | Changed | icinga-1.12.2.tar.bz2/INSTALLING ^ |
@@ -50,11 +50,11 @@ $ ./update-version-schema 1.12.1 * Update the Changelog and generate the docs $ ./configure; make create-docs -* Commit these changes to the "next" branch and create a signed tag (tags/v<VERSION>). +* Commit these changes to the "support/1.12" branch and create a signed tag (tags/v<VERSION>). $ git commit -v -a -m "Release version <VERSION>" $ git tag -u D14A1F16 -m "Version <VERSION>" v<VERSION> $ git push --tags -* Merge the "next" branch into the "master" branch (using --ff-only). +* Merge the "support/1.12" branch into the "master" branch (using --ff-only). $ git checkout master $ git merge --ff-only next $ git push origin master @@ -62,12 +62,12 @@ Use "git archive" to build the release tarball: -$ VERSION=1.12.1 +$ VERSION=1.12.2 $ git archive --format=tar --prefix=icinga-$VERSION/ tags/v$VERSION | gzip >icinga-$VERSION.tar.gz Finally you should verify that the tarball only contains the files it should contain: -$ VERSION=1.12.1 +$ VERSION=1.12.2 $ tar ztf icinga-$VERSION.tar.gz | less | ||
[+] | Changed | icinga-1.12.2.tar.bz2/Makefile.in ^ |
@@ -88,7 +88,7 @@ ############################### # Global ############################### -ICINGA_VERSION=1.12.1 +ICINGA_VERSION=1.12.2 CP=@CP@ | ||
[+] | Changed | icinga-1.12.2.tar.bz2/configure ^ |
@@ -2507,9 +2507,9 @@ PKG_NAME=icinga-core -PKG_VERSION="1.12.1" +PKG_VERSION="1.12.2" PKG_HOME_URL="http://www.icinga.org/" -PKG_REL_DATE="01-24-2015" +PKG_REL_DATE="02-14-2015" ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do | ||
[+] | Changed | icinga-1.12.2.tar.bz2/configure.in ^ |
@@ -9,9 +9,9 @@ AC_PREFIX_DEFAULT(/usr/local/icinga) PKG_NAME=icinga-core -PKG_VERSION="1.12.1" +PKG_VERSION="1.12.2" PKG_HOME_URL="http://www.icinga.org/" -PKG_REL_DATE="01-24-2015" +PKG_REL_DATE="02-14-2015" dnl Figure out how to invoke "install" and what install options to use. AC_PROG_INSTALL | ||
[+] | Changed | icinga-1.12.2.tar.bz2/html/main.html ^ |
@@ -18,9 +18,9 @@ </div> <div id="currentversioninfo"> -<div class="version">Version 1.12.1</div> -<div class="releasedate">Januar 24, 2015</div> -<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.12.1</a></div> +<div class="version">Version 1.12.2</div> +<div class="releasedate">Februar 14, 2015</div> +<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.12.2</a></div> </div> <div id="developer"> | ||
[+] | Changed | icinga-1.12.2.tar.bz2/icinga.spec ^ |
@@ -54,7 +54,7 @@ Summary: Open Source host, service and network monitoring program Name: icinga -Version: 1.12.1 +Version: 1.12.2 Release: %{revision}%{?dist} License: GPLv2 Group: Applications/System | ||
[+] | Changed | icinga-1.12.2.tar.bz2/include/common.h ^ |
@@ -27,8 +27,8 @@ #define PROGRAM_NAME "Icinga" #define PROGRAM_NAME_UC "ICINGA" #define PROGRAM_NAME_LC "icinga" -#define PROGRAM_VERSION "1.12.1" -#define PROGRAM_MODIFICATION_DATE "01-24-2015" +#define PROGRAM_VERSION "1.12.2" +#define PROGRAM_MODIFICATION_DATE "02-14-2015" /*#define DEBUG_CHECK_IPC 1 */ /*#define DEBUG_CHECK_IPC2 1*/ | ||
[+] | Changed | icinga-1.12.2.tar.bz2/module/idoutils/include/common.h ^ |
@@ -22,8 +22,8 @@ #define LOG2IDO_NAME "LOG2IDO" /* only one space for update-version matching */ -#define IDO_DATE "01-24-2015" -#define IDO_VERSION "1.12.1" +#define IDO_DATE "02-14-2015" +#define IDO_VERSION "1.12.2" #define IDO_SCHEMA_VERSION "1.12.0" | ||
[+] | Changed | icinga-1.12.2.tar.bz2/update-version ^ |
@@ -10,10 +10,10 @@ fi # Current version number -CURRENTVERSION=1.12.1 +CURRENTVERSION=1.12.2 # Last date -LASTDATE=01-24-2015 +LASTDATE=02-14-2015 if [ "x$1" = "x" ] then | ||
[+] | Changed | icinga-1.12.2.tar.bz2/xdata/xodtemplate.c ^ |
@@ -4302,7 +4302,7 @@ } } - return OK; + return result; } |