From 819d2c3284726fb6ac15f94b604061242be7781f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerry=20Lundstr=C3=B6m?= Date: Tue, 27 Jun 2023 14:39:41 +0200 Subject: [PATCH] Release 2.1.3 --- CHANGES | 13 +++++++++++++ configure.ac | 2 +- debian/changelog | 15 +++++++++++++++ rpm/dnscap.spec | 11 ++++++++++- 4 files changed, 39 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index e143e33..cf773e4 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,16 @@ +2023-06-27 Jerry Lundström + + Release 2.1.3 + + This release fixes a memory leak when using pattern matching options + `-x` or `-X`, the LDNS packet was not freed correctly. + + The processing of the LDNS packet during matching has also been + improved. + + 3990795 Test + ee5d554 Pattern match + 2023-06-15 Jerry Lundström Release 2.1.2 diff --git a/configure.ac b/configure.ac index de16a23..4abdce8 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,7 @@ # POSSIBILITY OF SUCH DAMAGE. AC_PREREQ(2.61) -AC_INIT([dnscap], [2.1.2], [dnscap-users@dns-oarc.net], [dnscap], [https://github.com/DNS-OARC/dnscap/issues]) +AC_INIT([dnscap], [2.1.3], [dnscap-users@dns-oarc.net], [dnscap], [https://github.com/DNS-OARC/dnscap/issues]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_SRCDIR([src/dnscap.c]) AC_CONFIG_HEADER([src/config.h]) diff --git a/debian/changelog b/debian/changelog index 365ec6d..c0f86d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +dnscap (2.1.3-1~unstable+1) unstable; urgency=low + + * Release 2.1.3 + + This release fixes a memory leak when using pattern matching options + `-x` or `-X`, the LDNS packet was not freed correctly. + + The processing of the LDNS packet during matching has also been + improved. + + 3990795 Test + ee5d554 Pattern match + + -- Jerry Lundström Tue, 27 Jun 2023 14:36:19 +0200 + dnscap (2.1.2-1~unstable+1) unstable; urgency=low * Release 2.1.2 diff --git a/rpm/dnscap.spec b/rpm/dnscap.spec index ba456e9..51d86aa 100644 --- a/rpm/dnscap.spec +++ b/rpm/dnscap.spec @@ -1,5 +1,5 @@ Name: dnscap -Version: 2.1.2 +Version: 2.1.3 Release: 1%{?dist} Summary: Network capture utility designed specifically for DNS traffic Group: Productivity/Networking/DNS/Utilities @@ -60,6 +60,15 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jun 27 2023 Jerry Lundström 2.1.3-1 +- Release 2.1.3 + * This release fixes a memory leak when using pattern matching options + `-x` or `-X`, the LDNS packet was not freed correctly. + * The processing of the LDNS packet during matching has also been + improved. + * Commits: + 3990795 Test + ee5d554 Pattern match * Thu Jun 15 2023 Jerry Lundström 2.1.2-1 - Release 2.1.2 * This release fixes reusing of TCP state during an out-of-memory event,