From 5295cf7f23d98feef25f316a7f085281b5706efb Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Wed, 1 Feb 2023 15:05:44 +0100 Subject: Doing 2.3.3 relese diff --git a/web/input/news/release-2-3-3.md b/web/input/news/release-2-3-3.md new file mode 100644 index 0000000..a87b07a --- /dev/null +++ b/web/input/news/release-2-3-3.md @@ -0,0 +1,59 @@ +title: Version 2.3.3 Released +author: Jan Wagner +date: 2023-02-02 +--- + +The Monitoring Plugins Development Team is proud to announce version 2.3.3 of +the Monitoring Plugins! This release comes with various fixes provided by more +than 16 contributors. Many thanks to all of you! + + +For the list of notable changes in this release, see below. + +You can get the tarball from our [download page][download]. + +### Enhancements +#### General +* using PRId64 and PRIu64 instead of %ld directly +#### Single Plugins +* check_http: Make faster with larger files +* check_snmp: add 'multiplier' to modify current value +* check_http: Implement chunked encoding decoding +* check_http/check_curl: add chunked encoding test +* check_log: Added --exclude to exclude patterns +* check_log: Add tests +* check_disk: Clarify usage possibilites + +### Fixes +#### General +* fixed two PRId64 to PRIu64 in perfdata_uint64 +#### Single Plugins +* check_pgsql: Removing is_pg_dbname alltogether,using postgres API. +* check_http: Remove superflous CRLF in HTTP-Requests +* check_curl: detect ipv6 +* check_icmp: fix parsing help/version long options +* check_http: fix test plan +* check_disk: Find accessible mount path if multiple are available +* check_apt: Fix unknown escape sequence error output +* check_curl: fix checking large bodys +* check_snmp: Improve tests for check_snmp & multiply option +* check_snmp: always apply format when applying multiplier +* check_http: Use real booleans instead of ints +* check_http: Document process_arguments a little bit better +* check_http: Remove dead code +* check_http: Fix several bug in the implementation of unchunking +* check_http: Reformat a part to increase readability +* check_apt: Put upgrade options in the root sections +* check_apt: Fix comment +* check_apt: Use real booleans +* check_mailq: Fixing nullmailer regex +* check_snmp: Fix regex matches +* check_log: Fixed a bug when using --all +* check_log: Cleaned up duplicated code in the args +* check_http: Fix memory reallocation error in chunk decoding logic +* check_http: Add space for ending NULL byte in array for chunked encoding + + +[download]: /download.html + + diff --git a/web/macros.py b/web/macros.py index 668c45e..0c20662 100644 --- a/web/macros.py +++ b/web/macros.py @@ -2,7 +2,7 @@ import email.utils import os.path import time -plugins_release = '2.3.2' +plugins_release = '2.3.3' mib_release = '1.0.1' release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-') site_url = 'https://www.monitoring-plugins.org/' -- cgit v0.10-9-g596f