-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
40 changed files
with
108 additions
and
40 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
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
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,4 +1,4 @@ | ||
# Copyright (c) 2017-2020, OARC, Inc. | ||
# Copyright (c) 2017-2021, OARC, Inc. | ||
# Copyright (c) 2011-2017, IIS - The Internet Foundation in Sweden | ||
# All rights reserved. | ||
# | ||
|
@@ -18,7 +18,7 @@ | |
# along with PacketQ. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
AC_PREREQ(2.61) | ||
AC_INIT([packetq], [1.4.3], [[email protected]], [packetq], [https://github.com/DNS-OARC/packetq/issues]) | ||
AC_INIT([packetq], [1.5.0], [[email protected]], [packetq], [https://github.com/DNS-OARC/packetq/issues]) | ||
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) | ||
AC_CONFIG_SRCDIR([src/packetq.cpp]) | ||
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,28 @@ | ||
packetq (1.5.0-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.5.0 | ||
|
||
This release fixes issues with CSV and JSON w.r.t. quoted strings. CSV | ||
output now conforms to RFC4180 and JSON output conforms to RFC8259. | ||
Also added a new option (`--rfc1035`) to output and quote domain names | ||
as described in RFC1035. | ||
|
||
Other changes: | ||
- Update debian control files | ||
- Fix typo in `--help` text | ||
- Fix OpenBSD clang++ compiler warnings | ||
- `Output::add_int()`: Fix potential memory overwrite | ||
|
||
8206e0f OpenBSD clang warnings | ||
6c1247f Code format | ||
d6c82d4 New option to escape DNS names | ||
2bf6f26 Fix typo in --help around --xml parameter | ||
9c95d15 Conform to CSV/JSON RFCs | ||
feb0596 debhelper | ||
be37ad0 Bye Travis | ||
|
||
-- Jerry Lundström <[email protected]> Fri, 05 Nov 2021 14:02:24 +0100 | ||
|
||
packetq (1.4.3-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.4.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 |
---|---|---|
|
@@ -3,12 +3,12 @@ Upstream-Name: drool | |
Source: https://github.com/DNS-OARC/drool | ||
|
||
Files: * | ||
Copyright: 2017-2020, OARC, Inc. | ||
Copyright: 2017-2021, OARC, Inc. | ||
2011-2017, IIS - The Internet Foundation in Sweden | ||
License: GPLv3 | ||
|
||
Files: debian/* | ||
Copyright: 2020 Jerry Lundström <[email protected]> | ||
Copyright: 2021 Jerry Lundström <[email protected]> | ||
License: GPLv3 | ||
|
||
Files: src/Murmur/MurmurHash3.* | ||
|
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: packetq | ||
Version: 1.4.3 | ||
Version: 1.5.0 | ||
Release: 1%{?dist} | ||
Summary: A tool that provides a basic SQL-frontend to PCAP-files | ||
Group: Productivity/Networking/DNS/Utilities | ||
|
@@ -54,6 +54,25 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Fri Nov 05 2021 Jerry Lundström <[email protected]> 1.5.0-1 | ||
- Release 1.5.0 | ||
* This release fixes issues with CSV and JSON w.r.t. quoted strings. CSV | ||
output now conforms to RFC4180 and JSON output conforms to RFC8259. | ||
Also added a new option (`--rfc1035`) to output and quote domain names | ||
as described in RFC1035. | ||
* Other changes: | ||
- Update debian control files | ||
- Fix typo in `--help` text | ||
- Fix OpenBSD clang++ compiler warnings | ||
- `Output::add_int()`: Fix potential memory overwrite | ||
* Commits: | ||
8206e0f OpenBSD clang warnings | ||
6c1247f Code format | ||
d6c82d4 New option to escape DNS names | ||
2bf6f26 Fix typo in --help around --xml parameter | ||
9c95d15 Conform to CSV/JSON RFCs | ||
feb0596 debhelper | ||
be37ad0 Bye Travis | ||
* Fri Oct 23 2020 Jerry Lundström <[email protected]> 1.4.3-1 | ||
- Release 1.4.3 | ||
* This release updates the DNS resource record types list with the new | ||
|
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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