From 109d764dcd4dfa483eec871462a47b340fb73df8 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Sun, 21 Apr 2024 11:49:39 +0200 Subject: [PATCH] Update ChangeLog and bump version for v2.3 release Signed-off-by: Joachim Wiberg --- ChangeLog.md | 27 ++++++++++++++++++++++++++- configure.ac | 2 +- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 9581ecc..9d81a7f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,7 +4,32 @@ Change Log All relevant, user visible, changes are documented in this file. -[v2.2][] - 2024-04-08 +[v2.3][] - 2024-04-21 +--------------------- + +### Changes + - Add IGMP proto support for raw VLAN interfaces + - New `mctl show mdb` command + - New `mctl check` command to probe for required tools + - All `mctl` commands now run `mctl check` internally to ensure + required tools are available + - Refactored logging, all log messages affected and may have been + altered in their output, and severity + - Add `configure` support for setting IPC socket group ID when `mcd` + creates its IPC socket, useful to provide `wheel` group access + +### Fixes + - Fix router port detection for VLAN filtering bridges + - Fix duplicate log message on `send_igmp()` failure + - Fix `time_t -> int` misuse, found by Coverity Scan + - Fix uninitialized scalars, found by Coverity Scan + - Fix resource leak, found by Coverity Scan + - Fix possible out-of-bounds write, found by Coverity Scan + - Fix possible out-of-bounds access, found by Coverity Scan + - Fix build warnings, removing unused functions and adjusting levels + + +[v2.2][] - 2024-04-17 --------------------- ### Changes diff --git a/configure.ac b/configure.ac index a55b8a0..f8e74a7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.69]) -AC_INIT([mcd], [2.2], [https://github.com/kernelkit/mcd/issues]) +AC_INIT([mcd], [2.3], [https://github.com/kernelkit/mcd/issues]) AC_CONFIG_AUX_DIR(.aux) AM_INIT_AUTOMAKE([1.11 foreign]) AM_SILENT_RULES([yes])