Skip to content

Commit ac435b5

Browse files
committed
Prepare 0.7.0 release
1 parent 7075895 commit ac435b5

File tree

6 files changed

+35
-23
lines changed

6 files changed

+35
-23
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## 0.7.0 (October 17, 2022)
4+
5+
Update `nginx` role to `0.23.2`, `nginx_config` role to `0.5.2`, and `nginx_app_protect` role to `0.8.1`. Check each role's respective CHANGELOG to see what's changed since the latest NGINX collection release:
6+
7+
* Ansible NGINX role's [changelog](https://github.com/nginxinc/ansible-role-nginx/blob/0.23.2/CHANGELOG.md)
8+
* Ansible NGINX config role's [changelog](https://github.com/nginxinc/ansible-role-nginx-config/blob/0.5.2/CHANGELOG.md)
9+
* Ansible NGINX App Protect role's [changelog](https://github.com/nginxinc/ansible-role-nginx-app-protect/blob/0.8.1/CHANGELOG.md)
10+
311
## 0.6.0 (April 7, 2022)
412

513
Update `nginx` role to `0.23.1`, `nginx_config` role to `0.5.1`, and `nginx_app_protect` role to `0.8.0`. Check each role's respective CHANGELOG to see what's changed since the latest NGINX collection release:

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ The Ansible NGINX collection includes a variety of NGINX Ansible roles to help a
1111

1212
## Included Content
1313

14-
The current stable release (`0.6.0`) of the Ansible NGINX collection includes the following roles:
14+
The current stable release (`0.7.0`) of the Ansible NGINX collection includes the following roles:
1515

1616
| Name | Description | Version |
1717
| ---- | ----------- | ------- |
18-
| [nginxinc.nginx](https://github.com/nginxinc/ansible-role-nginx) | Install NGINX | 0.23.1 |
19-
| [nginxinc.nginx_config](https://github.com/nginxinc/ansible-role-nginx-config) | Configure NGINX | 0.5.1 |
20-
| [nginxinc.nginx_app_protect](https://github.com/nginxinc/ansible-role-nginx-app-protect) | Install and configure NGINX App Protect | 0.8.0 |
18+
| [nginxinc.nginx](https://github.com/nginxinc/ansible-role-nginx) | Install NGINX | 0.23.2 |
19+
| [nginxinc.nginx_config](https://github.com/nginxinc/ansible-role-nginx-config) | Configure NGINX | 0.5.2 |
20+
| [nginxinc.nginx_app_protect](https://github.com/nginxinc/ansible-role-nginx-app-protect) | Install and configure NGINX App Protect | 0.8.1 |
2121

2222
## Requirements
2323

@@ -34,15 +34,17 @@ If you wish to install NGINX App Protect WAF or NGINX App Protect DoS using this
3434
* This collection 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`).
3535
* When using Ansible core, you will also need to install the following collections:
3636

37-
```yaml
37+
```yaml
3838
---
3939
collections:
40-
- name: community.general
41-
version: 4.6.0
4240
- name: ansible.posix
43-
version: 1.3.0
41+
version: 1.4.0
42+
- name: community.crypto
43+
version: 2.5.0
44+
- name: community.general
45+
version: 5.5.0
4446
- name: community.docker # Only required if you plan to use Molecule (see below)
45-
version: 2.3.0
47+
version: 3.1.0
4648
```
4749
4850
**Note:** You can alternatively install the Ansible community distribution (what is known as the "old" Ansible) if you don't want to manage individual collections.
@@ -81,7 +83,7 @@ You can also include the collection in a `requirements.yml` file and install it
8183
---
8284
collections:
8385
- name: nginxinc.nginx_core
84-
version: 0.6.0
86+
version: 0.7.0
8587
```
8688

8789
### Git
@@ -110,8 +112,6 @@ To update the roles included in this collection to their latest version, run `gi
110112

111113
## Other NGINX Ansible Collections and Roles
112114

113-
You can find the Ansible NGINX Controller collection of roles to install and configure NGINX Controller [here](https://github.com/nginxinc/ansible-collection-nginx_controller).
114-
115115
You can find the Ansible NGINX Unit role to install NGINX Unit [here](https://github.com/nginxinc/ansible-role-nginx-unit).
116116

117117
## License
@@ -122,4 +122,4 @@ You can find the Ansible NGINX Unit role to install NGINX Unit [here](https://gi
122122

123123
[Alessandro Fael Garcia](https://github.com/alessfg)
124124

125-
© [F5 Networks, Inc.](https://www.f5.com/) 2020 - 2022
125+
© [F5, Inc.](https://www.f5.com/) 2020 - 2022

galaxy.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,21 @@
22
namespace: nginxinc
33
name: nginx_core
44
description: Install and configure NGINX and NGINX App Protect using Ansible
5-
version: 0.6.0
5+
version: 0.7.0
66
readme: README.md
77
license_file: LICENSE
88
authors:
99
- Alessandro Fael Garcia <[email protected]>
10-
- Daniel Edgar <[email protected]>
10+
11+
dependencies:
12+
ansible.posix: ">=1.4.0"
13+
community.crypto: ">=2.5.0"
14+
community.general: ">=5.5.0"
15+
16+
repository: https://github.com/nginxinc/ansible-collection-nginx
17+
homepage: https://github.com/nginxinc/ansible-collection-nginx
18+
documentation: https://github.com/nginxinc/ansible-collection-nginx/blob/main/README.md
19+
issues: https://github.com/nginxinc/ansible-collection-nginx/issues
1120

1221
tags:
1322
- nginx
@@ -30,8 +39,3 @@ tags:
3039
- infrastructure
3140
- cloud
3241
- monitoring
33-
34-
repository: https://github.com/nginxinc/ansible-collection-nginx
35-
homepage: https://github.com/nginxinc/ansible-collection-nginx
36-
documentation: https://github.com/nginxinc/ansible-collection-nginx/blob/main/README.md
37-
issues: https://github.com/nginxinc/ansible-collection-nginx/issues

roles/nginx

Submodule nginx updated from e9939ac to 285b745

roles/nginx_config

0 commit comments

Comments
 (0)