summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Wagner <waja@cyconet.org>2023-10-17 15:17:02 (GMT)
committerJan Wagner <waja@cyconet.org>2023-10-17 15:53:01 (GMT)
commitb5474408a726516f57df3c6489fb2ce0a35cbaff (patch)
treee122064b11d529feda9b61aeac3a98273929a01f
parentdab2c3410d3251dd27eeeab54478f3f2bc93f32f (diff)
downloadsite-b5474408a726516f57df3c6489fb2ce0a35cbaff.tar.gz
Releasing 2.3.4
-rw-r--r--web/input/news/release-2-3-4.md52
-rw-r--r--web/macros.py2
2 files changed, 53 insertions, 1 deletions
diff --git a/web/input/news/release-2-3-4.md b/web/input/news/release-2-3-4.md
new file mode 100644
index 0000000..5b68282
--- /dev/null
+++ b/web/input/news/release-2-3-4.md
@@ -0,0 +1,52 @@
1title: Version 2.3.4 Released
2author: Jan Wagner
3date: 2023-10-18
4---
5
6The Monitoring Plugins Development Team is proud to announce version 2.3.4 of
7the Monitoring Plugins! This release comes with various fixes provided by more
8than 30 contributors. Many thanks to all of you!
9<end-of-teaser>
10
11For the list of notable changes in this release, see below.
12
13You can get the tarball from our [download page][download].
14
15### Enhancements
16#### General
17* Sync with the Gnulib code 668c0b8ffa
18* Set autoconf prerequisite version to 2.64
19* Remove sha1 and use sha256 in some parts of the plugin structure
20#### Single Plugins
21* check_curl: added --cookie-jar and doing proper cleanup of libcurl
22* check_curl: Include all IPs from getaddrinfo() in curl DNS cache
23* check_dhcp: Add dhcp rogue detection
24* check_disk: add ignore-missing option to return OK for missing fs
25* check_disk_smb: allow checking 0-sized resource (ex. IPC$)
26* check_disk: The options to include or exclude specific file systems now allow the usage of regex(7)
27* check_icmp: Add support to Jitter, MOS and Score
28* check_mysql: Detect running mysqldump and handle it more gracefully
29* check_procs: Implement --exclude-process to exclude specific processes
30* check_smtp: add new longoption --tls
31* check_smtp: Add option to prefix PROXY header
32* check_smtp: Add support for SMTP over TLS
33* check_smtp: Add support for SNI
34* check_snmp: Implement option to ignore mib file parsing errors
35* check_users: prefer systemd-logind over utmp
36
37### Fixes
38#### General
39* A lot of compiler warnings were fixed
40* Some code was refactored a little bit
41#### Single Plugins
42* check_disk: Display SI units correctly
43* check_ircd: use pack_sockaddr_in rather than hand-rolled
44* check_log/check_oracle/check_sensors: fixed the outputs of the help functionality
45* check_mysql: Add mysql_close to avoid spamming the server logs
46* check_smtp: add missing -r option in usage
47* check_snmp: disable multiplier when unused
48* check_wave: Use compile time determined path to snmpget
49
50[download]: /download.html
51
52<!--% # vim:set filetype=markdown textwidth=78 joinspaces expandtab: # %-->
diff --git a/web/macros.py b/web/macros.py
index 0c20662..1b8c7a0 100644
--- a/web/macros.py
+++ b/web/macros.py
@@ -2,7 +2,7 @@ import email.utils
2import os.path 2import os.path
3import time 3import time
4 4
5plugins_release = '2.3.3' 5plugins_release = '2.3.4'
6mib_release = '1.0.1' 6mib_release = '1.0.1'
7release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-') 7release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-')
8site_url = 'https://www.monitoring-plugins.org/' 8site_url = 'https://www.monitoring-plugins.org/'