]> git.ipfire.org Git - thirdparty/ipset.git/commitdiff
ipset 7.0 released v7.0
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Sat, 27 Oct 2018 16:09:10 +0000 (18:09 +0200)
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Sat, 27 Oct 2018 16:09:10 +0000 (18:09 +0200)
ChangeLog
configure.ac
kernel/ChangeLog

index 916245e900091eaaf2341b62a8ad3dcca70f42a0..dab80da75be64afaed56695d051cb0a3b9d46c36 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+7.0
+  - Introduction of new commands and protocol version 7, updated
+    kernel include files
+  - Add compatibility support for async in pernet_operations
+  - Use more robust awk patterns to check for backward compatibility
+  - Prepare the ipset tool to handle multiple protocol version
+  - Fix warning message handling
+  - Correct to test null valued entry in hash:net6,port,net6 test
+  - Library reworked to support embedding ipset completely
+  - Add compatibility to support kvcalloc()
+  - Validate string type attributes in attr2data() (Stefano Brivio)
+  - manpage: Add comment about matching on destination MAC address
+    (Stefano Brivio)
+  - Add compatibility to support is_zero_ether_addr()
+  - Fix use-after-free in ipset_parse_name_compat() (Stefano Brivio)
+  - Fix leak in build_argv() on line parsing error (Stefano Brivio)
+  - Simplify return statement in ipset_mnl_query() (Stefano Brivio)
+  - tests/check_klog.sh: Try dmesg too, don't let shell terminate script
+    (Stefano Brivio)
+
 6.38
   - Fix API version number
 
index 1532997d8d02b1ae62233a987a9ad0b266c33c73..5a74e6ebf92ecefece9ceed3678b064950e8db3a 100644 (file)
@@ -1,5 +1,5 @@
 dnl Boilerplate
-AC_INIT([ipset], [6.38], [kadlec@blackhole.kfki.hu])
+AC_INIT([ipset], [7.0], [kadlec@blackhole.kfki.hu])
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CANONICAL_HOST
 AC_CONFIG_MACRO_DIR([m4])
index 3c7fbdc6ddeb5c7070e0be91ce16db21b1f0aa4f..8e8f607e791f48be328d03623e27f4047636295b 100644 (file)
@@ -1,3 +1,25 @@
+7.0
+  - Introduction of new commands and protocol version 7
+  - License cleanup: add SPDX license identifier to uapi header files with
+    no license (Greg Kroah-Hartman)
+  - net: Convert ip_set_net_ops (Kirill Tkhai)
+  - netfilter: Replace spin_is_locked() with lockdep (Lance Roy)
+  - Fix calling ip_set() macro at dumping
+  - Correct rcu_dereference() call in ip_set_put_comment()
+  - netfilter: ipset: fix ip_set_list allocation failure (Andrey Ryabinin)
+  - ipset: Make invalid MAC address checks consisten (Stefano Brivio)
+  - ipset: Allow matching on destination MAC address for mac and ipmac sets
+    (Stefano Brivio)
+  - netfilter: ipset: actually allow allowable CIDR 0 in hash:net,port,net
+    (Eric Westbrook)
+  - ipset: list:set: Decrease refcount synchronously on deletion and replace
+    (Stefano Brivio)
+  - netfilter: ipset: forbid family for hash:mac sets (Florent Fourcot)
+  - Limit max timeout value to (UINT_MAX >> 1)/MSEC_PER_SEC
+  - List timing out entries with "timeout 1" instead of zero timeout value
+    (Fixes bugzilla #1258)
+  - netfilter: xt_set: Check hook mask correctly (Serhey Popovych)
+
 6.37
   - netfilter: ipset: Use is_zero_ether_addr instead of static and memcmp
     (Joe Perches)