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.2 #440

Merged
merged 3 commits into from
Jan 4, 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
16 changes: 16 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
1.4.2 - Jan 03 2024
===================
Features:
* remove size limit on external command argument length
* performance improvements when having lots of comments
* respawn dead core worker

Changed:
* write objects.precache into a tmp file first
* increased CURRENT_NEB_API_VERSION to 6 (neb modules need to be rebuild)

Bugfixes:
* fix build error on fedora
* fix latency calculation having negative value sometimes


1.4.1 - Feb 01 2023
===================
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.2) UNRELEASED; urgency=low

* new upstream release

-- Naemon Development Team <[email protected]> Fri, 29 Dec 2023 14:00:04 +0100

naemon-core (1.4.1) 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.1
Version: 1.4.2
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.1
VERSION=1.4.2
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