-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
69 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,10 @@ | |
# along with dnsjit. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
AC_PREREQ(2.64) | ||
AC_INIT([dnsjit], [1.2.3], [[email protected]], [dnsjit], [https://github.com/DNS-OARC/dnsjit/issues]) | ||
AC_INIT([dnsjit], [1.3.0], [[email protected]], [dnsjit], [https://github.com/DNS-OARC/dnsjit/issues]) | ||
AC_DEFINE([PACKAGE_MAJOR_VERSION], [1], [Define to the major version of this package.]) | ||
AC_DEFINE([PACKAGE_MINOR_VERSION], [2], [Define to the minor version of this package.]) | ||
AC_DEFINE([PACKAGE_PATCH_VERSION], [3], [Define to the patch version of this package.]) | ||
AC_DEFINE([PACKAGE_MINOR_VERSION], [3], [Define to the minor version of this package.]) | ||
AC_DEFINE([PACKAGE_PATCH_VERSION], [0], [Define to the patch version of this package.]) | ||
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) | ||
AC_CONFIG_SRCDIR([src/dnsjit.c]) | ||
AC_CONFIG_HEADER([src/config.h]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
dnsjit (1.3.0-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.3.0 | ||
|
||
This release adds `core.object.dns:reset()` to reset DNS objects so they | ||
can be reused correctly. | ||
|
||
Example scripts have been updated to reflect this along with correctly | ||
setting `includes_dnslen` for TCP packets. | ||
|
||
New example converter `pcap2tcpdns` added that can be used to create bin | ||
files for replaying with `dnsperf -B`. | ||
|
||
f0d0b39 pkg-config | ||
464a198 pcap2tcpdns | ||
b40ad6d example convertor from PCAP to TCP DNS format used by dnsperf -B option | ||
ac51bfd pkg-config | ||
198bae9 Copyright | ||
5a87e37 DNS reset, dnslen TCP | ||
f2d6b05 Doc | ||
265a577 COPR fix | ||
|
||
-- Jerry Lundström <[email protected]> Thu, 07 Dec 2023 09:52:18 +0100 | ||
|
||
dnsjit (1.2.3-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.2.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: dnsjit | ||
Version: 1.2.3 | ||
Version: 1.3.0 | ||
Release: 1%{?dist} | ||
Summary: Engine for capturing, parsing and replaying DNS | ||
Group: Productivity/Networking/DNS/Utilities | ||
|
@@ -85,6 +85,23 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Thu Dec 07 2023 Jerry Lundström <[email protected]> 1.3.0-1 | ||
- Release 1.3.0 | ||
* This release adds `core.object.dns:reset()` to reset DNS objects so they | ||
can be reused correctly. | ||
* Example scripts have been updated to reflect this along with correctly | ||
setting `includes_dnslen` for TCP packets. | ||
* New example converter `pcap2tcpdns` added that can be used to create bin | ||
files for replaying with `dnsperf -B`. | ||
* Commits: | ||
f0d0b39 pkg-config | ||
464a198 pcap2tcpdns | ||
b40ad6d example convertor from PCAP to TCP DNS format used by dnsperf -B option | ||
ac51bfd pkg-config | ||
198bae9 Copyright | ||
5a87e37 DNS reset, dnslen TCP | ||
f2d6b05 Doc | ||
265a577 COPR fix | ||
* Mon Mar 21 2022 Jerry Lundström <[email protected]> 1.2.3-1 | ||
- Release 1.2.3 | ||
* This patch release fixes compilation issues on FreeBSD for LLVM v12+. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters