summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Wagner <waja@cyconet.org>2023-02-01 13:40:55 (GMT)
committerJan Wagner <waja@cyconet.org>2023-02-01 13:40:55 (GMT)
commit1a964086aacce594ea73a641620ccfdc98782105 (patch)
tree8038ed9e09893fa9dbf46f58cd563c3efdaee193
parente88a2889da629674368378411580363a4b403ce1 (diff)
downloadmonitoring-plugins-1a964086aacce594ea73a641620ccfdc98782105.tar.gz
Preaparing Release 2.3.3v2.3.3
-rw-r--r--NEWS38
-rwxr-xr-xNP-VERSION-GEN2
-rw-r--r--THANKS.in5
-rw-r--r--configure.ac2
4 files changed, 45 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index b674391..83d522e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,43 @@
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.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
32.3.2 20th Oct 2022 412.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 @@
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.3.3
10 10
11LF=' 11LF='
12' 12'
diff --git a/THANKS.in b/THANKS.in
index 8920140..73b3b3a 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -400,3 +400,8 @@ Peter Newman
400Tobias Fiebig 400Tobias Fiebig
401Tobias Wiese 401Tobias Wiese
402Wolfgang Karall-Ahlborn 402Wolfgang Karall-Ahlborn
403Danijel Tasov
404Robert Bohne
405Wolfgang Nieder
406andrew bezella
407Lorenz Gruenwald
diff --git a/configure.ac b/configure.ac
index 87a84a0..5f18695 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.59) 2AC_PREREQ(2.59)
3AC_INIT(monitoring-plugins,2.3git) 3AC_INIT(monitoring-plugins,2.3.3)
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)