]> review.fuel-infra Code Review - puppet-modules/puppetlabs-firewall.git/commitdiff
(#10792) Release 0.0.3 - CHANGELOG and Modulefile update
authorKen Barber <ken@bob.sh>
Sat, 12 Nov 2011 23:27:54 +0000 (23:27 +0000)
committerKen Barber <ken@bob.sh>
Sun, 13 Nov 2011 00:14:24 +0000 (00:14 +0000)
CHANGELOG.md
Modulefile

index 4821aed55cf4310673d6a9e920182ac750d84b8c..8a1943f332a2d5a46ba01e79cc0cfde24fd6a84f 100644 (file)
@@ -4,6 +4,45 @@ Release notes for puppetlabs-firewall module.
 
 ---------------------------------------
 
+#### 0.0.3 - 2011/11/12
+
+This release introduces a new parameter 'port' which allows you to set both
+source and destination ports for a match:
+
+    firewall { "500 allow NTP requests":
+      port => "123",
+      proto => "udp",
+      action => "accept",
+    }
+
+We also have the limit parameter finally working:
+
+    firewall { "500 limit HTTP requests":
+      dport => 80,
+      proto => tcp,
+      limit => "60/sec",
+      burst => 30,
+      action => accept,
+    }
+
+State ordering has been fixed now, and more characters are allowed in the
+namevar:
+
+* Alphabetical
+* Numbers
+* Punctuation
+* Whitespace
+
+##### Changes
+
+* (#10693) Ensure -m limit is added for iptables when using 'limit' param
+* (#10690) Create new port property
+* (#10700) allow additional characters in comment string
+* (#9082) Sort iptables --state option values internally to keep it consistent across runs
+* (#10324) Remove extraneous whitespace from iptables rule line in spec tests
+
+---------------------------------------
+
 #### 0.0.2 - 2011/10/26
 
 This is largely a maintanence and cleanup release, but includes the ability to
index 5736175e9b32a513a9c4d64494af349da60ac809..a2aec52628c4d4484a3c61027504ff0bd6a4571b 100644 (file)
@@ -1,5 +1,5 @@
 name 'puppetlabs-firewall'
-version '0.0.2'
+version '0.0.3'
 source 'git://github.com/puppetlabs/puppetlabs-firewall.git'
 author 'puppetlabs'
 license 'ASL 2.0'