summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-12-02 15:03:33 +0100
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-12-02 15:20:16 +0100
commitfc31cd2165aa3a6f8003b63ff4f3ff6ddc63a218 (patch)
tree683a542b3ef299cd997270808617cde67eb67c0a
parent25329a9097cbd272a4d94e2ae9b09e423016c022 (diff)
downloadmonitoring-plugins-3.0.0-rc1.tar.gz
Pre release 3.0.0-rc1v3.0.0-rc13.0.0-rc1
-rw-r--r--NEWS28
-rwxr-xr-xNP-VERSION-GEN2
-rw-r--r--THANKS.in6
-rw-r--r--configure.ac2
4 files changed, 36 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index fd43fd3a..6969ce87 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,33 @@
1This file documents the major additions and syntax changes between releases. 1This file documents the major additions and syntax changes between releases.
2 2
33.0.0-rc1 2025-12-02
4
5 GENERAL
6 * Uniform formatting for the C part of the project
7 * General refactoring to avoid global variabes and attempt to make the code "simler"
8 * Centralised output generation for some plugins
9 * Sync with the latest Gnulib code (d4ec02b3cc) (gnulib v1.0)
10
11 CHANGES
12 * check_snmp: links not directly agains net-snmp, no `snmpget`(next) anymore
13
14 FIXES
15 * check_curl: some bug fixes regarding different scenarios
16 * check_mysql: adapt to different naming schemes in MySQL in newer versions for replica check
17 * check_ssh: fix a buffer overflow
18 * check_ntp_peer and check_ntp_time should now be able to handle Unix sockets instead of network addresses, too
19
20 ENHANCEMENTS
21 * check_dig: New options to require or forbid specific DNS flags
22 * check_ifstatus: New option to exclude specific ports
23 * Add dontfrag / random options to fping check
24
25 REMOVALS
26 * check_nwstat was removed, since there is no use case anymore
27
28 DEPRECATIONS
29 * check_http is now considered deprecated and will receive no further maintenance
30
32.4.0 25th Jul 2024 312.4.0 25th Jul 2024
4 FIXES 32 FIXES
5 * check_dbi: Compiler warning for uninitialized variable 33 * check_dbi: Compiler warning for uninitialized variable
diff --git a/NP-VERSION-GEN b/NP-VERSION-GEN
index e16f37da..aab88212 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.4git 9DEF_VER=3.0.0-rc1
10 10
11LF=' 11LF='
12' 12'
diff --git a/THANKS.in b/THANKS.in
index 5dbb1b39..a4f9a766 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -427,3 +427,9 @@ Louis Sautier
427Sven Hartge 427Sven Hartge
428Alvar Penning 428Alvar Penning
429Michael Jeanson 429Michael Jeanson
430Alexandre Anriot
431Andre Klaerner
432Andre Klärner
433Michael Orlitzky
434Richard Laager
435Yannick Martin
diff --git a/configure.ac b/configure.ac
index 705183a2..a6b6b025 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.64]) 2AC_PREREQ([2.64])
3AC_INIT([monitoring-plugins],[2.4git]) 3AC_INIT([monitoring-plugins],[3.0.0-rc1])
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)