Skip to content

Commit d17ed4a

Browse files
authored
Version 1.3.0 - CHANGELOG.md [citest skip] (#95)
[1.3.0] - 2022-07-20 -------------------- ### New Features - Feature: add/update/delete services * Can add services by using the present state, with the specified details for the service (Permanent required) * Only required details are the service name using the service option, other options supported: * short, description, port, source port, protocol, module (helper_module), destination * remove services by using absent state and only the service name (no "detail" options) (Permanent required) * remove service elements by adding the elements and their values * service will not be removed if any of the removable elements are specified as well * update short and descriptions of services by using present state with the options while short or description are defined * Cannot remove short or descriptions * as with the rest of this feature, permanent is required to do this Fixes: #80 - Feature: Ansible facts with firewalld configuration * called by calling the firewall system role with either no parameters or with only the `detailed` parameter * fetches and returns ansible fact `firewall_config` * detailed in README.md, under ansible_fact section Fixes #82 ### Bug Fixes - bugfix: port forward dict form * fixed bug where port_forward argument only worked with string argument * additionally argument convert to list if necessary * minimal tests added for port forward * tests_port_forward.yml only has the fail case that the role fails Fixes: #85 ### Other Changes - make all tests work with gather_facts: false (#84) The tests_zone.yml test uses facts outside of the role and needs to `gather_facts: true` when using ANSIBLE_GATHERING=explicit - make min_ansible_version a string in meta/main.yml (#88) The Ansible developers say that `min_ansible_version` in meta/main.yml must be a `string` value like `"2.9"`, not a `float` value like `2.9`. - fix destination rendering in github markdown renderer Just make the problematic text a literal string so it won't get rendered incorrectly - Add CHANGELOG.md (#90) Signed-off-by: Rich Megginson <rmeggins@redhat.com>
1 parent 842fd33 commit d17ed4a

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

CHANGELOG.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,63 @@
11
Changelog
22
=========
33

4+
[1.3.0] - 2022-07-20
5+
--------------------
6+
7+
### New Features
8+
9+
- Feature: add/update/delete services
10+
11+
* Can add services by using the present state, with the specified details for the service (Permanent required)
12+
* Only required details are the service name using the service option, other options supported:
13+
* short, description, port, source port, protocol, module (helper_module), destination
14+
* remove services by using absent state and only the service name (no "detail" options) (Permanent required)
15+
* remove service elements by adding the elements and their values
16+
* service will not be removed if any of the removable elements are specified as well
17+
* update short and descriptions of services by using present state with the options while short or description are defined
18+
* Cannot remove short or descriptions
19+
* as with the rest of this feature, permanent is required to do this
20+
21+
Fixes: #80
22+
23+
- Feature: Ansible facts with firewalld configuration
24+
25+
* called by calling the firewall system role with either no parameters
26+
or with only the `detailed` parameter
27+
* fetches and returns ansible fact `firewall_config`
28+
* detailed in README.md, under ansible_fact section
29+
30+
Fixes #82
31+
32+
### Bug Fixes
33+
34+
- bugfix: port forward dict form
35+
36+
* fixed bug where port_forward argument only worked with string argument
37+
* additionally argument convert to list if necessary
38+
* minimal tests added for port forward
39+
* tests_port_forward.yml only has the fail case that the role fails
40+
41+
Fixes: #85
42+
43+
### Other Changes
44+
45+
- make all tests work with gather_facts: false (#84)
46+
47+
The tests_zone.yml test uses facts outside of the role and
48+
needs to `gather_facts: true` when using ANSIBLE_GATHERING=explicit
49+
50+
- make min_ansible_version a string in meta/main.yml (#88)
51+
52+
The Ansible developers say that `min_ansible_version` in meta/main.yml
53+
must be a `string` value like `"2.9"`, not a `float` value like `2.9`.
54+
55+
- fix destination rendering in github markdown renderer
56+
57+
Just make the problematic text a literal string so it won't get rendered incorrectly
58+
59+
- Add CHANGELOG.md (#90)
60+
461
[1.2.2] - 2022-06-02
562
--------------------
663

0 commit comments

Comments
 (0)