diff options
author | Jan Wagner <waja@cyconet.org> | 2023-02-01 13:40:55 (GMT) |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2023-02-01 13:40:55 (GMT) |
commit | 1a964086aacce594ea73a641620ccfdc98782105 (patch) | |
tree | 8038ed9e09893fa9dbf46f58cd563c3efdaee193 | |
parent | e88a2889da629674368378411580363a4b403ce1 (diff) | |
download | monitoring-plugins-2.3.3.tar.gz |
Preaparing Release 2.3.3v2.3.3
-rw-r--r-- | NEWS | 38 | ||||
-rwxr-xr-x | NP-VERSION-GEN | 2 | ||||
-rw-r--r-- | THANKS.in | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
4 files changed, 45 insertions, 2 deletions
@@ -1,5 +1,43 @@ | |||
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.3.3 2nd Feb 2023 | ||
4 | ENHANCEMENTS | ||
5 | using PRId64 and PRIu64 instead of %ld directly | ||
6 | check_http: Make faster with larger files | ||
7 | check_snmp: add 'multiplier' to modify current value | ||
8 | check_http: Implement chunked encoding decoding | ||
9 | check_http/check_curl: add chunked encoding test | ||
10 | check_log: Added --exclude to exclude patterns | ||
11 | check_log: Add tests | ||
12 | check_disk: Clarify usage possibilites | ||
13 | |||
14 | FIXES | ||
15 | fixed two PRId64 to PRIu64 in perfdata_uint64 | ||
16 | check_pgsql: Removing is_pg_dbname alltogether,using postgres API. | ||
17 | check_http: Remove superflous CRLF in HTTP-Requests | ||
18 | check_curl: detect ipv6 | ||
19 | check_icmp: fix parsing help/version long options | ||
20 | check_http: fix test plan | ||
21 | check_disk: Find accessible mount path if multiple are available | ||
22 | check_apt: Fix unknown escape sequence error output | ||
23 | check_curl: fix checking large bodys | ||
24 | check_snmp: Improve tests for check_snmp & multiply option | ||
25 | check_snmp: always apply format when applying multiplier | ||
26 | check_http: Use real booleans instead of ints | ||
27 | check_http: Document process_arguments a little bit better | ||
28 | check_http: Remove dead code | ||
29 | check_http: Fix several bug in the implementation of unchunking | ||
30 | check_http: Reformat a part to increase readability | ||
31 | check_apt: Put upgrade options in the root sections | ||
32 | check_apt: Fix comment | ||
33 | check_apt: Use real booleans | ||
34 | check_mailq: Fixing nullmailer regex | ||
35 | check_snmp: Fix regex matches | ||
36 | check_log: Fixed a bug when using --all | ||
37 | check_log: Cleaned up duplicated code in the args | ||
38 | check_http: Fix memory reallocation error in chunk decoding logic | ||
39 | check_http: Add space for ending NULL byte in array for chunked encoding | ||
40 | |||
3 | 2.3.2 20th Oct 2022 | 41 | 2.3.2 20th Oct 2022 |
4 | GENERAL | 42 | GENERAL |
5 | Use netcat-openbsd for debian explicitely (by @RincewindsHat #1704) | 43 | Use netcat-openbsd for debian explicitely (by @RincewindsHat #1704) |
diff --git a/NP-VERSION-GEN b/NP-VERSION-GEN index c353b1d..b4c8d24 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.3.3 |
10 | 10 | ||
11 | LF=' | 11 | LF=' |
12 | ' | 12 | ' |
@@ -400,3 +400,8 @@ Peter Newman | |||
400 | Tobias Fiebig | 400 | Tobias Fiebig |
401 | Tobias Wiese | 401 | Tobias Wiese |
402 | Wolfgang Karall-Ahlborn | 402 | Wolfgang Karall-Ahlborn |
403 | Danijel Tasov | ||
404 | Robert Bohne | ||
405 | Wolfgang Nieder | ||
406 | andrew bezella | ||
407 | Lorenz Gruenwald | ||
diff --git a/configure.ac b/configure.ac index 87a84a0..5f18695 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.59) | 2 | AC_PREREQ(2.59) |
3 | AC_INIT(monitoring-plugins,2.3git) | 3 | AC_INIT(monitoring-plugins,2.3.3) |
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) |