diff options
| -rw-r--r-- | web/input/news/release-3-0-0.md | 80 | ||||
| -rw-r--r-- | web/macros.py | 2 |
2 files changed, 81 insertions, 1 deletions
diff --git a/web/input/news/release-3-0-0.md b/web/input/news/release-3-0-0.md new file mode 100644 index 0000000..85c7982 --- /dev/null +++ b/web/input/news/release-3-0-0.md | |||
| @@ -0,0 +1,80 @@ | |||
| 1 | title: Version 3.0.0-rc1 Released | ||
| 2 | author: Lorenz Kästle | ||
| 3 | date: 2025-12-03 | ||
| 4 | --- | ||
| 5 | |||
| 6 | The Monitoring Plugins Development Team announces version 3.0.0-rc1 of | ||
| 7 | the Monitoring Plugins! | ||
| 8 | This release is different in several regards to previous releases. | ||
| 9 | Due the a significant refactoring and the unintented side effect this | ||
| 10 | may have, the "real" release will be following release candidates which | ||
| 11 | are intented to for early adapters and testing. | ||
| 12 | <end-of-teaser> | ||
| 13 | |||
| 14 | The core parts of this release are significant changes to the C part of this | ||
| 15 | project, which should be mostly internal and not change the results in a | ||
| 16 | significant way (meaning the input parameters mostly stay as they are and the | ||
| 17 | exit code should remain the same if the parameters are the same in the old | ||
| 18 | version and context did not change). | ||
| 19 | The reality is, that big changes have | ||
| 20 | unintented consequences which are not covered in the test cases or some | ||
| 21 | consequences were not in our scope at all. | ||
| 22 | For the list of notable changes in this release, see below. | ||
| 23 | |||
| 24 | You can get the tarball from our [download page][download]. | ||
| 25 | |||
| 26 | ### General changes | ||
| 27 | * In the C part of the project | ||
| 28 | * Heavy refactoring to simplify and unify the code base | ||
| 29 | * Introduction of a generalized output mechanism for most plugins | ||
| 30 | * Standardized code formatting via `clang-format` | ||
| 31 | |||
| 32 | ### Specific changes | ||
| 33 | #### check_curl | ||
| 34 | `check_curl` received a lot of changes which improve the documentation and | ||
| 35 | fix several bugs. | ||
| 36 | It is also not considered experimental anymore. | ||
| 37 | |||
| 38 | Additionaly `check_curl` can now be configured to handle cookies internally | ||
| 39 | without saving cookies to the filesystem. | ||
| 40 | |||
| 41 | #### check_http | ||
| 42 | `check_http` is now considered deprecated and will not receive attention any | ||
| 43 | more. It is replaced by `check_curl` | ||
| 44 | |||
| 45 | #### check_snmp | ||
| 46 | `check_snmp` does not execute `snmpget` or `snmpgetnext` anymore but executes | ||
| 47 | the net-snmp calls natively now. | ||
| 48 | |||
| 49 | #### check_nwstat | ||
| 50 | `check_nwstat` was removed, due to its perceived insignificance in the current | ||
| 51 | IT world. This reduces the maintenance load and ressource consumption in | ||
| 52 | general. | ||
| 53 | |||
| 54 | #### check_by_ssh | ||
| 55 | `check_by_ssh` ignores output on `stderr` by default now. This should | ||
| 56 | avoid false positives for warnings by the OpenSSH client (especially | ||
| 57 | about the server missing Post-Quantum cryptography. | ||
| 58 | |||
| 59 | #### check_dns | ||
| 60 | `check_dns` now ignores CNAMES in reverse DNS mode. | ||
| 61 | |||
| 62 | #### check_fping | ||
| 63 | If during compilation `fping` 5.2, 5.3 or higher are present, `check_fping` | ||
| 64 | will be able to use new options which were introduced with these versions. | ||
| 65 | These options are (equivalent to the ones with the same name in `fping`) | ||
| 66 | `--fwmark`, `--icmp-timestamp` and `--check-source`. | ||
| 67 | The older flags `--dontfrag` and `--random` were also added. | ||
| 68 | |||
| 69 | Also the `-4` and `-6` flags may not have worked as intented and should be | ||
| 70 | fixed now. | ||
| 71 | |||
| 72 | #### check_mysql | ||
| 73 | `check_mysql` should now be able to correctly detect whether a replica is | ||
| 74 | attached and working correctly. | ||
| 75 | Changes were necessary here to adapt to changes in the naming convention in | ||
| 76 | MySQL. | ||
| 77 | |||
| 78 | [download]: /download.html | ||
| 79 | |||
| 80 | <!--% # vim:set filetype=markdown textwidth=78 joinspaces expandtab: # %--> | ||
diff --git a/web/macros.py b/web/macros.py index 5536f3f..3eb1046 100644 --- a/web/macros.py +++ b/web/macros.py | |||
| @@ -3,7 +3,7 @@ import math | |||
| 3 | import os.path | 3 | import os.path |
| 4 | import time | 4 | import time |
| 5 | 5 | ||
| 6 | plugins_release = '2.4.0' | 6 | plugins_release = '3.0.0-rc1' |
| 7 | mib_release = '1.0.1' | 7 | mib_release = '1.0.1' |
| 8 | release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-') | 8 | release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-') |
| 9 | site_url = 'https://www.monitoring-plugins.org/' | 9 | site_url = 'https://www.monitoring-plugins.org/' |
