Skip to content

Commit 66584e6

Browse files
authored
Merge pull request #123 from jelu/release/1.7.2
Release 1.7.2
2 parents 67bd9ef + 9861294 commit 66584e6

File tree

4 files changed

+87
-2
lines changed

4 files changed

+87
-2
lines changed

CHANGES

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
2024-08-29 Jerry Lundström
2+
3+
Release 1.7.2
4+
5+
This patch release fixes various issues reported by CI/code analysis
6+
tools.
7+
8+
Fixes:
9+
- `RefCountString`: Use anonymous array for `data`
10+
- `sql`: Fix heap overflow [[sonarcloud](https://sonarcloud.io/project/issues?open=AZF-b0jIXv-Y5-GmvUlN&id=dns-oarc%3APacketQ)]
11+
- Fix CodeQL issues:
12+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/35
13+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/37
14+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/38
15+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/39
16+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/40
17+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/5
18+
19+
68b5385 Cleanup
20+
1dfd47b CodeQL, code format
21+
6224234 CodeQL fixes
22+
6771f3a Copyright
23+
3283c43 Heap overflow
24+
1ff69df Badges
25+
d4e93ec Workflow
26+
75283cc Doc
27+
25adefa Add CodeQL workflow for GitHub code scanning
28+
bb7be53 Fix COPR
29+
130
2022-06-02 Jerry Lundström
231

332
Release 1.7.1

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# along with PacketQ. If not, see <http://www.gnu.org/licenses/>.
1919

2020
AC_PREREQ(2.61)
21-
AC_INIT([packetq], [1.7.1], [[email protected]], [packetq], [https://github.com/DNS-OARC/packetq/issues])
21+
AC_INIT([packetq], [1.7.2], [[email protected]], [packetq], [https://github.com/DNS-OARC/packetq/issues])
2222
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
2323
AC_CONFIG_SRCDIR([src/packetq.cpp])
2424
AC_CONFIG_HEADER([src/config.h])

debian/changelog

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
packetq (1.7.2-1~unstable+1) unstable; urgency=low
2+
3+
* Release 1.7.2
4+
5+
This patch release fixes various issues reported by CI/code analysis
6+
tools.
7+
8+
Fixes:
9+
- `RefCountString`: Use anonymous array for `data`
10+
- `sql`: Fix heap overflow [[sonarcloud](https://sonarcloud.io/project/issues?open=AZF-b0jIXv-Y5-GmvUlN&id=dns-oarc%3APacketQ)]
11+
- Fix CodeQL issues:
12+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/35
13+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/37
14+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/38
15+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/39
16+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/40
17+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/5
18+
19+
68b5385 Cleanup
20+
1dfd47b CodeQL, code format
21+
6224234 CodeQL fixes
22+
6771f3a Copyright
23+
3283c43 Heap overflow
24+
1ff69df Badges
25+
d4e93ec Workflow
26+
75283cc Doc
27+
25adefa Add CodeQL workflow for GitHub code scanning
28+
bb7be53 Fix COPR
29+
30+
-- Jerry Lundström <[email protected]> Thu, 29 Aug 2024 13:50:01 +0200
31+
132
packetq (1.7.1-1~unstable+1) unstable; urgency=low
233

334
* Release 1.7.1

rpm/packetq.spec

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: packetq
2-
Version: 1.7.1
2+
Version: 1.7.2
33
Release: 1%{?dist}
44
Summary: A tool that provides a basic SQL-frontend to PCAP-files
55
Group: Productivity/Networking/DNS/Utilities
@@ -56,6 +56,31 @@ rm -rf $RPM_BUILD_ROOT
5656

5757

5858
%changelog
59+
* Thu Aug 29 2024 Jerry Lundström <[email protected]> 1.7.2-1
60+
- Release 1.7.2
61+
* This patch release fixes various issues reported by CI/code analysis
62+
tools.
63+
* Fixes:
64+
- `RefCountString`: Use anonymous array for `data`
65+
- `sql`: Fix heap overflow [[sonarcloud](https://sonarcloud.io/project/issues?open=AZF-b0jIXv-Y5-GmvUlN&id=dns-oarc%3APacketQ)]
66+
- Fix CodeQL issues:
67+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/35
68+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/37
69+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/38
70+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/39
71+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/40
72+
- https://github.com/DNS-OARC/PacketQ/security/code-scanning/5
73+
* Commits:
74+
68b5385 Cleanup
75+
1dfd47b CodeQL, code format
76+
6224234 CodeQL fixes
77+
6771f3a Copyright
78+
3283c43 Heap overflow
79+
1ff69df Badges
80+
d4e93ec Workflow
81+
75283cc Doc
82+
25adefa Add CodeQL workflow for GitHub code scanning
83+
bb7be53 Fix COPR
5984
* Thu Jun 02 2022 Jerry Lundström <[email protected]> 1.7.1-1
6085
- Release 1.7.1
6186
* This patch release fixes a bug in the domain name parsing that cuts

0 commit comments

Comments
 (0)