diff options
author | Jan Wagner <waja@cyconet.org> | 2023-02-01 14:05:44 (GMT) |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2023-02-01 14:05:44 (GMT) |
commit | 5295cf7f23d98feef25f316a7f085281b5706efb (patch) | |
tree | 26f4dcf0f4067d7e4896f881652dbea0560860c3 /web | |
parent | aaa863123035ecd87a99319cce0324d68848e155 (diff) | |
download | site-5295cf7f23d98feef25f316a7f085281b5706efb.tar.gz |
Doing 2.3.3 relese
Diffstat (limited to 'web')
-rw-r--r-- | web/input/news/release-2-3-3.md | 59 | ||||
-rw-r--r-- | web/macros.py | 2 |
2 files changed, 60 insertions, 1 deletions
diff --git a/web/input/news/release-2-3-3.md b/web/input/news/release-2-3-3.md new file mode 100644 index 0000000..a87b07a --- /dev/null +++ b/web/input/news/release-2-3-3.md | |||
@@ -0,0 +1,59 @@ | |||
1 | title: Version 2.3.3 Released | ||
2 | author: Jan Wagner | ||
3 | date: 2023-02-02 | ||
4 | --- | ||
5 | |||
6 | The Monitoring Plugins Development Team is proud to announce version 2.3.3 of | ||
7 | the Monitoring Plugins! This release comes with various fixes provided by more | ||
8 | than 16 contributors. Many thanks to all of you! | ||
9 | <end-of-teaser> | ||
10 | |||
11 | For the list of notable changes in this release, see below. | ||
12 | |||
13 | You can get the tarball from our [download page][download]. | ||
14 | |||
15 | ### Enhancements | ||
16 | #### General | ||
17 | * using PRId64 and PRIu64 instead of %ld directly | ||
18 | #### Single Plugins | ||
19 | * check_http: Make faster with larger files | ||
20 | * check_snmp: add 'multiplier' to modify current value | ||
21 | * check_http: Implement chunked encoding decoding | ||
22 | * check_http/check_curl: add chunked encoding test | ||
23 | * check_log: Added --exclude to exclude patterns | ||
24 | * check_log: Add tests | ||
25 | * check_disk: Clarify usage possibilites | ||
26 | |||
27 | ### Fixes | ||
28 | #### General | ||
29 | * fixed two PRId64 to PRIu64 in perfdata_uint64 | ||
30 | #### Single Plugins | ||
31 | * check_pgsql: Removing is_pg_dbname alltogether,using postgres API. | ||
32 | * check_http: Remove superflous CRLF in HTTP-Requests | ||
33 | * check_curl: detect ipv6 | ||
34 | * check_icmp: fix parsing help/version long options | ||
35 | * check_http: fix test plan | ||
36 | * check_disk: Find accessible mount path if multiple are available | ||
37 | * check_apt: Fix unknown escape sequence error output | ||
38 | * check_curl: fix checking large bodys | ||
39 | * check_snmp: Improve tests for check_snmp & multiply option | ||
40 | * check_snmp: always apply format when applying multiplier | ||
41 | * check_http: Use real booleans instead of ints | ||
42 | * check_http: Document process_arguments a little bit better | ||
43 | * check_http: Remove dead code | ||
44 | * check_http: Fix several bug in the implementation of unchunking | ||
45 | * check_http: Reformat a part to increase readability | ||
46 | * check_apt: Put upgrade options in the root sections | ||
47 | * check_apt: Fix comment | ||
48 | * check_apt: Use real booleans | ||
49 | * check_mailq: Fixing nullmailer regex | ||
50 | * check_snmp: Fix regex matches | ||
51 | * check_log: Fixed a bug when using --all | ||
52 | * check_log: Cleaned up duplicated code in the args | ||
53 | * check_http: Fix memory reallocation error in chunk decoding logic | ||
54 | * check_http: Add space for ending NULL byte in array for chunked encoding | ||
55 | |||
56 | |||
57 | [download]: /download.html | ||
58 | |||
59 | <!--% # vim:set filetype=markdown textwidth=78 joinspaces expandtab: # %--> | ||
diff --git a/web/macros.py b/web/macros.py index 668c45e..0c20662 100644 --- a/web/macros.py +++ b/web/macros.py | |||
@@ -2,7 +2,7 @@ import email.utils | |||
2 | import os.path | 2 | import os.path |
3 | import time | 3 | import time |
4 | 4 | ||
5 | plugins_release = '2.3.2' | 5 | plugins_release = '2.3.3' |
6 | mib_release = '1.0.1' | 6 | mib_release = '1.0.1' |
7 | release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-') | 7 | release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-') |
8 | site_url = 'https://www.monitoring-plugins.org/' | 8 | site_url = 'https://www.monitoring-plugins.org/' |