summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwaja <waja@users.noreply.github.com>2024-07-24 22:20:46 +0200
committerGitHub <noreply@github.com>2024-07-24 22:20:46 +0200
commit1f1906e94895e46bb4fd103e411381c4093a26f2 (patch)
tree14cee289a0d472ac27f084adde96e8a5f2216735
parent1cca389751c78cc5f86da80f942caaf6f6385bbd (diff)
parente0f4dbdf4e1b6df15c8fc9efe0897e7738f10e64 (diff)
downloadmonitoring-plugins-1f1906e94895e46bb4fd103e411381c4093a26f2.tar.gz
Merge pull request #2008 from waja/2.4.0
2.4.0
-rw-r--r--NEWS59
-rwxr-xr-xNP-VERSION-GEN2
-rw-r--r--THANKS.in6
-rw-r--r--configure.ac2
4 files changed, 67 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 5ddadf4d..2b257aa6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,64 @@
1This file documents the major additions and syntax changes between releases. 1This file documents the major additions and syntax changes between releases.
2 2
32.4.0 25th Jul 2024
4 FIXES
5 * check_dbi: Compiler warning for uninitialized variable
6 * check_curl: Initialize pointer before usage
7 * check_ntp: Initialize intermediate results in any case
8 * Fixes for -Wsign-compare
9 * check_tcp: Fixes an error with using the wrong type for a variable
10 * check_mailq: exit on empty strings and exit early
11 * check_users: Change option for sanity checking arguments to avoid segfault
12 * check_users: Update help to properly show that thresholds are ranges
13 * check_users: fix segfault
14 * check_dbi: Fix compiler warning for uninitialized variable
15 * check_curl: Initialize pointer before usage
16 * check_ntp: Initialize intermediate results in any case
17 * Fix logic in is_uint64_t to fix type-limit warning
18 * check_ntp_peer: Fixes for Wmaybe-unitialized and some restructuring
19 * check_dns: Remove unused variable
20 * check_ntp_peer: Fixes for Wmaybe-unitialized and some restructuring
21 * check_dns: Remove unused variable
22 * check_disk: fix ignore-missing in combination with includes
23 * check_procs: ignore our own children
24 * Prevent -lcrypto from showing up in Makefile dependencies
25 * Change irritating NULL assignment
26 * check_http: Remove self assignment of a variable and add some comments
27 * check_snmp: Remove unused variable
28 * check_dhcp: Make implicit conversion explicit to dismiss warning
29 * check_http: Remove self assignment of a variable and add some comments
30 * check_dhcp: Make implicit conversion explicit to dismiss warning
31 * Ini Parser: Avoid freeing symbols from text section
32 * check_icmp: keep performance data order in case of none-reachable hosts
33 * check_swap: Change another fake boolean to a real one
34 * check_swap: Rename type since *_t is reserved for C standard types
35 * check_ssh: Fix a typo in "remote-protocol parameter
36 * check_ssh: Handle non-alpha software versions
37 * check_ssh: properly parse a delayed version control string
38 * check_disk: Fail on missing arguments for --warning and --critical and fix a test case
39 * check_disk: Use new test function for percentage expressions
40 * check_load: remove unused code
41 * check_curl/check_http: clarified format of POST data
42
43 ENHANCEMENTS
44 * Use C99 booleans
45 * check_mailq: remove trailing whitespaces
46 * check_mailq: unify tabs/spaces
47 * check_oracle: Shellcheck fixes
48 * check_ups: output ups.realpower if supported
49 * check_disk: add -n short option for --ignore-missing
50 * check_procs: Improve help text, mentioning excluded processes
51 * check_procs: Generalise wording, remove mentioning of nrpe
52 * check_curl: add haproxy protocol option
53 * Improve negate plugin helptext
54 * check_disk: increase alert precision
55 * check_ircd: IPv6 support
56 * check_nwstat: adds percentage used space
57 * Add new test function for percentage expressions
58 * check_swap: Possibility to run check_swap without thresholds
59 * check_ups: additional alarm conditions
60 * check_http/check_curl: added a --regex-state option to change the state of a regex check
61
32.3.5 18th Oct 2023 622.3.5 18th Oct 2023
4 FIXES 63 FIXES
5 * Include maxfd.h in lib Makefile 64 * Include maxfd.h in lib Makefile
diff --git a/NP-VERSION-GEN b/NP-VERSION-GEN
index c353b1d1..9bcbb734 100755
--- a/NP-VERSION-GEN
+++ b/NP-VERSION-GEN
@@ -6,7 +6,7 @@
6SRC_ROOT=`dirname $0` 6SRC_ROOT=`dirname $0`
7 7
8NPVF=NP-VERSION-FILE 8NPVF=NP-VERSION-FILE
9DEF_VER=2.3git 9DEF_VER=2.4.0
10 10
11LF=' 11LF='
12' 12'
diff --git a/THANKS.in b/THANKS.in
index 69b32244..66397ad1 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -420,3 +420,9 @@ Stuart Henderson
420Thoralf Rickert-Wendt 420Thoralf Rickert-Wendt
421Thorsten Kukuk 421Thorsten Kukuk
422Matthias Döhler 422Matthias Döhler
423Emmanuel Riviere
424Eric Knibbe
425Eunice Remoquillo
426Louis Sautier
427Sven Hartge
428Alvar Penning
diff --git a/configure.ac b/configure.ac
index 17272e45..79123748 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
1dnl Process this file with autoconf to produce a configure script. 1dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ(2.64) 2AC_PREREQ(2.64)
3AC_INIT(monitoring-plugins,2.3git) 3AC_INIT(monitoring-plugins,2.4.0)
4AC_CONFIG_SRCDIR(NPTest.pm) 4AC_CONFIG_SRCDIR(NPTest.pm)
5AC_CONFIG_FILES([gl/Makefile]) 5AC_CONFIG_FILES([gl/Makefile])
6AC_CONFIG_AUX_DIR(build-aux) 6AC_CONFIG_AUX_DIR(build-aux)