summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/input/news/release-3-0-0-rc3.md47
-rw-r--r--web/macros.py2
2 files changed, 48 insertions, 1 deletions
diff --git a/web/input/news/release-3-0-0-rc3.md b/web/input/news/release-3-0-0-rc3.md
new file mode 100644
index 0000000..890d808
--- /dev/null
+++ b/web/input/news/release-3-0-0-rc3.md
@@ -0,0 +1,47 @@
1title: Version 3.0.0-rc3 Released
2author: Lorenz Kästle
3date: 2026-04-13
4---
5
6The Monitoring Plugins Development Team announces version 3.0.0-rc3 of
7the Monitoring Plugins!
8
9This is the third (and hopefully last) release candidate for version 3.0.0.
10
11The Changes are mostly fixes added to rc2, with some exceptions (e.g. the
12`--proxy` option for check_curl)
13
14### Changes
15 * Changes/Features
16 * check_real: implement modern output
17 * check_radius: Implement modern output
18 * OpenBSD: pledge(2) some network-facing checks
19 * check_curl: add proxy argument and improve dns cache usage
20
21 * Fixes
22 * Fix some minor compiler warnings
23 * Refactor check_ide_smart
24 * Compute numbers in output summary correctly
25 * check_icmp: prevent segfault on OpenBSD
26 * check_disk: compare inode thresholds against the correct value
27 * check_icmp: Populate progname before np_extra_opts call
28 * Make IPv6 unconditional
29 * Fix a few typos
30 * Make replacing of mismatching single quotes work
31 * Fix check_procs -T option
32 * check_curl: check certificates and exit before checking for curl_easy_perform result
33 * Remove troublesome symbols ("|") from output
34 * Update/gnulib 2026 03
35 * Handle rc_send_server in libfreeradius
36 * Revert check_disk performance data back to used space
37 * Add option to override output for check in lib for check_by_ssh
38 * common.h: added guard to avoid warning when ENABLE_NLS is not defined
39 * check_snmp: fixed falltrhough case in ASN_FLOAT/ASN_DOUBLE
40 * removed -Werror=declaration-after-statement from net-snmp-config --cf… by
41 * check_curl: Clean up
42 * added CHECK_EOF to work around warnings about EOF and -1 being the same
43
44
45[download]: /download.html
46
47<!--% # vim:set filetype=markdown textwidth=78 joinspaces expandtab: # %-->
diff --git a/web/macros.py b/web/macros.py
index eab21bc..97fba17 100644
--- a/web/macros.py
+++ b/web/macros.py
@@ -3,7 +3,7 @@ import math
3import os.path 3import os.path
4import time 4import time
5 5
6plugins_release = '3.0.0-rc2' 6plugins_release = '3.0.0-rc3'
7mib_release = '1.0.1' 7mib_release = '1.0.1'
8release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-') 8release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-')
9site_url = 'https://www.monitoring-plugins.org/' 9site_url = 'https://www.monitoring-plugins.org/'