Skip to content

Commit

Permalink
Release 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Nov 2, 2021
1 parent abf8f0e commit 5a2201d
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
2021-11-02 Jerry Lundström

Release 2.8.0

This release fixes response handling for DNS-over-HTTPS when multiple
responses are received within the same receive cycle, and adds a new
option to suppress some of the normal and verbose output.

The network model within dnsperf and resperf can not process more then
one response at a time from a protocol module, so a buffer has been added
to the DNS-over-HTTPS module to handle this situation (this already exists
in all other modules).

The new option `-O suppress=<message,...>` can selectively suppress parts
of the normal and verbose output. Some of these messages might be
excessively displayed due to the network model and depending on what
protocol you use which makes usage harder then necessary. For example
during TCP connection stage, if you end-point is slow to establish
connection you will get a lot of output saying that the socket isn't ready
yet.

6a452b0 DoH response handling
e2828e7 Suppress

2021-09-17 Jerry Lundström

Release 2.7.1
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.

AC_PREREQ(2.64)
AC_INIT([dnsperf], [2.7.1], [[email protected]], [dnsperf], [https://github.com/DNS-OARC/dnsperf/issues])
AC_INIT([dnsperf], [2.8.0], [[email protected]], [dnsperf], [https://github.com/DNS-OARC/dnsperf/issues])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
AC_CONFIG_SRCDIR([src/dnsperf.c])
AC_CONFIG_HEADER([src/config.h])
Expand Down
26 changes: 26 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
dnsperf (2.8.0-1~unstable+1) unstable; urgency=low

* Release 2.8.0

This release fixes response handling for DNS-over-HTTPS when multiple
responses are received within the same receive cycle, and adds a new
option to suppress some of the normal and verbose output.

The network model within dnsperf and resperf can not process more then
one response at a time from a protocol module, so a buffer has been added
to the DNS-over-HTTPS module to handle this situation (this already exists
in all other modules).

The new option `-O suppress=<message,...>` can selectively suppress parts
of the normal and verbose output. Some of these messages might be
excessively displayed due to the network model and depending on what
protocol you use which makes usage harder then necessary. For example
during TCP connection stage, if you end-point is slow to establish
connection you will get a lot of output saying that the socket isn't ready
yet.

6a452b0 DoH response handling
e2828e7 Suppress

-- Jerry Lundström <[email protected]> Tue, 02 Nov 2021 10:49:07 +0100

dnsperf (2.7.1-1~unstable+1) unstable; urgency=low

* Release 2.7.1
Expand Down
21 changes: 20 additions & 1 deletion rpm/dnsperf.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dnsperf
Version: 2.7.1
Version: 2.8.0
Release: 1%{?dist}
Summary: DNS Performance Testing Tool
Group: Productivity/Networking/DNS/Utilities
Expand Down Expand Up @@ -95,6 +95,25 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Tue Nov 02 2021 Jerry Lundström <[email protected]> 2.8.0-1
- Release 2.8.0
* This release fixes response handling for DNS-over-HTTPS when multiple
responses are received within the same receive cycle, and adds a new
option to suppress some of the normal and verbose output.
* The network model within dnsperf and resperf can not process more then
one response at a time from a protocol module, so a buffer has been added
to the DNS-over-HTTPS module to handle this situation (this already exists
in all other modules).
* The new option `-O suppress=<message,...>` can selectively suppress parts
of the normal and verbose output. Some of these messages might be
excessively displayed due to the network model and depending on what
protocol you use which makes usage harder then necessary. For example
during TCP connection stage, if you end-point is slow to establish
connection you will get a lot of output saying that the socket isn't ready
yet.
* Commits:
6a452b0 DoH response handling
e2828e7 Suppress
* Fri Sep 17 2021 Jerry Lundström <[email protected]> 2.7.1-1
- Release 2.7.1
* This release fixes issues with constructing wire-format DNS when the
Expand Down

0 comments on commit 5a2201d

Please sign in to comment.