-
-
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.
Merge pull request #124 from jelu/release/1.7.2
Release/1.7.2
- Loading branch information
Showing
42 changed files
with
204 additions
and
78 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [ "develop", "master" ] | ||
pull_request: | ||
branches: [ "develop" ] | ||
schedule: | ||
- cron: "29 20 * * 3" | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ cpp ] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Packages (cpp) | ||
if: ${{ matrix.language == 'cpp' }} | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install --yes build-essential automake autoconf libtool pkg-config zlib1g-dev libmaxminddb-dev | ||
- name: Configure (cpp) | ||
if: ${{ matrix.language == 'cpp' }} | ||
run: | | ||
./autogen.sh | ||
./configure | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
queries: +security-and-quality | ||
|
||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v3 | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
with: | ||
category: "/language:${{ matrix.language }}" |
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-2022, OARC, Inc. | ||
# Copyright (c) 2017-2024 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.7.1], [[email protected]], [packetq], [https://github.com/DNS-OARC/packetq/issues]) | ||
AC_INIT([packetq], [1.7.2], [[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]) | ||
|
@@ -27,7 +27,10 @@ AC_CONFIG_HEADER([src/config.h]) | |
AC_PROG_CXX | ||
|
||
# Check --enable-warn-all | ||
AC_ARG_ENABLE([warn-all], [AS_HELP_STRING([--enable-warn-all], [Enable all compiler warnings])], [AX_CXXFLAGS_WARN_ALL()]) | ||
AC_ARG_ENABLE([warn-all], [AS_HELP_STRING([--enable-warn-all], [Enable all compiler warnings])], [ | ||
AX_CXXFLAGS_WARN_ALL() | ||
AS_VAR_APPEND(CXXFLAGS, [" -Wno-vla"]) | ||
]) | ||
|
||
# Check --with-extra-cxxflags | ||
AC_ARG_WITH([extra-cxxflags], [AS_HELP_STRING([--with-extra-cxxflags=CXXFLAGS], [Add extra CXXFLAGS])], [ | ||
|
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,34 @@ | ||
packetq (1.7.2-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.7.2 | ||
|
||
This patch release fixes various issues reported by CI/code analysis | ||
tools. | ||
|
||
Fixes: | ||
- `RefCountString`: Use anonymous array for `data` | ||
- `sql`: Fix heap overflow [[sonarcloud](https://sonarcloud.io/project/issues?open=AZF-b0jIXv-Y5-GmvUlN&id=dns-oarc%3APacketQ)] | ||
- Fix CodeQL issues: | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/35 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/37 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/38 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/39 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/40 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/5 | ||
|
||
68b5385 Cleanup | ||
1dfd47b CodeQL, code format | ||
6224234 CodeQL fixes | ||
6771f3a Copyright | ||
3283c43 Heap overflow | ||
1ff69df Badges | ||
d4e93ec Workflow | ||
75283cc Doc | ||
25adefa Add CodeQL workflow for GitHub code scanning | ||
bb7be53 Fix COPR | ||
|
||
-- Jerry Lundström <[email protected]> Thu, 29 Aug 2024 13:50:01 +0200 | ||
|
||
packetq (1.7.1-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 1.7.1 | ||
|
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,16 +1,12 @@ | ||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: drool | ||
Source: https://github.com/DNS-OARC/drool | ||
Upstream-Name: PacketQ | ||
Source: https://github.com/DNS-OARC/PacketQ | ||
|
||
Files: * | ||
Copyright: 2017-2022, OARC, Inc. | ||
Copyright: 2017-2024 OARC, Inc. | ||
2011-2017, IIS - The Internet Foundation in Sweden | ||
License: GPLv3 | ||
|
||
Files: debian/* | ||
Copyright: 2022 Jerry Lundström <[email protected]> | ||
License: GPLv3 | ||
|
||
Files: src/Murmur/MurmurHash3.* | ||
Copyright: Austin Appleby | ||
License: Public Domain | ||
|
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.7.1 | ||
Version: 1.7.2 | ||
Release: 1%{?dist} | ||
Summary: A tool that provides a basic SQL-frontend to PCAP-files | ||
Group: Productivity/Networking/DNS/Utilities | ||
|
@@ -56,6 +56,31 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Thu Aug 29 2024 Jerry Lundström <[email protected]> 1.7.2-1 | ||
- Release 1.7.2 | ||
* This patch release fixes various issues reported by CI/code analysis | ||
tools. | ||
* Fixes: | ||
- `RefCountString`: Use anonymous array for `data` | ||
- `sql`: Fix heap overflow [[sonarcloud](https://sonarcloud.io/project/issues?open=AZF-b0jIXv-Y5-GmvUlN&id=dns-oarc%3APacketQ)] | ||
- Fix CodeQL issues: | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/35 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/37 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/38 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/39 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/40 | ||
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/5 | ||
* Commits: | ||
68b5385 Cleanup | ||
1dfd47b CodeQL, code format | ||
6224234 CodeQL fixes | ||
6771f3a Copyright | ||
3283c43 Heap overflow | ||
1ff69df Badges | ||
d4e93ec Workflow | ||
75283cc Doc | ||
25adefa Add CodeQL workflow for GitHub code scanning | ||
bb7be53 Fix COPR | ||
* Thu Jun 02 2022 Jerry Lundström <[email protected]> 1.7.1-1 | ||
- Release 1.7.1 | ||
* This patch release fixes a bug in the domain name parsing that cuts | ||
|
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
Oops, something went wrong.