diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:22 +0000 |
commit | 38b7c80217c4e72b1d8988eb1e60bb6e77334114 (patch) | |
tree | 356e9fd3762877d07cde52d21e77070aeff7e789 /ansible_collections/community/digitalocean/CHANGELOG.rst | |
parent | Adding upstream version 7.7.0+dfsg. (diff) | |
download | ansible-38b7c80217c4e72b1d8988eb1e60bb6e77334114.tar.xz ansible-38b7c80217c4e72b1d8988eb1e60bb6e77334114.zip |
Adding upstream version 9.4.0+dfsg.upstream/9.4.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/community/digitalocean/CHANGELOG.rst')
-rw-r--r-- | ansible_collections/community/digitalocean/CHANGELOG.rst | 53 |
1 files changed, 52 insertions, 1 deletions
diff --git a/ansible_collections/community/digitalocean/CHANGELOG.rst b/ansible_collections/community/digitalocean/CHANGELOG.rst index 3f7009fc6..e3e543e73 100644 --- a/ansible_collections/community/digitalocean/CHANGELOG.rst +++ b/ansible_collections/community/digitalocean/CHANGELOG.rst @@ -5,6 +5,57 @@ Community DigitalOcean Release Notes .. contents:: Topics +v1.26.0 +======= + +Minor Changes +------------- + +- digital_ocean_kubernetes - add project_name parameter (https://github.com/ansible-collections/community.digitalocean/issues/264). + +Bugfixes +-------- + +- The C(project_name) parameter for many modules was used by alias C(project) internally in the codebase, but to work properly C(project_name) must be used in the code. Replace self.module.params.get("project") with self.module.params.get("project_name") (https://github.com/ansible-collections/community.digitalocean/issues/326). +- digital_ocean_kubernetes - module didn't return kubeconfig properly, return documentation was invalid. Fixed version returns data with the same structure all the time, also it is aligned with M(community.digitalocean.digital_ocean_kubernetes_info) documentation return data now. (https://github.com/ansible-collections/community.digitalocean/issues/322). + +v1.25.0 +======= + +Minor Changes +------------- + +- fix sanity tests (https://github.com/ansible-collections/community.digitalocean/issues/323). + +Bugfixes +-------- + +- inventory plugin - restore reading auth token from env variables (https://github.com/ansible-collections/community.digitalocean/pull/315). + +New Modules +----------- + +- digital_ocean_project_resource_info - Gather information about DigitalOcean Project Resources + +v1.24.0 +======= + +Minor Changes +------------- + +- documentation - use C(true) and C(false) for boolean values in documentation and examples (https://github.com/ansible-collections/community.digitalocean/issues/303). +- inventory plugin - drop C(api_token) in favor of C(oauth_token) for consistency (https://github.com/ansible-collections/community.digitalocean/issues/300). +- tests - add C(sanity), C(units), and C(psf/black) back on merge into C(main) (https://github.com/ansible-collections/community.digitalocean/pull/311). +- tests - drop Ansible 2.9 and Ansible Core 2.10 and 2.11 (https://github.com/ansible-collections/community.digitalocean/pull/310). +- tests - remove the daily runs (https://github.com/ansible-collections/community.digitalocean/pull/310). +- tests - run C(psf/black) across all files (https://github.com/ansible-collections/community.digitalocean/pull/310). +- tests - test against Ansible Core 2.12, 2.13, and 2.14 (https://github.com/ansible-collections/community.digitalocean/pull/310). + +Bugfixes +-------- + +- digital_ocean_domain - fix ``all_domains`` by using ``get_paginated_data`` to retrieve all of the domains in the account from the paginated domains api endpoint (https://github.com/ansible-collections/community.digitalocean/pull/307). + v1.23.0 ======= @@ -19,8 +70,8 @@ Minor Changes Bugfixes -------- -- inventory plugin - bugfix for baseurl parameter (https://github.com/ansible-collections/community.digitalocean/pull/297). - integration tests - add missing `environment` directive on pull request integration testing (https://github.com/ansible-collections/community.digitalocean/issues/293). +- inventory plugin - bugfix for baseurl parameter (https://github.com/ansible-collections/community.digitalocean/pull/297). v1.22.0 ======= |