diff options
| author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-12-02 15:03:33 +0100 |
|---|---|---|
| committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-12-02 15:20:16 +0100 |
| commit | fc31cd2165aa3a6f8003b63ff4f3ff6ddc63a218 (patch) | |
| tree | 683a542b3ef299cd997270808617cde67eb67c0a | |
| parent | 25329a9097cbd272a4d94e2ae9b09e423016c022 (diff) | |
| download | monitoring-plugins-3.0.0-rc1.tar.gz | |
Pre release 3.0.0-rc1v3.0.0-rc13.0.0-rc1
| -rw-r--r-- | NEWS | 28 | ||||
| -rwxr-xr-x | NP-VERSION-GEN | 2 | ||||
| -rw-r--r-- | THANKS.in | 6 | ||||
| -rw-r--r-- | configure.ac | 2 |
4 files changed, 36 insertions, 2 deletions
| @@ -1,5 +1,33 @@ | |||
| 1 | This file documents the major additions and syntax changes between releases. | 1 | This file documents the major additions and syntax changes between releases. |
| 2 | 2 | ||
| 3 | 3.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 | |||
| 3 | 2.4.0 25th Jul 2024 | 31 | 2.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 @@ | |||
| 6 | SRC_ROOT=`dirname $0` | 6 | SRC_ROOT=`dirname $0` |
| 7 | 7 | ||
| 8 | NPVF=NP-VERSION-FILE | 8 | NPVF=NP-VERSION-FILE |
| 9 | DEF_VER=2.4git | 9 | DEF_VER=3.0.0-rc1 |
| 10 | 10 | ||
| 11 | LF=' | 11 | LF=' |
| 12 | ' | 12 | ' |
| @@ -427,3 +427,9 @@ Louis Sautier | |||
| 427 | Sven Hartge | 427 | Sven Hartge |
| 428 | Alvar Penning | 428 | Alvar Penning |
| 429 | Michael Jeanson | 429 | Michael Jeanson |
| 430 | Alexandre Anriot | ||
| 431 | Andre Klaerner | ||
| 432 | Andre Klärner | ||
| 433 | Michael Orlitzky | ||
| 434 | Richard Laager | ||
| 435 | Yannick Martin | ||
diff --git a/configure.ac b/configure.ac index 705183a2..a6b6b025 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | dnl Process this file with autoconf to produce a configure script. | 1 | dnl Process this file with autoconf to produce a configure script. |
| 2 | AC_PREREQ([2.64]) | 2 | AC_PREREQ([2.64]) |
| 3 | AC_INIT([monitoring-plugins],[2.4git]) | 3 | AC_INIT([monitoring-plugins],[3.0.0-rc1]) |
| 4 | AC_CONFIG_SRCDIR(NPTest.pm) | 4 | AC_CONFIG_SRCDIR(NPTest.pm) |
| 5 | AC_CONFIG_FILES([gl/Makefile]) | 5 | AC_CONFIG_FILES([gl/Makefile]) |
| 6 | AC_CONFIG_AUX_DIR(build-aux) | 6 | AC_CONFIG_AUX_DIR(build-aux) |
