]> granicus.if.org Git - ipset/commitdiff
ipset 5.1 released v5.1
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Wed, 22 Dec 2010 10:09:20 +0000 (11:09 +0100)
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Wed, 22 Dec 2010 10:09:20 +0000 (11:09 +0100)
ChangeLog
configure.ac
kernel/ChangeLog

index 41be470609e81e50132f4052ba97ff2a01797f8d..ef779ef6b520f137d249acbd9b99c8cc2e412116 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+5.1
+ - Test cases for IPv6 restore and more complex restore sessions added
+ - Restore mode did not work for IPv6, fixed (reported by Elie Rosenblum)
+ - libipset: static annotations (Jan Engelhardt)
+ - libipset: const annotations (Jan Engelhardt)
+ - libipset: remove redundant casts (Jan Engelhardt)
+ - libipset: remove redundant indirection via union name (Jan Engelhardt) 
+ - libipset: ipset_strncpy is really a strlcpy-type operation
+   (Jan Engelhardt)
+ - Prevent calling Makefile directly in the kernel/ subdirectory
+ - Put back the Sparc specific workaround at getaddrinfo
+   (reported by Jan Engelhardt)
+ - Check old system kernel header files
+ - Check from `configure` that the kernel source is patched with
+   netlink.patch
+ - Use configure to detect compiler warning flags
+ - Try to solve PKG_CHECK_MODULES issue (reported by Rob Sterenborg)
+ - Fix incorrect comparison in check_allowed (reported by Jan Engelhardt)
+
 5.0
  - New main branch - ipset completely rewritten
 
index a66610ec9ab771cdb6a37e55b53629460d87d083..0a79dc2025ebc40632a3da1bdff7bcdd9b76dc99 100644 (file)
@@ -1,5 +1,5 @@
 dnl Boilerplate
-AC_INIT([ipset], [5.0], [kadlec@blackhole.kfki.hu])
+AC_INIT([ipset], [5.1], [kadlec@blackhole.kfki.hu])
 AC_CANONICAL_TARGET
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_HEADER([config.h])
index b587dc86bd088850bc8f9d5adf882b0c786fd1c1..c302c2ab26c235cdaa3472ce1a96f88942f4c75a 100644 (file)
@@ -1,3 +1,16 @@
+5.1
+ - Kernel version compatibility: support bumped starting from 2.6.34
+   (Supporting older kernel releases would mean too much burden for me,
+   sorry.)
+ - kernel: use EXPORT_SYMBOL_GPL (Jan Engelhardt)
+ - kernel: const annotations (Jan Engelhardt)
+ - kernel: use __read_mostly for registration-type structures
+   (Jan Engelhardt)
+ - kernel: do not mix const and __read_mostly (Jan Engelhardt)
+ - xt_set: avoid user types in exported kernel headers (Jan Engelhardt)
+ - build: enable parallel building (Jan Engelhardt)
+ - Fix Kbuild for me to delete backup files
+
 5.0
  - New main branch - ipset completely rewritten