diff options
author | waja <waja@users.noreply.github.com> | 2024-07-24 22:20:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 22:20:46 +0200 |
commit | 1f1906e94895e46bb4fd103e411381c4093a26f2 (patch) | |
tree | 14cee289a0d472ac27f084adde96e8a5f2216735 | |
parent | 1cca389751c78cc5f86da80f942caaf6f6385bbd (diff) | |
parent | e0f4dbdf4e1b6df15c8fc9efe0897e7738f10e64 (diff) | |
download | monitoring-plugins-1f1906e94895e46bb4fd103e411381c4093a26f2.tar.gz |
Merge pull request #2008 from waja/2.4.0
2.4.0
-rw-r--r-- | NEWS | 59 | ||||
-rwxr-xr-x | NP-VERSION-GEN | 2 | ||||
-rw-r--r-- | THANKS.in | 6 | ||||
-rw-r--r-- | configure.ac | 2 |
4 files changed, 67 insertions, 2 deletions
@@ -1,5 +1,64 @@ | |||
1 | This file documents the major additions and syntax changes between releases. | 1 | This file documents the major additions and syntax changes between releases. |
2 | 2 | ||
3 | 2.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 | |||
3 | 2.3.5 18th Oct 2023 | 62 | 2.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 @@ | |||
6 | SRC_ROOT=`dirname $0` | 6 | SRC_ROOT=`dirname $0` |
7 | 7 | ||
8 | NPVF=NP-VERSION-FILE | 8 | NPVF=NP-VERSION-FILE |
9 | DEF_VER=2.3git | 9 | DEF_VER=2.4.0 |
10 | 10 | ||
11 | LF=' | 11 | LF=' |
12 | ' | 12 | ' |
@@ -420,3 +420,9 @@ Stuart Henderson | |||
420 | Thoralf Rickert-Wendt | 420 | Thoralf Rickert-Wendt |
421 | Thorsten Kukuk | 421 | Thorsten Kukuk |
422 | Matthias Döhler | 422 | Matthias Döhler |
423 | Emmanuel Riviere | ||
424 | Eric Knibbe | ||
425 | Eunice Remoquillo | ||
426 | Louis Sautier | ||
427 | Sven Hartge | ||
428 | Alvar Penning | ||
diff --git a/configure.ac b/configure.ac index 17272e45..79123748 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,6 +1,6 @@ | |||
1 | dnl Process this file with autoconf to produce a configure script. | 1 | dnl Process this file with autoconf to produce a configure script. |
2 | AC_PREREQ(2.64) | 2 | AC_PREREQ(2.64) |
3 | AC_INIT(monitoring-plugins,2.3git) | 3 | AC_INIT(monitoring-plugins,2.4.0) |
4 | AC_CONFIG_SRCDIR(NPTest.pm) | 4 | AC_CONFIG_SRCDIR(NPTest.pm) |
5 | AC_CONFIG_FILES([gl/Makefile]) | 5 | AC_CONFIG_FILES([gl/Makefile]) |
6 | AC_CONFIG_AUX_DIR(build-aux) | 6 | AC_CONFIG_AUX_DIR(build-aux) |