You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Changelog
2
2
3
-
## 0.8.2 (Unreleased)
3
+
## 0.9.0 (Unreleased)
4
4
5
5
FEATURES:
6
6
@@ -14,11 +14,14 @@ FEATURES:
14
14
15
15
ENHANCEMENTS:
16
16
17
-
Bump the Ansible `community.general` collection to `6.2.0`, `community.crypto` collection to `2.10.0` and `community.docker` collection to `3.4.0`.
17
+
* Standardize code from dot to array notation to keep in with the standards set by the other roles in the Ansible NGINX core collection.
18
+
* Bump the minimum version of Ansible core required to run the role to `2.12` (`2.11` is no longer supported by Ansible).
19
+
* Bump the Ansible `community.general` collection to `6.2.0`, `community.crypto` collection to `2.10.0` and `community.docker` collection to `3.4.0`.
18
20
19
21
BUG FIXES:
20
22
21
-
The Alpine Linux `libelf` dependency is no longer automatically installed by NGINX App Protect DoS so we need to explicitly install it as a prerequisite.
23
+
* The Alpine Linux `libelf` dependency is no longer automatically installed by NGINX App Protect DoS so we need to explicitly install it as a prerequisite.
24
+
* The `ignore-tags` GitHub actions key does not exist. Replace it with the correct key, `tags-ignore`.
Copy file name to clipboardexpand all lines: README.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ If you wish to install NGINX App Protect WAF or NGINX App Protect DoS using this
20
20
21
21
### Ansible
22
22
23
-
* This role is developed and tested with [maintained](https://docs.ansible.com/ansible/devel/reference_appendices/release_and_maintenance.html) versions of Ansible core (above `2.11`).
23
+
* This role is developed and tested with [maintained](https://docs.ansible.com/ansible/devel/reference_appendices/release_and_maintenance.html) versions of Ansible core (above `2.12`).
24
24
* When using Ansible core, you will also need to install the following collections:
25
25
26
26
```yaml
@@ -50,13 +50,13 @@ If you wish to install NGINX App Protect WAF or NGINX App Protect DoS using this
50
50
* Instructions on how to install Molecule can be found in the [Molecule website](https://molecule.readthedocs.io/en/latest/installation.html). *You will also need to install the Molecule Docker driver.*
51
51
* To run the Molecule tests, you must copy your NGINX App Protect license to the role's [`files/license`](https://github.com/nginxinc/ansible-role-nginx-app-protect/blob/main/files/license/) folder.
52
52
53
-
You can alternatively add your NGINX App Protect repository certificate and key to the local environment. Run the following commands to export these files as base64-encoded variables and execute the Molecule tests:
53
+
You can alternatively add your NGINX App Protect repository certificate and key to the local environment. Run the following commands to export these files as base64-encoded variables and execute the Molecule tests:
54
54
55
-
```bash
56
-
export NGINX_CRT=$( cat <path to your certificate file> | base64 )
57
-
export NGINX_KEY=$( cat <path to your key file> | base64 )
58
-
molecule test
59
-
```
55
+
```bash
56
+
export NGINX_CRT=$( cat <path to your certificate file> | base64 )
57
+
export NGINX_KEY=$( cat <path to your key file> | base64 )
0 commit comments