Skip to content

Commit

Permalink
Release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Nov 5, 2021
1 parent 1506ff3 commit 3217389
Show file tree
Hide file tree
Showing 40 changed files with 108 additions and 40 deletions.
23 changes: 23 additions & 0 deletions CHANGES
@@ -1,3 +1,26 @@
2021-11-05 Jerry Lundström

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

2020-10-23 Jerry Lundström

Release 1.4.3
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
@@ -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.
#
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -103,12 +103,13 @@ packetq -d -p8080 -w html/ -r pcap/
- Magnus Lundén [@ripoff](https://github.com/ripoff)
- Roger Murray [@romu42](https://github.com/romu42)
- Henrik Levkowetz [@levkowetz](https://github.com/levkowetz)
- Petr Špaček [@pspacek](https://github.com/pspacek)

See also the [full list of contributors](https://github.com/DNS-OARC/PacketQ/graphs/contributors).

## Copyright

Copyright (c) 2017-2020, OARC, Inc.
Copyright (c) 2017-2021, OARC, Inc.

Copyright (c) 2011-2017, IIS - The Internet Foundation in Sweden

Expand Down
2 changes: 1 addition & 1 deletion autogen.sh
@@ -1,6 +1,6 @@
#!/bin/sh -e
#
# 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.
#
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
@@ -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.
#
Expand All @@ -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], [admin@dns-oarc.net], [packetq], [https://github.com/DNS-OARC/packetq/issues])
AC_INIT([packetq], [1.5.0], [admin@dns-oarc.net], [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])
Expand Down
25 changes: 25 additions & 0 deletions debian/changelog
@@ -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 <lundstrom.jerry@gmail.com> Fri, 05 Nov 2021 14:02:24 +0100

packetq (1.4.3-1~unstable+1) unstable; urgency=low

* Release 1.4.3
Expand Down
4 changes: 2 additions & 2 deletions debian/copyright
Expand Up @@ -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 <lundstrom.jerry@gmail.com>
Copyright: 2021 Jerry Lundström <lundstrom.jerry@gmail.com>
License: GPLv3

Files: src/Murmur/MurmurHash3.*
Expand Down
21 changes: 20 additions & 1 deletion rpm/packetq.spec
@@ -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
Expand Down Expand Up @@ -54,6 +54,25 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Fri Nov 05 2021 Jerry Lundström <lundstrom.jerry@gmail.com> 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 <lundstrom.jerry@gmail.com> 1.4.3-1
- Release 1.4.3
* This release updates the DNS resource record types list with the new
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
@@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/dns.cpp
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/dns.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/icmp.cpp
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/icmp.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/output.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/packet_handler.cpp
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/packet_handler.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/packetq.cpp
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/packetq.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/pcap.cpp
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/pcap.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/reader.cpp
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/reader.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/refcountstring.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/regression-test.sh
@@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/segzip.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/server.cpp
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/server.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/sql.cpp
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/sql.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/tcp.cpp
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/tcp.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/test/Makefile.am
@@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/test/test1.sh
@@ -1,5 +1,5 @@
#!/bin/sh -e
# 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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/test/test2.sh
@@ -1,5 +1,5 @@
#!/bin/sh -e
# 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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/test/test3.sh
@@ -1,5 +1,5 @@
#!/bin/sh -e
# 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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/test/test4.sh
@@ -1,5 +1,5 @@
#!/bin/sh -e
# 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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/test/test5.sh
@@ -1,5 +1,5 @@
#!/bin/sh -e
# 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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/test/test6.sh
@@ -1,5 +1,5 @@
#!/bin/sh -e
# 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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/test/test7.sh
@@ -1,5 +1,5 @@
#!/bin/sh -e
# 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.
#
Expand Down
2 changes: 1 addition & 1 deletion src/variant.h
@@ -1,5 +1,5 @@
/*
* 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.
*
Expand Down

0 comments on commit 3217389

Please sign in to comment.