Update changelogs for v2.3.0 (final) release

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg 2021-11-27 21:20:21 +01:00
parent f4f2ad365e
commit 03c2c9c68d
2 changed files with 21 additions and 2 deletions

View File

@ -4,7 +4,7 @@ Change Log
All relevant changes to the project are documented in this file.
[v2.3.0][] - 2021-11-22
[v2.3.0][] - 2021-11-27
-----------------------
### Changes
@ -22,9 +22,21 @@ All relevant changes to the project are documented in this file.
- Issue #34: regression in v2.2.3, causing loss of syslogd log messages
like `syslogd v2.2.3: restart.`
- Issue #35: man pages lists `-v` as verbose mode, is actually version
- Issue #36: retry DNS lookup of remote syslog servers with `res_init()`
to ensure name resolution at bootup when a remote DNS may temporarily
be unreachable. Retry at most every five seconds, to prevent syslogd
from monopolizing the CPU when emptying the kernel ring buffer
- Issue #39: update tests to use `-P fn` and `-C fn`
- Issue #40: improve documentation for syslogd.cache file requirements
- Issue #41: add missing documentation for -H option
- Issue #42: add option (`-K`) to always trust kernel timestamp. By
default `syslogd` only trusts the kernel timestamp for the initial
emptying of the kernel ring buffer
- Issue #43: avoid asserting (exiting) on and around Jan 19, 2038, when
the UNIX epoch wraps around on 32-bit `time_t` systems
- libsyslog: handle `EOVERFLOW` from `gettimeofday()` on Jan 19, 2038
- Avoid `NULL` pointers to internal `logit()` function, only triggered
when in debug mode
- Replace `\m` with `\n` (missing newline) in `logger` usage text

9
debian/changelog vendored
View File

@ -10,11 +10,18 @@ sysklogd (2.3.0) stable; urgency=medium
like `syslogd v2.2.3: restart.`
* Fix man page, listed `-v` as verbose mode, is actually version
* Fix man page, missing documentation for `-H` option
* Fix DNS lookup handling of remote syslog servers, call res_init()
before getaddrinfo() and re-check more often than every 180 sec.
* Add option `-K` to trust kernel timestamps after startup
* Avoid asserting (exiting) on and around Jan 19, 2038, UNIX epoch
wraparound on 32-bit systems. Also, handle `EOVERFLOW` from the
gettimeofday() function in libsyslog
* Avoid NULL pointers in internal logging functions when in debug mode
* Replace `\m` with `\n` (missing newline) in `logger` usage text
* Use systemd KillMode=process
* Let syslogd use another socket when journald is active (systemd systems)
-- Joachim Wiberg <troglobit@gmail.com> Mon, 22 Nov 2021 02:20:15 +0100
-- Joachim Wiberg <troglobit@gmail.com> Sat, 27 Nov 2021 21:19:54 +0100
sysklogd (2.2.3) stable; urgency=medium