From: Ken Barber Date: Sat, 12 Nov 2011 23:27:54 +0000 (+0000) Subject: (#10792) Release 0.0.3 - CHANGELOG and Modulefile update X-Git-Tag: v0.0.3^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=71c54d568330169d2bba4e625b462431860f89c4;p=puppet-modules%2Fpuppetlabs-firewall.git (#10792) Release 0.0.3 - CHANGELOG and Modulefile update --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 4821aed..8a1943f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Modulefile b/Modulefile index 5736175..a2aec52 100644 --- a/Modulefile +++ b/Modulefile @@ -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'