Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1 4 3 #487

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
1.4.3 - Nov 19 2024
===================
Features:
* add global notifications handler (#477)
* add external command to add log entries (#477)
* add hint of previous object when duplicate detection fails (#479)
* add options to keep services running as long as they are up (#459)
* add problem timestamps and duration (#447)

Changed:
* clean up output of naemon -V (#484)
* change problem_id and notification_id to uuids (#362)
* change service parents suppressing only normal notifcations (#446)

Bugfixes:
* fix leaking object.cache file references (#462)
* fix host not being in hard state with max_check_attempts=1 (#473)
* throw config errors if boolean values cannot be parsed (#478)
* fix retrieving comments after deleting first (#474)
* fix rpm installation race condition (#456)
* fix resetting modified_attributes (#449)


1.4.2 - Jan 03 2024
===================
Features:
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
naemon-core (1.4.3) UNRELEASED; urgency=low

* new upstream release

-- Naemon Development Team <[email protected]> Mon, 18 Nov 2024 21:16:47 +0100

naemon-core (1.4.2) UNRELEASED; urgency=low

* new upstream release
Expand Down
2 changes: 1 addition & 1 deletion naemon-core.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Summary: Open Source Host, Service And Network Monitoring Program
Name: naemon-core
Version: 1.4.2
Version: 1.4.3
Release: 0
License: GPL-2.0-only
Group: Applications/System
Expand Down
2 changes: 1 addition & 1 deletion version.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VERSION=1.4.2
VERSION=1.4.3
if test -e .git; then
if hash git 2>/dev/null; then
VERSION=$(git describe --tag --exact-match 2>/dev/null | sed -e 's/^v//')
Expand Down
Loading