Update ChangeLog and bump version for v2.4.1 release

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg 2022-08-01 11:46:32 +02:00
parent a06639bd0e
commit 16bad57af5
2 changed files with 10 additions and 5 deletions

View File

@ -4,7 +4,7 @@ Change Log
All relevant changes to the project are documented in this file. All relevant changes to the project are documented in this file.
[v2.4.1][UNRELEASED] [v2.4.1][] - 2022-08-01
----------------------- -----------------------
### Changes ### Changes
@ -13,10 +13,11 @@ All relevant changes to the project are documented in this file.
- in untrusted kernel messages - in untrusted kernel messages
- Dropped `debian/` directory (moved to separate branch), to ease - Dropped `debian/` directory (moved to separate branch), to ease
re-packaging by downstream re-packaging by downstream
- libsyslog now supports logging to remote servers, bypassing syslogd
- Major updates to `logger`: - Major updates to `logger`:
- Support for logging to a remote host, `-h HOST` and `-P PORT` - Support for logging to a remote host, `-h HOST` and `-P PORT`
- Support for logging in RFC3164 format, mostly for remote logging - Support for logging in RFC3164 format, `-b`, mostly for remote
to syslog servers that do not support RFC5424, `-b` logging to syslog servers that do not support RFC5424
- Support for overriding hostname `-H NAME` - Support for overriding hostname `-H NAME`
- Support for custom PID, e.g., a shell scripts PID, `-I PID` - Support for custom PID, e.g., a shell scripts PID, `-I PID`
@ -31,7 +32,11 @@ All relevant changes to the project are documented in this file.
- Fix #56: logging to remote machine stops after receiving a few - Fix #56: logging to remote machine stops after receiving a few
SIGHUPs. Open remote socket count was not reset properly on SIGHUP. SIGHUPs. Open remote socket count was not reset properly on SIGHUP.
Problem introduced in v2.4.0. Reported by Edward K. McGuire Problem introduced in v2.4.0. Reported by Edward K. McGuire
- Fix `gettimeofday()` error handling to use same fallback to `time()`
- Fix libsyslog opening and connecting to syslogd when `LOG_NLOG` is set
- Fix libsyslog so it honors `LOG_PTRIM` when logging to stderr
- Fix issue in RFC3164 output where the tag field could overflow.
Spec. mandates tag never exceeds 32 characters
[v2.4.0][] - 2022-05-29 [v2.4.0][] - 2022-05-29
----------------------- -----------------------

View File

@ -25,7 +25,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE. # SUCH DAMAGE.
AC_INIT([sysklogd], [2.4.1-rc1], [https://github.com/troglobit/sysklogd/issues],, AC_INIT([sysklogd], [2.4.1], [https://github.com/troglobit/sysklogd/issues],,
[https://github.com/troglobit/sysklogd]) [https://github.com/troglobit/sysklogd])
AC_CONFIG_AUX_DIR(aux) AC_CONFIG_AUX_DIR(aux)
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects]) AM_INIT_AUTOMAKE([1.11 foreign subdir-objects])