From 1e48aa4c2ccd8c1d7efe28c42c421bc49ec442e3 Mon Sep 17 00:00:00 2001 From: Mandar Kulkarni Date: Mon, 29 Jul 2024 17:01:15 -0700 Subject: [PATCH 1/4] prepare release 3.0.0 --- CHANGELOG.rst | 25 +++++++++++++++++ changelogs/changelog.yaml | 27 +++++++++++++++++++ .../114-bump-ansible-lint-version.yml | 5 ---- ...deploy_flask_app-update-arguments-spec.yml | 10 ------- .../backup_select_resource_bug_fix.yml | 3 --- changelogs/fragments/doc_link_update.yml | 3 --- changelogs/fragments/fix_rds_db_version.yml | 3 --- .../fragments/readme_template_update.yml | 3 --- galaxy.yml | 2 +- 9 files changed, 53 insertions(+), 28 deletions(-) delete mode 100644 changelogs/fragments/114-bump-ansible-lint-version.yml delete mode 100644 changelogs/fragments/20231219-deploy_flask_app-update-arguments-spec.yml delete mode 100644 changelogs/fragments/backup_select_resource_bug_fix.yml delete mode 100644 changelogs/fragments/doc_link_update.yml delete mode 100644 changelogs/fragments/fix_rds_db_version.yml delete mode 100644 changelogs/fragments/readme_template_update.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b172bffa..e160f5cd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 1c82d967..d9d10d6a 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -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-29' diff --git a/changelogs/fragments/114-bump-ansible-lint-version.yml b/changelogs/fragments/114-bump-ansible-lint-version.yml deleted file mode 100644 index 3099991b..00000000 --- a/changelogs/fragments/114-bump-ansible-lint-version.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -minor_changes: - - Bump version of ansible-lint to minimum 24.7.0 (https://github.com/redhat-cop/cloud.aws_ops/pull/114). -breaking_changes: - - Bump minimum version requirement for ansible-core to 2.15 (https://github.com/redhat-cop/cloud.aws_ops/pull/114). diff --git a/changelogs/fragments/20231219-deploy_flask_app-update-arguments-spec.yml b/changelogs/fragments/20231219-deploy_flask_app-update-arguments-spec.yml deleted file mode 100644 index a629aa91..00000000 --- a/changelogs/fragments/20231219-deploy_flask_app-update-arguments-spec.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -breaking_changes: - - >- - 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). diff --git a/changelogs/fragments/backup_select_resource_bug_fix.yml b/changelogs/fragments/backup_select_resource_bug_fix.yml deleted file mode 100644 index 90c02cf1..00000000 --- a/changelogs/fragments/backup_select_resource_bug_fix.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - Fix incorrect dict attribute in backup_select_resources role. diff --git a/changelogs/fragments/doc_link_update.yml b/changelogs/fragments/doc_link_update.yml deleted file mode 100644 index 93b98cef..00000000 --- a/changelogs/fragments/doc_link_update.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - update README to use relative links and fix the incorrect links. diff --git a/changelogs/fragments/fix_rds_db_version.yml b/changelogs/fragments/fix_rds_db_version.yml deleted file mode 100644 index 47adf9ac..00000000 --- a/changelogs/fragments/fix_rds_db_version.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - Replace the postgres db engine version from 14.8 to 16.2 diff --git a/changelogs/fragments/readme_template_update.yml b/changelogs/fragments/readme_template_update.yml deleted file mode 100644 index 421756ad..00000000 --- a/changelogs/fragments/readme_template_update.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - Update the README doc to match https://access.redhat.com/articles/7068606. diff --git a/galaxy.yml b/galaxy.yml index 77574f51..b664d758 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -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' From 12477d1cccbf870371bc54650df1ec578d426bf2 Mon Sep 17 00:00:00 2001 From: Mandar Kulkarni Date: Tue, 30 Jul 2024 11:14:32 -0700 Subject: [PATCH 2/4] update doc links to stable-3 from main --- README.md | 6 +++--- roles/awsconfig_multiregion_cloudtrail/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d8e8609d..c09feaec 100644 --- a/README.md +++ b/README.md @@ -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/stable-3/main/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/stable-3/main/CONTRIBUTING.md) for more details. ## Support @@ -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/stable-3/main/CHANGELOG.rst). ## Related Information diff --git a/roles/awsconfig_multiregion_cloudtrail/README.md b/roles/awsconfig_multiregion_cloudtrail/README.md index d5527799..d2e85a0f 100644 --- a/roles/awsconfig_multiregion_cloudtrail/README.md +++ b/roles/awsconfig_multiregion_cloudtrail/README.md @@ -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/stable-3/main/LICENSE) to see the full text. Author Information ------------------ From bcbf209e48920263642dcda3dfa970d6516d2fdd Mon Sep 17 00:00:00 2001 From: Mandar Kulkarni Date: Tue, 30 Jul 2024 11:50:39 -0700 Subject: [PATCH 3/4] release date fix --- changelogs/changelog.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index d9d10d6a..2f391b0c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -224,4 +224,4 @@ releases: - doc_link_update.yml - fix_rds_db_version.yml - readme_template_update.yml - release_date: '2024-07-29' + release_date: '2024-07-30' From 75db70a47953a42e4019e63782054ca735131ae8 Mon Sep 17 00:00:00 2001 From: Mandar Kulkarni Date: Tue, 30 Jul 2024 11:57:07 -0700 Subject: [PATCH 4/4] minor fix --- README.md | 6 +++--- roles/awsconfig_multiregion_cloudtrail/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c09feaec..b4a412d0 100644 --- a/README.md +++ b/README.md @@ -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/stable-3/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/stable-3/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 @@ -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/stable-3/main/CHANGELOG.rst). +See the [raw generated changelog](https://github.com/redhat-cop//cloud.aws_ops/blob/stable-3/CHANGELOG.rst). ## Related Information diff --git a/roles/awsconfig_multiregion_cloudtrail/README.md b/roles/awsconfig_multiregion_cloudtrail/README.md index d2e85a0f..0f4e1a6e 100644 --- a/roles/awsconfig_multiregion_cloudtrail/README.md +++ b/roles/awsconfig_multiregion_cloudtrail/README.md @@ -48,7 +48,7 @@ License GNU General Public License v3.0 or later -See [LICENSE](https://github.com/ansible-collections/cloud.aws_ops/stable-3/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 ------------------