Skip to content

Commit ee60cd7

Browse files
authored
prepare release 3.0.0 (#117)
* prepare release 3.0.0 * update doc links to stable-3 from main * release date fix * minor fix
1 parent 2f0c04a commit ee60cd7

11 files changed

+57
-32
lines changed

CHANGELOG.rst

+25
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,31 @@ CHANGE THIS IN changelogs/config.yaml! Release Notes
44

55
.. contents:: Topics
66

7+
v3.0.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This release fixes bug on roles, remove support for ansible-core < 2.15.
14+
15+
Breaking Changes / Porting Guide
16+
--------------------------------
17+
18+
- Bump minimum version requirement for ansible-core to 2.15 (https://github.com/redhat-cop/cloud.aws_ops/pull/114).
19+
- roles/deploy_flask_app - Add parameter ``deploy_flask_app_bastion_ssh_private_key`` to define the path to the ssh private key file to use to connect to the bastion host (https://github.com/redhat-cop/cloud.aws_ops/issues/109).
20+
- roles/deploy_flask_app - The following parameters no longer required have been removed ``deploy_flask_app_bastion_host_required_packages``, ``deploy_flask_app_local_registry_port``, ``deploy_flask_app_local_registry_pwd``, ``deploy_flask_app_local_registry_user``, ``deploy_flask_app_git_repository`` (https://github.com/redhat-cop/cloud.aws_ops/issues/103).
21+
22+
Minor Changes
23+
-------------
24+
25+
- Bump version of ansible-lint to minimum 24.7.0 (https://github.com/redhat-cop/cloud.aws_ops/pull/114).
26+
- Replace the postgres db engine version from 14.8 to 16.2
27+
28+
Bugfixes
29+
--------
30+
31+
- Fix incorrect dict attribute in backup_select_resources role.
732

833
v2.0.0
934
======

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,12 @@ If you want to run cloud integration tests, ensure you log in to the cloud:
146146
ansible-test integration [target]
147147
```
148148

149-
This collection is tested using GitHub Actions. To know more about CI, refer to [CI.md](https://github.com/https://github.com/redhat-cop/cloud.aws_ops/blob/main/CI.md).
149+
This collection is tested using GitHub Actions. To know more about CI, refer to [CI.md](https://github.com/https://github.com/redhat-cop//cloud.aws_ops/blob/stable-3/CI.md).
150150

151151
## Contributing to this collection
152152

153153
We welcome community contributions to this collection. If you find problems, please open an issue or create a PR against this collection repository.
154-
See [CONTRIBUTING.md](https://github.com/redhat-cop/cloud.aws_ops/blob/main/CONTRIBUTING.md) for more details.
154+
See [CONTRIBUTING.md](https://github.com/redhat-cop//cloud.aws_ops/blob/stable-3/CONTRIBUTING.md) for more details.
155155

156156
## Support
157157

@@ -163,7 +163,7 @@ If you encounter issues or have questions, you can submit a support request thro
163163

164164
## Release Notes
165165

166-
See the [raw generated changelog](https://github.com/redhat-cop/cloud.aws_ops/blob/main/CHANGELOG.rst).
166+
See the [raw generated changelog](https://github.com/redhat-cop//cloud.aws_ops/blob/stable-3/CHANGELOG.rst).
167167

168168

169169
## Related Information

changelogs/changelog.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -198,3 +198,30 @@ releases:
198198
name: move_objects_between_buckets
199199
namespace: null
200200
release_date: '2023-11-20'
201+
3.0.0:
202+
changes:
203+
breaking_changes:
204+
- Bump minimum version requirement for ansible-core to 2.15 (https://github.com/redhat-cop/cloud.aws_ops/pull/114).
205+
- roles/deploy_flask_app - Add parameter ``deploy_flask_app_bastion_ssh_private_key``
206+
to define the path to the ssh private key file to use to connect to the bastion
207+
host (https://github.com/redhat-cop/cloud.aws_ops/issues/109).
208+
- roles/deploy_flask_app - The following parameters no longer required have
209+
been removed ``deploy_flask_app_bastion_host_required_packages``, ``deploy_flask_app_local_registry_port``,
210+
``deploy_flask_app_local_registry_pwd``, ``deploy_flask_app_local_registry_user``,
211+
``deploy_flask_app_git_repository`` (https://github.com/redhat-cop/cloud.aws_ops/issues/103).
212+
bugfixes:
213+
- Fix incorrect dict attribute in backup_select_resources role.
214+
minor_changes:
215+
- Bump version of ansible-lint to minimum 24.7.0 (https://github.com/redhat-cop/cloud.aws_ops/pull/114).
216+
- Replace the postgres db engine version from 14.8 to 16.2
217+
release_summary: This release fixes bug on roles, remove support for ansible-core
218+
< 2.15.
219+
fragments:
220+
- 114-bump-ansible-lint-version.yml
221+
- 20231219-deploy_flask_app-update-arguments-spec.yml
222+
- 3.0.0.yml
223+
- backup_select_resource_bug_fix.yml
224+
- doc_link_update.yml
225+
- fix_rds_db_version.yml
226+
- readme_template_update.yml
227+
release_date: '2024-07-30'

changelogs/fragments/114-bump-ansible-lint-version.yml

-5
This file was deleted.

changelogs/fragments/20231219-deploy_flask_app-update-arguments-spec.yml

-10
This file was deleted.

changelogs/fragments/backup_select_resource_bug_fix.yml

-3
This file was deleted.

changelogs/fragments/doc_link_update.yml

-3
This file was deleted.

changelogs/fragments/fix_rds_db_version.yml

-3
This file was deleted.

changelogs/fragments/readme_template_update.yml

-3
This file was deleted.

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
community.aws: '>=5.0.0'
2222
amazon.cloud: '>=0.4.0'
2323
community.libvirt: '>=1.2.0'
24-
version: 3.0.0-dev0
24+
version: 3.0.0
2525
build_ignore:
2626
- .DS_Store
2727
- '*.tar.gz'

roles/awsconfig_multiregion_cloudtrail/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ License
4848

4949
GNU General Public License v3.0 or later
5050

51-
See [LICENSE](https://github.com/ansible-collections/cloud.aws_ops/blob/main/LICENSE) to see the full text.
51+
See [LICENSE](https://github.com/ansible-collections//cloud.aws_ops/blob/stable-3/LICENSE) to see the full text.
5252

5353
Author Information
5454
------------------

0 commit comments

Comments
 (0)