Pre release 3.0.0-rc1

This commit is contained in:
Lorenz Kästle 2025-12-02 15:03:33 +01:00
parent 25329a9097
commit fc31cd2165
4 changed files with 36 additions and 2 deletions

28
NEWS
View file

@ -1,5 +1,33 @@
This file documents the major additions and syntax changes between releases.
3.0.0-rc1 2025-12-02
GENERAL
* Uniform formatting for the C part of the project
* General refactoring to avoid global variabes and attempt to make the code "simler"
* Centralised output generation for some plugins
* Sync with the latest Gnulib code (d4ec02b3cc) (gnulib v1.0)
CHANGES
* check_snmp: links not directly agains net-snmp, no `snmpget`(next) anymore
FIXES
* check_curl: some bug fixes regarding different scenarios
* check_mysql: adapt to different naming schemes in MySQL in newer versions for replica check
* check_ssh: fix a buffer overflow
* check_ntp_peer and check_ntp_time should now be able to handle Unix sockets instead of network addresses, too
ENHANCEMENTS
* check_dig: New options to require or forbid specific DNS flags
* check_ifstatus: New option to exclude specific ports
* Add dontfrag / random options to fping check
REMOVALS
* check_nwstat was removed, since there is no use case anymore
DEPRECATIONS
* check_http is now considered deprecated and will receive no further maintenance
2.4.0 25th Jul 2024
FIXES
* check_dbi: Compiler warning for uninitialized variable

View file

@ -6,7 +6,7 @@
SRC_ROOT=`dirname $0`
NPVF=NP-VERSION-FILE
DEF_VER=2.4git
DEF_VER=3.0.0-rc1
LF='
'

View file

@ -427,3 +427,9 @@ Louis Sautier
Sven Hartge
Alvar Penning
Michael Jeanson
Alexandre Anriot
Andre Klaerner
Andre Klärner
Michael Orlitzky
Richard Laager
Yannick Martin

View file

@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.64])
AC_INIT([monitoring-plugins],[2.4git])
AC_INIT([monitoring-plugins],[3.0.0-rc1])
AC_CONFIG_SRCDIR(NPTest.pm)
AC_CONFIG_FILES([gl/Makefile])
AC_CONFIG_AUX_DIR(build-aux)