Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare release 3.0.0 #117

Merged
merged 4 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,31 @@ CHANGE THIS IN changelogs/config.yaml! Release Notes

.. contents:: Topics

v3.0.0
======

Release Summary
---------------

This release fixes bug on roles, remove support for ansible-core < 2.15.

Breaking Changes / Porting Guide
--------------------------------

- Bump minimum version requirement for ansible-core to 2.15 (https://github.com/redhat-cop/cloud.aws_ops/pull/114).
- 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).
- 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).

Minor Changes
-------------

- Bump version of ansible-lint to minimum 24.7.0 (https://github.com/redhat-cop/cloud.aws_ops/pull/114).
- Replace the postgres db engine version from 14.8 to 16.2

Bugfixes
--------

- Fix incorrect dict attribute in backup_select_resources role.

v2.0.0
======
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@ If you want to run cloud integration tests, ensure you log in to the cloud:
ansible-test integration [target]
```

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).
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).

## Contributing to this collection

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

## Support

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

## Release Notes

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


## Related Information
Expand Down
27 changes: 27 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,3 +198,30 @@ releases:
name: move_objects_between_buckets
namespace: null
release_date: '2023-11-20'
3.0.0:
changes:
breaking_changes:
- Bump minimum version requirement for ansible-core to 2.15 (https://github.com/redhat-cop/cloud.aws_ops/pull/114).
- 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).
- 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).
bugfixes:
- Fix incorrect dict attribute in backup_select_resources role.
minor_changes:
- Bump version of ansible-lint to minimum 24.7.0 (https://github.com/redhat-cop/cloud.aws_ops/pull/114).
- Replace the postgres db engine version from 14.8 to 16.2
release_summary: This release fixes bug on roles, remove support for ansible-core
< 2.15.
fragments:
- 114-bump-ansible-lint-version.yml
- 20231219-deploy_flask_app-update-arguments-spec.yml
- 3.0.0.yml
- backup_select_resource_bug_fix.yml
- doc_link_update.yml
- fix_rds_db_version.yml
- readme_template_update.yml
release_date: '2024-07-30'
5 changes: 0 additions & 5 deletions changelogs/fragments/114-bump-ansible-lint-version.yml

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/backup_select_resource_bug_fix.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/doc_link_update.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/fix_rds_db_version.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/readme_template_update.yml

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
community.aws: '>=5.0.0'
amazon.cloud: '>=0.4.0'
community.libvirt: '>=1.2.0'
version: 3.0.0-dev0
version: 3.0.0
build_ignore:
- .DS_Store
- '*.tar.gz'
Expand Down
2 changes: 1 addition & 1 deletion roles/awsconfig_multiregion_cloudtrail/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ License

GNU General Public License v3.0 or later

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

Author Information
------------------
Expand Down
Loading