From d736c837d074bab5aeaffea4ad0b3f8a0c2e15c4 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Wed, 5 May 2021 03:40:27 +0200 Subject: [PATCH] Update changelogs and bump version for upcoming v2.2.3 patch release Signed-off-by: Joachim Wiberg --- ChangeLog.md | 17 ++++++++++++++++- configure.ac | 2 +- debian/changelog | 11 +++++++++++ 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index f4b2284..4812db3 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,6 +4,20 @@ Change Log All relevant changes to the project are documented in this file. +[v2.2.3][UNRELEASED] +----------------------- + +Bug fix release. + +### Fixes +- Issue #28: log messages stuck in 1969. When not using libsyslog, or + the bundled logger, the `syslog()` API in the C library is used, which + may not necessarily set the timestamp. When sysklogd infers timestamp + it was offset by the number of years since 1969, i.e., `boot_time` +- Issue #31: time calculation issue on 32-bit systems +- Issue #32: remote kernel messages being mapped to uucp instead of user + + [v2.2.2][] - 2021-03-08 ----------------------- @@ -375,7 +389,8 @@ and a replacement for `syslog.h` to enable new features in RFC5424. - Several bugfixes and improvements, please refer to the .c files -[UNRELEASED]: https://github.com/troglobit/sysklogd/compare/v2.2.1...HEAD +[UNRELEASED]: https://github.com/troglobit/sysklogd/compare/v2.2.2...HEAD +[v2.2.3]: https://github.com/troglobit/sysklogd/compare/v2.2.2...v2.2.3 [v2.2.2]: https://github.com/troglobit/sysklogd/compare/v2.2.1...v2.2.2 [v2.2.1]: https://github.com/troglobit/sysklogd/compare/v2.2.0...v2.2.1 [v2.2.0]: https://github.com/troglobit/sysklogd/compare/v2.1.2...v2.2.0 diff --git a/configure.ac b/configure.ac index 02390aa..7ef5118 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. -AC_INIT([sysklogd], [2.2.2], [https://github.com/troglobit/sysklogd/issues],, +AC_INIT([sysklogd], [2.2.3-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]) diff --git a/debian/changelog b/debian/changelog index 65cd233..9f12349 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +sysklogd (2.2.3) stable; urgency=medium + + * Fix problem with log messages stuck in 1969. When not using libsyslog, + or the bundled logger, the syslog() API in the C library is used, which + may not necessarily set the timestamp. When sysklogd infers timestamp + it was offset by the number of years since 1969, i.e., boot_time. + * Fix time calculation issue on 32-bit systems. + * Fix remote kernel messages being mapped to uucp instead of user + + -- Joachim Wiberg Wed, 05 May 2021 03:36:37 +0200 + sysklogd (2.2.2) stable; urgency=low * Initial release.