Skip to content

Commit

Permalink
Release 1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Aug 20, 2020
1 parent 34b6d2e commit ba6dc1b
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
2020-08-20 Jerry Lundström

Release 1.11.1

This release fixes a lot of issues found by code analysis, adds a
explicit memory zeroing function to remove account information (read
when dropping privileges) and adds code coverage reporting.

The `dnscap_memzero()` will use `explicit_bzero()` on FreeBSD and
OpenBSD, or `memset_s()` (if supported), otherwise it will manually
set the memory to zero. This will hopefully ensure that the memory
is zeroed as compilers can optimize out `memset()`'s that is just
before `free()`.

The plugins exit code for the help option `-?` has been changed to 0
to have the same as `dnscap -?`.

d9747ee memzero
1cf17c6 Coverage
19c7120 Coverage
7435676 Sonarcloud
928e181 Sonarcloud
ca4afd0 Sonarcloud
028f5e0 Badges
db0d6a1 LGTM

2020-06-01 Jerry Lundström

Release 1.11.0
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# POSSIBILITY OF SUCH DAMAGE.

AC_PREREQ(2.61)
AC_INIT([dnscap], [1.11.0], [[email protected]], [dnscap], [https://github.com/DNS-OARC/dnscap/issues])
AC_INIT([dnscap], [1.11.1], [[email protected]], [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])
Expand Down
28 changes: 28 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
dnscap (1.11.1-1~unstable+1) unstable; urgency=low

* Release 1.11.1

This release fixes a lot of issues found by code analysis, adds a
explicit memory zeroing function to remove account information (read
when dropping privileges) and adds code coverage reporting.

The `dnscap_memzero()` will use `explicit_bzero()` on FreeBSD and
OpenBSD, or `memset_s()` (if supported), otherwise it will manually
set the memory to zero. This will hopefully ensure that the memory
is zeroed as compilers can optimize out `memset()`'s that is just
before `free()`.

The plugins exit code for the help option `-?` has been changed to 0
to have the same as `dnscap -?`.

d9747ee memzero
1cf17c6 Coverage
19c7120 Coverage
7435676 Sonarcloud
928e181 Sonarcloud
ca4afd0 Sonarcloud
028f5e0 Badges
db0d6a1 LGTM

-- Jerry Lundström <[email protected]> Thu, 20 Aug 2020 13:30:48 +0200

dnscap (1.11.0-1~unstable+1) unstable; urgency=low

* Release 1.11.0
Expand Down
23 changes: 22 additions & 1 deletion rpm/dnscap.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dnscap
Version: 1.11.0
Version: 1.11.1
Release: 1%{?dist}
Summary: Network capture utility designed specifically for DNS traffic
Group: Productivity/Networking/DNS/Utilities
Expand Down Expand Up @@ -60,6 +60,27 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Thu Aug 20 2020 Jerry Lundström <[email protected]> 1.11.1-1
- Release 1.11.1
* This release fixes a lot of issues found by code analysis, adds a
explicit memory zeroing function to remove account information (read
when dropping privileges) and adds code coverage reporting.
* The `dnscap_memzero()` will use `explicit_bzero()` on FreeBSD and
OpenBSD, or `memset_s()` (if supported), otherwise it will manually
set the memory to zero. This will hopefully ensure that the memory
is zeroed as compilers can optimize out `memset()`'s that is just
before `free()`.
* The plugins exit code for the help option `-?` has been changed to 0
to have the same as `dnscap -?`.
* Commits:
d9747ee memzero
1cf17c6 Coverage
19c7120 Coverage
7435676 Sonarcloud
928e181 Sonarcloud
ca4afd0 Sonarcloud
028f5e0 Badges
db0d6a1 LGTM
* Mon Jun 01 2020 Jerry Lundström <[email protected]> 1.11.0-1
- Release 1.11.0
* This release includes a new plugin called `eventlog`, contributed
Expand Down

0 comments on commit ba6dc1b

Please sign in to comment.