diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fd6f1c08..ec0ba06a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,15 @@ Apache CloudStack Collection Release Notes .. contents:: Topics +v2.0.0 +====== + +Breaking Changes / Porting Guide +-------------------------------- + +- Authentication option using INI files e.g. ``cloudstack.ini`` has been removed. The only supported option to authenticate is by using the module params with fallback to the ENV variables. +- default zone deprecation - The `zone` param default value, across multiple modules, has been deprecated due to unreliable API (https://github.com/ngine-io/ansible-collection-cloudstack/pull/62). + v1.2.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index aa38f675..4e74b179 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -45,3 +45,15 @@ releases: - 49-cs_instance-fix-keyerror.yml - 54-cs_network-fix-constraints.yml release_date: '2021-02-02' + 2.0.0: + changes: + breaking_changes: + - Authentication option using INI files e.g. ``cloudstack.ini`` has been removed. + The only supported option to authenticate is by using the module params with + fallback to the ENV variables. + - default zone deprecation - The `zone` param default value, across multiple + modules, has been deprecated due to unreliable API (https://github.com/ngine-io/ansible-collection-cloudstack/pull/62). + fragments: + - 62-deprecate-default-zone.yml + - remove-ini-config.yml + release_date: '2021-02-02' diff --git a/changelogs/fragments/62-deprecate-default-zone.yml b/changelogs/fragments/62-deprecate-default-zone.yml deleted file mode 100644 index 7d160826..00000000 --- a/changelogs/fragments/62-deprecate-default-zone.yml +++ /dev/null @@ -1,2 +0,0 @@ -breaking_changes: - - default zone deprecation - The `zone` param default value, across multiple modules, has been deprecated due to unreliable API (https://github.com/ngine-io/ansible-collection-cloudstack/pull/62). diff --git a/galaxy.yml b/galaxy.yml index 45e4a9c9..8a85b226 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,6 +8,7 @@ authors: - "Marc-Aurèle Brothier (@marcaurele)" - "Jefferson Girão " - "Gregor Riepl (@onitake)" + - "Rafael del Valle (@rvalle)" dependencies: {} description: 'Ansible Collection for Apache CloudStack based clouds' documentation: '' @@ -22,4 +23,4 @@ tags: - cloud - cloudstack - ngine_io -version: 1.2.0 +version: 2.0.0 diff --git a/plugins/doc_fragments/remove-ini-config.yml b/plugins/doc_fragments/remove-ini-config.yml deleted file mode 100644 index 078c78f5..00000000 --- a/plugins/doc_fragments/remove-ini-config.yml +++ /dev/null @@ -1,3 +0,0 @@ -breaking_changes: - - Authentication option using INI files e.g. ``cloudstack.ini`` has been removed. The only supported option to authenticate - is by using the module params with fallback to the ENV variables.