vcswatch reports that
this package seems to have new commits in its VCS but has
not yet updated debian/changelog. You should consider updating
the Debian changelog and uploading this new version into the archive.
Here are the relevant commit logs:
commit 2728028f03baa7222760ccc7709c43c38201ee6f
Author: Jeremy Sowden <azazel@debian.org>
Date: Wed Mar 4 14:59:25 2026 +0000
d/changelog: finalize entry for 1.8.13-1
Signed-off-by: Jeremy Sowden <azazel@debian.org>
commit f8c8906ea7310800e3348705cde36fc354fe7de4
Author: Jeremy Sowden <azazel@debian.org>
Date: Wed Mar 4 14:59:01 2026 +0000
d/patches: refresh patches
Signed-off-by: Jeremy Sowden <azazel@debian.org>
commit 9aaa7cbbb32933d49da13cfa68622a475c9a3c45
Author: Jeremy Sowden <azazel@debian.org>
Date: Wed Mar 4 14:54:02 2026 +0000
d/changelog: add entry for 1.8.13-1
Signed-off-by: Jeremy Sowden <azazel@debian.org>
commit 9a66a90715e1e808535fe34521c1207f289b10dd
Merge: e2a7319 73de0b7
Author: Jeremy Sowden <azazel@debian.org>
Date: Wed Mar 4 12:54:26 2026 +0000
Update upstream source from tag 'upstream/1.8.13'
Update to upstream version '1.8.13'
with Debian dir 4c9c56c121c1f465b3879e7d6e340bc49338f922
commit 73de0b789293fbf4b41a9fcb9969a80078660051
Merge: 5e6b0e4 afd5255
Author: Jeremy Sowden <azazel@debian.org>
Date: Wed Mar 4 12:54:12 2026 +0000
New upstream version 1.8.13
commit afd52551c98871b8ac0321eed8efa0845956037c
Author: Pablo Neira Ayuso <pablo@netfilter.org>
Date: Wed Mar 4 00:41:29 2026 +0100
configure: Bump version for 1.8.13 release
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
commit 6fff7039c06f0084ed35d7a73a6784ef0c12619e
Author: Florian Westphal <fw@strlen.de>
Date: Mon Feb 23 23:45:53 2026 +0100
Revert "libxtables: refuse to run under file capabilities"
This reverts commit a2a733e9f0da779bbe009736644f4481e22ca3d1.
The new iptables 1.8.12 release is broken on docker, pinpointed to the
getauxval() change that apparently can be nonzero in presence of LSMs.
That makes getauxval() useless for the purpose of detecting a setcap binary.
So revert this.
Bugzilla: https://bugzilla.netfilter.org/show_bug.cgi?id=1830
Signed-off-by: Florian Westphal <fw@strlen.de>
commit 342291e0ff56fb33bc62f9131ce2eab18d0b357d
Author: Rudi Heitbaum <rudi@heitbaum.com>
Date: Fri Feb 20 09:37:46 2026 +0000
src: fix discards 'const' qualifier
argv is passed by parse_change_counters_rule and do_parse to parse_rule_range
as a const char. parse_rule_range modifies thepassed in argv, so pass as
non const so that it can be modified without warning.
Fixes:
iptables/xshared.c: In function 'parse_rule_range':
iptables/xshared.c:912:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
912 | char *colon = strchr(argv, ':'), *buffer;
| ^~~~~~
p is used as the return from strchr(sctp_chunk_names[i].valid_flags)
which is a const char. Declare p as a const char * pointer for use
addressing the warning.
Fixes:
extensions/libxt_sctp.c: In function 'parse_sctp_chunk':
extensions/libxt_sctp.c:211:40: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
211 | if ((p = strchr(sctp_chunk_names[i].valid_flags,
| ^
next is used as the return from strchr(loop) which is a const char.
Declare next as a const char * pointer for use addressing the warning.
Fixes:
libxtables/xtables.c: In function 'xtables_ipparse_multiple':
libxtables/xtables.c:1767:22: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
1767 | next = strchr(loop, ',');
| ^
libxtables/xtables.c: In function 'xtables_ip6parse_multiple':
libxtables/xtables.c:2066:22: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
2066 | next = strchr(loop, ',');
| ^
Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
Signed-off-by: Florian Westphal <fw@strlen.de>