Skip to content

Commit

Permalink
Update ChangeLog and bump version for upcoming v2.6.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
  • Loading branch information
troglobit committed Jul 14, 2024
1 parent 318f657 commit 8e744c3
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
28 changes: 27 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@ Change Log
All relevant changes to the project are documented in this file.


[v2.6.0][] - 2024-07-15
-----------------------

### Changes
- Add reload command for systemd service, by Paweł Jasiak
- Add global log rotation options to .conf file, issue #80. Introducing
two new settings: `rotate_size SIZE` and `rotate_count COUNT`
- Semantic change for per-file log rotation settings, no longer possible
to disable log rotation for a file by setting `rotate=0:0`
- Possible to set only size or count rotation per file

### Fixes
- Fix #72: loss of raw kernel log messages to console.
This adds a new command line flag `-l` to keep kernel logs to console.
A feature requested by embedded Linux users who often navigate issues
by console output.

With properly configured kernel logging, e.g., `quiet`, only error and
above in severity is logged by the kernel directly to the console. So
for most users this would be a useful behavior.
- Fix #81: blocking delay for unreachable remote log server. If DNS
name is used as remote log server, the system may not be able to
resolve it to an IP address (for various reasons). This may lead
to blocking delays in `syslogd` causing loss of log messages


[v2.5.2][] - 2023-08-21
-----------------------

Expand Down Expand Up @@ -509,7 +535,7 @@ and a replacement for `syslog.h` to enable new features in RFC5424.
machines.
- Greg Trounson <gregt@maths.otago.ac.nz>
- Improved README.linux
- Ulf Härnhammar <Ulf.Harnhammar.9485@student.uu.se>
- Ulf Härnhammar <Ulf.Harnhammar.9485@student.uu.se>
- Boundary check for fscanf() in InitKsyms() and CheckMapVersion()
- Colin Phipps <cph@cph.demon.co.uk>
- Don't block on the network socket in case of packet loss
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2023 Joachim Wiberg <troglobit@gmail.com>
# Copyright (c) 2018-2024 Joachim Wiberg <troglobit@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Expand All @@ -25,7 +25,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.

AC_INIT([sysklogd], [2.5.3-beta1], [https://github.com/troglobit/sysklogd/issues],,
AC_INIT([sysklogd], [2.6.0-beta1], [https://github.com/troglobit/sysklogd/issues],,
[https://github.com/troglobit/sysklogd])
AC_CONFIG_AUX_DIR(aux)
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects])
Expand Down

0 comments on commit 8e744c3

Please sign in to comment.