Skip to content

Commit 0b21a5a

Browse files
committed
Add CentOS/RHEL 7.9 to list of supported platforms (#39)
1 parent ad38570 commit 0b21a5a

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

CHANGELOG.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog
22

3+
## 0.4.0 (November 16, 2020)
34

4-
## 0.3.3 (Unreleased)
5+
DEPRECATION WARNING:
6+
7+
The ability to dynamically create App Protect security and log policies via Jinja2 templates will be removed in a future release, as they weren't used much due to relative inflexibility. The `nginx_app_protect_security_policy_file_enable`, `nginx_app_protect_security_policy_file_*`, `nginx_app_protect_log_policy_file_enable` and `nginx_app_protect_log_policy_file_*` variables should be used instead of the `nginx_app_protect_*_policy_template*` variables. These new variables have been introduced in this release.
58

69
ENHANCEMENTS:
710

@@ -10,15 +13,13 @@ ENHANCEMENTS:
1013
* Update Ansible (now Ansible base) to `2.10.2`, Ansible (now Ansible Community Distribution) to `2.10.0`, and yamllint to `1.25.0`.
1114
* Ability to deploy static security policy files via the `nginx_app_protect_security_policy_file_enable` and `nginx_app_protect_security_policy_file_*` variables. NOTE: `nginx_app_protect_configure` must be set to true.
1215
* Ability to deploy static log policy files via the `nginx_app_protect_log_policy_file_enable` and `nginx_app_protect_log_policy_file_*` variables. NOTE: `nginx_app_protect_configure` must be set to true.
13-
14-
DEPRECATION WARNING:
15-
* The ability to dynamically create App Protect security and log policies via Jinja2 templates will be removed in a future release, as they weren't used much due to relative inflexibility. The `nginx_app_protect_security_policy_file_enable`, `nginx_app_protect_security_policy_file_*`, `nginx_app_protect_log_policy_file_enable` and `nginx_app_protect_log_policy_file_*` variables should be used instead of the `nginx_app_protect_*_policy_template*` variables. These new variables have been introduced in this release.
16+
* Add CentOS/RHEL 7.9 to list of supported platforms.
1617

1718
## 0.3.2 (September 30, 2020)
1819

1920
BUG FIXES:
2021

21-
* Prevent TravisCI from trying to build (and failing) NGINX App Protect images on external PRs.
22+
Prevent TravisCI from trying to build (and failing) NGINX App Protect images on external PRs.
2223

2324
## 0.3.1 (September 22, 2020)
2425

@@ -30,7 +31,7 @@ FEATURES:
3031

3132
ENHANCEMENTS:
3233

33-
* Split the default Molecule scenario into a simple and advanced scenario to solve timeout issues encountered in TravisCI.
34+
Split the default Molecule scenario into a simple and advanced scenario to solve timeout issues encountered in TravisCI.
3435

3536
BUG FIXES:
3637

@@ -42,16 +43,16 @@ BUG FIXES:
4243

4344
DEPRECATION WARNING:
4445

45-
* The ability to create an NGINX config including some basic App Protect directives has migrated to the NGINX config role available [here](https://github.com/nginxinc/ansible-role-nginx-config). Any new issues or PRs related to configuring NGINX App Protect directives should be submitted in the new NGINX Config repository. New issues or PRs related to configuring NGINX App Protect directives submitted in this repository will not be worked on. The NGINX App Protect directives configuration functionalities included in this role will be removed in an upcoming release.
46+
The ability to create an NGINX config including some basic App Protect directives has migrated to the NGINX config role available [here](https://github.com/nginxinc/ansible-role-nginx-config). Any new issues or PRs related to configuring NGINX App Protect directives should be submitted in the new NGINX Config repository. New issues or PRs related to configuring NGINX App Protect directives submitted in this repository will not be worked on. The NGINX App Protect directives configuration functionalities included in this role will be removed in an upcoming release.
4647

4748
BREAKING CHANGES:
4849

49-
* `nginx_app_protect_delete_license` has been renamed to `nginx_app_protect_remove_license`.
50+
`nginx_app_protect_delete_license` has been renamed to `nginx_app_protect_remove_license`.
5051

5152
FEATURES:
5253

53-
* A new variable has been introduced:
54-
* `nginx_app_protect_setup_license` -- Determine whether you want to use this role to upload your NGINX App Protect license to your target host.
54+
A new variable has been introduced:
55+
* `nginx_app_protect_setup_license` -- Determine whether you want to use this role to upload your NGINX App Protect license to your target host.
5556

5657
ENHANCEMENTS:
5758

@@ -66,18 +67,18 @@ ENHANCEMENTS:
6667

6768
ENHANCEMENTS:
6869

69-
* Added molecule tests and verifications
70+
Added molecule tests and verifications.
7071

7172
BUG FIXES:
7273

73-
* Fixed newly appearing linting issues in role
74+
Fixed newly appearing linting issues in role.
7475

7576
## 0.2.1 (September 11, 2020)
7677

7778
ENHANCEMENTS:
7879

79-
* Bring docs up to speed with other NGINX roles
80-
* Move some default variables into the vars subfolder
80+
* Bring docs up to speed with other NGINX roles.
81+
* Move some default variables into the vars subfolder.
8182

8283
## 0.2.0 (September 10, 2020)
8384

@@ -106,4 +107,4 @@ BUG FIXES:
106107

107108
Supports App Protect 2.0, which brings a number of features including support for Ubuntu 18.04.
108109

109-
Release notes for NGINX App Protect 2.0: docs.nginx.com/nginx-app-protect/releases/#release-2-0
110+
Release notes for NGINX App Protect 2.0: docs.nginx.com/nginx-app-protect/releases/#release-2-0

vars/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Populate this dictionary of lists with appropriate values from ansible_facts['distribution'] and ansible_facts['distribution_version'] facts
33
nginx_app_protect_linux_families:
44
centos: [
5-
7.4, 7.5, 7.6, 7.7, 7.8,
5+
7.4, 7.5, 7.6, 7.7, 7.8, 7.9,
66
]
77
redhat: [
8-
7.4, 7.5, 7.6, 7.7, 7.8,
8+
7.4, 7.5, 7.6, 7.7, 7.8, 7.9,
99
]
1010
debian: [
1111
9.0, 9.1, 9.2, 9.3, 9.4, 9.5, 9.6, 9.7, 9.8, 9.9, 9.10, 9.11, 9.12, 9.13,

0 commit comments

Comments
 (0)