Skip to content

Commit

Permalink
(#11114) Release 0.0.4 - CHANGELOG.md and Modulefile update
Browse files Browse the repository at this point in the history
  • Loading branch information
saysjonathan authored and kbarber committed Dec 5, 2011
1 parent 46e9d1c commit 8bbe6e2
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
45 changes: 45 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Modulefile
@@ -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'
Expand Down

0 comments on commit 8bbe6e2

Please sign in to comment.