]> review.fuel-infra Code Review - puppet-modules/puppetlabs-firewall.git/commitdiff
(#11114) Release 0.0.4 - CHANGELOG.md and Modulefile update
authorJonathan Boyett <jonathan@failingservers.com>
Mon, 5 Dec 2011 19:48:00 +0000 (11:48 -0800)
committerKen Barber <ken@bob.sh>
Mon, 5 Dec 2011 22:48:24 +0000 (22:48 +0000)
CHANGELOG.md
Modulefile

index 8a1943f332a2d5a46ba01e79cc0cfde24fd6a84f..5933af93196fde1eacaacee26f20d27c27990b0b 100644 (file)
@@ -4,6 +4,51 @@ Release notes for puppetlabs-firewall module.
 
 ---------------------------------------
 
+#### 0.0.4 - 2011/12/05
+
+This release adds two new parameters, 'uid' and 'gid'. As a part of the owner module, these params allow you to specify a uid, username, gid, or group got a match:
+
+    firewall { '497 match uid':
+      port => '123',
+      proto => 'mangle',
+      chain => 'OUTPUT',
+      action => 'drop'
+      uid => '123'
+    }
+
+This release also adds value munging for the 'log_level', 'source', and 'destination' parameters. The 'source' and 'destination' now support hostnames:
+
+    firewall { '498 accept from puppetlabs.com':
+      port => '123',
+      proto => 'tcp',
+      source => 'puppetlabs.com',
+      action => 'accept'
+    }
+
+
+The 'log_level' parameter now supports using log level names, such as 'warn', 'debug', and 'panic':
+
+    firewall { '499 logging':
+      port => '123',
+      proto => 'udp',
+      log_level => 'debug',
+      action => 'drop'
+    }
+
+Additional changes include iptables and ip6tables version facts, general whitespace cleanup, and adding additional unit tests.
+
+##### Changes
+
+(#10957) add iptables_version and ip6tables_version facts
+(#11093) Improve log_level property so it converts names to numbers
+(#10723) Munge hostnames and IPs to IPs with CIDR
+(#10718) Add owner-match support
+(#10997) Add fixtures for ipencap
+(#11034) Whitespace cleanup
+(#10690) add port property support to ip6tables
+
+---------------------------------------
+
 #### 0.0.3 - 2011/11/12
 
 This release introduces a new parameter 'port' which allows you to set both
index a2aec52628c4d4484a3c61027504ff0bd6a4571b..0075920cd354e608e036f89599529451f3095dfd 100644 (file)
@@ -1,5 +1,5 @@
 name 'puppetlabs-firewall'
-version '0.0.3'
+version '0.0.4'
 source 'git://github.com/puppetlabs/puppetlabs-firewall.git'
 author 'puppetlabs'
 license 'ASL 2.0'