Skip to content

Commit

Permalink
release v0.08
Browse files Browse the repository at this point in the history
Signed-off-by: Sven Nierlein <sven@consol.de>
  • Loading branch information
sni committed Sep 7, 2023
1 parent 7df66f6 commit a7ee93d
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 25 deletions.
55 changes: 32 additions & 23 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,43 +1,52 @@
This file documents the revision history for the SNClient+ agent.

0.07 Wed Aug 30 20:45:50 CEST 2023
- add support for perf-config option
- add support for case insensitive regular expression matches
- add support for case insensitive string matches
- add support for builtin check_nsc_web
- improve documentation
- check_disk: ignore drives which have problems but are not required
0.08 Thu Sep 7 15:08:07 CEST 2023
- catch some standard cmd.exe errors
- skip logrotation if output is not a file
- make filter keywords are case insensitive
- improve scripts paths containing spaces
- add /api/v1/inventory rest path
- packaging: create logfile folder
- fix restart after running update from cli

0.06 Thu Jul 27 08:31:28 CEST 2023
- relative include paths are now considered to be in the parent ini-file
- wmi: improve error handling
0.07 Wed Aug 30 20:45:50 CEST 2023
- add support for perf-config option
- add support for case insensitive regular expression matches
- add support for case insensitive string matches
- add support for builtin check_nsc_web
- improve documentation
- check_disk: ignore drives which have problems but are not required

0.05 Fri Jul 21 20:24:19 CEST 2023
- add configuration dialog to .msi installer
- setup windows firewall rules during installation
- add wildcard support for includes
- add conf.d directory support for includes
- added check_tasksched
- added nrpe mode to test cmd
- fix osx installer (#27)
- fix linux check_drivesize (#14)
- fix missing byte in nrpe response (#21)
0.06 Thu Jul 27 08:31:28 CEST 2023
- relative include paths are now considered to be in the parent ini-file
- wmi: improve error handling

0.04 Wed Jul 5 19:13:44 CEST 2023
0.05 Fri Jul 21 20:24:19 CEST 2023
- add configuration dialog to .msi installer
- setup windows firewall rules during installation
- add wildcard support for includes
- add conf.d directory support for includes
- added check_tasksched
- added nrpe mode to test cmd
- fix osx installer (#27)
- fix linux check_drivesize (#14)
- fix missing byte in nrpe response (#21)

0.04 Wed Jul 5 19:13:44 CEST 2023
- implement external scripts
- add support for client certificates
- add hashed passwords
- improve internal checks

0.03 Mon Jun 12 22:23:02 CEST 2023
0.03 Mon Jun 12 22:23:02 CEST 2023
- implement filter and thresholds
- packaging
- add windows service mode
- add command alias support
- add log rotation
- add optional automatic updates

0.02 Sun Apr 2 22:48:22 CEST 2023
0.02 Sun Apr 2 22:48:22 CEST 2023
- add packaging
- windows
- rpm
Expand Down
2 changes: 1 addition & 1 deletion buildtools/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if grep "^next:" Changes >/dev/null 2>&1; then
sed -i Changes -e "s/^next:.*/${VERSIONHEADER}/"
else
# no next: entry found, replace second line with new entry
sed -i Changes -e "2s/^/\n${VERSIONHEADER}\n - ...\n/"
sed -i Changes -e "2s/^/\n${VERSIONHEADER}\n - ...\n/"
fi
git add Changes pkg/snclient/snclient.go
git commit -vs -m "release v${NEWVERSION}"
Expand Down
2 changes: 1 addition & 1 deletion pkg/snclient/snclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const (
" monitoring agent designed as replacement for NRPE and NSClient++."

// VERSION contains the actual snclient version.
VERSION = "0.07"
VERSION = "0.08"

// ExitCodeOK is used for normal exits.
ExitCodeOK = 0
Expand Down

0 comments on commit a7ee93d

Please sign in to comment.