From 332ba8166c07d4bf81639e8c19eb37f89ffbd5df Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 21 Dec 2020 14:25:46 +0100 Subject: [PATCH] Release 1.3.1. --- CHANGELOG.rst | 34 +++++++++++ changelogs/changelog.yaml | 59 +++++++++++++++++++ changelogs/fragments/1.3.1.yml | 1 - .../1399-fixed-wrong-elements-type.yaml | 2 - .../fragments/1415-valmod_req_mismatch.yml | 2 - .../fragments/1419-xfconf-return-values.yaml | 2 - .../fragments/1423-valmod_multiple_cases.yml | 6 -- .../1425_bitbucket_pipeline_variable.yml | 2 - .../1436-mas-fix-no-app-installed.yml | 3 - ...tack-fix-put_file-to-preserve-checksum.yml | 2 - ...perty-name-in-redfish-memory-inventory.yml | 2 - changelogs/fragments/1504_jira.yml | 2 - .../1516-ldap_entry-improvements.yaml | 2 - changelogs/fragments/320_unsafe_text.yml | 2 - changelogs/fragments/331_keycloak.yml | 2 - .../335-icinga2_host-return-error-code.yaml | 2 - .../630-git_config-handling-invalid-dir.yaml | 2 - changelogs/fragments/638_cobbler_py3.yml | 2 - ...er-43-docker_container-device_requests.yml | 2 - ...x_parsing_array_values_in_osx_defaults.yml | 2 - .../nios_host_record-fix-aliases-removal.yml | 3 - 21 files changed, 93 insertions(+), 43 deletions(-) delete mode 100644 changelogs/fragments/1.3.1.yml delete mode 100644 changelogs/fragments/1399-fixed-wrong-elements-type.yaml delete mode 100644 changelogs/fragments/1415-valmod_req_mismatch.yml delete mode 100644 changelogs/fragments/1419-xfconf-return-values.yaml delete mode 100644 changelogs/fragments/1423-valmod_multiple_cases.yml delete mode 100644 changelogs/fragments/1425_bitbucket_pipeline_variable.yml delete mode 100644 changelogs/fragments/1436-mas-fix-no-app-installed.yml delete mode 100644 changelogs/fragments/1472-saltstack-fix-put_file-to-preserve-checksum.yml delete mode 100644 changelogs/fragments/1484-fix-property-name-in-redfish-memory-inventory.yml delete mode 100644 changelogs/fragments/1504_jira.yml delete mode 100644 changelogs/fragments/1516-ldap_entry-improvements.yaml delete mode 100644 changelogs/fragments/320_unsafe_text.yml delete mode 100644 changelogs/fragments/331_keycloak.yml delete mode 100644 changelogs/fragments/335-icinga2_host-return-error-code.yaml delete mode 100644 changelogs/fragments/630-git_config-handling-invalid-dir.yaml delete mode 100644 changelogs/fragments/638_cobbler_py3.yml delete mode 100644 changelogs/fragments/community.docker-43-docker_container-device_requests.yml delete mode 100644 changelogs/fragments/fix_parsing_array_values_in_osx_defaults.yml delete mode 100644 changelogs/fragments/nios_host_record-fix-aliases-removal.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b11bbb784e..2aa188cc15 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,40 @@ Community General Release Notes .. contents:: Topics +v1.3.1 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Bugfixes +-------- + +- bigpanda - removed the dynamic default for ``host`` param (https://github.com/ansible-collections/community.general/pull/1423). +- bitbucket_pipeline_variable - change pagination logic for pipeline variable get API (https://github.com/ansible-collections/community.general/issues/1425). +- cobbler inventory script - add Python 3 support (https://github.com/ansible-collections/community.general/issues/638). +- docker_container - the validation for ``capabilities`` in ``device_requests`` was incorrect (https://github.com/ansible-collections/community.docker/issues/42, https://github.com/ansible-collections/community.docker/pull/43). +- git_config - now raises an error for non-existent repository paths (https://github.com/ansible-collections/community.general/issues/630). +- icinga2_host - fix returning error codes (https://github.com/ansible-collections/community.general/pull/335). +- jira - provide error message raised from exception (https://github.com/ansible-collections/community.general/issues/1504). +- json_query - handle ``AnsibleUnicode`` and ``AnsibleUnsafeText`` (https://github.com/ansible-collections/community.general/issues/320). +- keycloak module_utils - provide meaningful error message to user when auth URL does not start with http or https (https://github.com/ansible-collections/community.general/issues/331). +- ldap_entry - improvements in documentation, simplifications and replaced code with better ``AnsibleModule`` arguments (https://github.com/ansible-collections/community.general/pull/1516). +- mas - fix ``invalid literal`` when no app can be found (https://github.com/ansible-collections/community.general/pull/1436). +- nios_host_record - fix to remove ``aliases`` (CNAMES) for configuration comparison (https://github.com/ansible-collections/community.general/issues/1335). +- osx_defaults - unquote values and unescape double quotes when reading array values (https://github.com/ansible-collections/community.general/pull/358). +- profitbricks_nic - removed the dynamic default for ``name`` param (https://github.com/ansible-collections/community.general/pull/1423). +- profitbricks_nic - replaced code with ``required`` and ``required_if`` (https://github.com/ansible-collections/community.general/pull/1423). +- redfish_info module, redfish_utils module utils - correct ``PartNumber`` property name in Redfish ``GetMemoryInventory`` command (https://github.com/ansible-collections/community.general/issues/1483). +- saltstack connection plugin - use ``hashutil.base64_decodefile`` to ensure that the file checksum is preserved (https://github.com/ansible-collections/community.general/pull/1472). +- udm_user - removed the dynamic default for ``userexpiry`` param (https://github.com/ansible-collections/community.general/pull/1423). +- utm_network_interface_address - changed param type from invalid 'boolean' to valid 'bool' (https://github.com/ansible-collections/community.general/pull/1423). +- utm_proxy_exception - four parameters had elements types set as 'string' (invalid), changed to 'str' (https://github.com/ansible-collections/community.general/pull/1399). +- vmadm - simplification of code (https://github.com/ansible-collections/community.general/pull/1415). +- xfconf - add in missing return values that are specified in the documentation (https://github.com/ansible-collections/community.general/issues/1418). + v1.3.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 223b6f075a..d923a4f07d 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1568,3 +1568,62 @@ releases: name: proxmox_user_info namespace: cloud.misc release_date: '2020-11-26' + 1.3.1: + changes: + bugfixes: + - bigpanda - removed the dynamic default for ``host`` param (https://github.com/ansible-collections/community.general/pull/1423). + - bitbucket_pipeline_variable - change pagination logic for pipeline variable + get API (https://github.com/ansible-collections/community.general/issues/1425). + - cobbler inventory script - add Python 3 support (https://github.com/ansible-collections/community.general/issues/638). + - docker_container - the validation for ``capabilities`` in ``device_requests`` + was incorrect (https://github.com/ansible-collections/community.docker/issues/42, + https://github.com/ansible-collections/community.docker/pull/43). + - git_config - now raises an error for non-existent repository paths (https://github.com/ansible-collections/community.general/issues/630). + - icinga2_host - fix returning error codes (https://github.com/ansible-collections/community.general/pull/335). + - jira - provide error message raised from exception (https://github.com/ansible-collections/community.general/issues/1504). + - json_query - handle ``AnsibleUnicode`` and ``AnsibleUnsafeText`` (https://github.com/ansible-collections/community.general/issues/320). + - keycloak module_utils - provide meaningful error message to user when auth + URL does not start with http or https (https://github.com/ansible-collections/community.general/issues/331). + - ldap_entry - improvements in documentation, simplifications and replaced code + with better ``AnsibleModule`` arguments (https://github.com/ansible-collections/community.general/pull/1516). + - mas - fix ``invalid literal`` when no app can be found (https://github.com/ansible-collections/community.general/pull/1436). + - nios_host_record - fix to remove ``aliases`` (CNAMES) for configuration comparison + (https://github.com/ansible-collections/community.general/issues/1335). + - osx_defaults - unquote values and unescape double quotes when reading array + values (https://github.com/ansible-collections/community.general/pull/358). + - profitbricks_nic - removed the dynamic default for ``name`` param (https://github.com/ansible-collections/community.general/pull/1423). + - profitbricks_nic - replaced code with ``required`` and ``required_if`` (https://github.com/ansible-collections/community.general/pull/1423). + - redfish_info module, redfish_utils module utils - correct ``PartNumber`` property + name in Redfish ``GetMemoryInventory`` command (https://github.com/ansible-collections/community.general/issues/1483). + - saltstack connection plugin - use ``hashutil.base64_decodefile`` to ensure + that the file checksum is preserved (https://github.com/ansible-collections/community.general/pull/1472). + - udm_user - removed the dynamic default for ``userexpiry`` param (https://github.com/ansible-collections/community.general/pull/1423). + - utm_network_interface_address - changed param type from invalid 'boolean' + to valid 'bool' (https://github.com/ansible-collections/community.general/pull/1423). + - utm_proxy_exception - four parameters had elements types set as 'string' (invalid), + changed to 'str' (https://github.com/ansible-collections/community.general/pull/1399). + - vmadm - simplification of code (https://github.com/ansible-collections/community.general/pull/1415). + - xfconf - add in missing return values that are specified in the documentation + (https://github.com/ansible-collections/community.general/issues/1418). + release_summary: Regular bugfix release. + fragments: + - 1.3.1.yml + - 1399-fixed-wrong-elements-type.yaml + - 1415-valmod_req_mismatch.yml + - 1419-xfconf-return-values.yaml + - 1423-valmod_multiple_cases.yml + - 1425_bitbucket_pipeline_variable.yml + - 1436-mas-fix-no-app-installed.yml + - 1472-saltstack-fix-put_file-to-preserve-checksum.yml + - 1484-fix-property-name-in-redfish-memory-inventory.yml + - 1504_jira.yml + - 1516-ldap_entry-improvements.yaml + - 320_unsafe_text.yml + - 331_keycloak.yml + - 335-icinga2_host-return-error-code.yaml + - 630-git_config-handling-invalid-dir.yaml + - 638_cobbler_py3.yml + - community.docker-43-docker_container-device_requests.yml + - fix_parsing_array_values_in_osx_defaults.yml + - nios_host_record-fix-aliases-removal.yml + release_date: '2020-12-21' diff --git a/changelogs/fragments/1.3.1.yml b/changelogs/fragments/1.3.1.yml deleted file mode 100644 index 1b14bd80d1..0000000000 --- a/changelogs/fragments/1.3.1.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. diff --git a/changelogs/fragments/1399-fixed-wrong-elements-type.yaml b/changelogs/fragments/1399-fixed-wrong-elements-type.yaml deleted file mode 100644 index 29b09aff3b..0000000000 --- a/changelogs/fragments/1399-fixed-wrong-elements-type.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- utm_proxy_exception - four parameters had elements types set as 'string' (invalid), changed to 'str' (https://github.com/ansible-collections/community.general/pull/1399). diff --git a/changelogs/fragments/1415-valmod_req_mismatch.yml b/changelogs/fragments/1415-valmod_req_mismatch.yml deleted file mode 100644 index 66e3026710..0000000000 --- a/changelogs/fragments/1415-valmod_req_mismatch.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - vmadm - simplification of code (https://github.com/ansible-collections/community.general/pull/1415). diff --git a/changelogs/fragments/1419-xfconf-return-values.yaml b/changelogs/fragments/1419-xfconf-return-values.yaml deleted file mode 100644 index 6d3b4eb67b..0000000000 --- a/changelogs/fragments/1419-xfconf-return-values.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- xfconf - add in missing return values that are specified in the documentation (https://github.com/ansible-collections/community.general/issues/1418). diff --git a/changelogs/fragments/1423-valmod_multiple_cases.yml b/changelogs/fragments/1423-valmod_multiple_cases.yml deleted file mode 100644 index 97276a7cb1..0000000000 --- a/changelogs/fragments/1423-valmod_multiple_cases.yml +++ /dev/null @@ -1,6 +0,0 @@ -bugfixes: - - utm_network_interface_address - changed param type from invalid 'boolean' to valid 'bool' (https://github.com/ansible-collections/community.general/pull/1423). - - bigpanda - removed the dynamic default for ``host`` param (https://github.com/ansible-collections/community.general/pull/1423). - - udm_user - removed the dynamic default for ``userexpiry`` param (https://github.com/ansible-collections/community.general/pull/1423). - - profitbricks_nic - removed the dynamic default for ``name`` param (https://github.com/ansible-collections/community.general/pull/1423). - - profitbricks_nic - replaced code with ``required`` and ``required_if`` (https://github.com/ansible-collections/community.general/pull/1423). diff --git a/changelogs/fragments/1425_bitbucket_pipeline_variable.yml b/changelogs/fragments/1425_bitbucket_pipeline_variable.yml deleted file mode 100644 index b284ca54d3..0000000000 --- a/changelogs/fragments/1425_bitbucket_pipeline_variable.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- bitbucket_pipeline_variable - change pagination logic for pipeline variable get API (https://github.com/ansible-collections/community.general/issues/1425). diff --git a/changelogs/fragments/1436-mas-fix-no-app-installed.yml b/changelogs/fragments/1436-mas-fix-no-app-installed.yml deleted file mode 100644 index 4db32a1a91..0000000000 --- a/changelogs/fragments/1436-mas-fix-no-app-installed.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "mas - fix ``invalid literal`` when no app can be found (https://github.com/ansible-collections/community.general/pull/1436)." diff --git a/changelogs/fragments/1472-saltstack-fix-put_file-to-preserve-checksum.yml b/changelogs/fragments/1472-saltstack-fix-put_file-to-preserve-checksum.yml deleted file mode 100644 index 7db884a7f2..0000000000 --- a/changelogs/fragments/1472-saltstack-fix-put_file-to-preserve-checksum.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - saltstack connection plugin - use ``hashutil.base64_decodefile`` to ensure that the file checksum is preserved (https://github.com/ansible-collections/community.general/pull/1472). diff --git a/changelogs/fragments/1484-fix-property-name-in-redfish-memory-inventory.yml b/changelogs/fragments/1484-fix-property-name-in-redfish-memory-inventory.yml deleted file mode 100644 index 445cae58c0..0000000000 --- a/changelogs/fragments/1484-fix-property-name-in-redfish-memory-inventory.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - redfish_info module, redfish_utils module utils - correct ``PartNumber`` property name in Redfish ``GetMemoryInventory`` command (https://github.com/ansible-collections/community.general/issues/1483). diff --git a/changelogs/fragments/1504_jira.yml b/changelogs/fragments/1504_jira.yml deleted file mode 100644 index 2db8aad3ea..0000000000 --- a/changelogs/fragments/1504_jira.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- jira - provide error message raised from exception (https://github.com/ansible-collections/community.general/issues/1504). diff --git a/changelogs/fragments/1516-ldap_entry-improvements.yaml b/changelogs/fragments/1516-ldap_entry-improvements.yaml deleted file mode 100644 index 3ea7e6c3ef..0000000000 --- a/changelogs/fragments/1516-ldap_entry-improvements.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - ldap_entry - improvements in documentation, simplifications and replaced code with better ``AnsibleModule`` arguments (https://github.com/ansible-collections/community.general/pull/1516). diff --git a/changelogs/fragments/320_unsafe_text.yml b/changelogs/fragments/320_unsafe_text.yml deleted file mode 100644 index aa0621d085..0000000000 --- a/changelogs/fragments/320_unsafe_text.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- json_query - handle ``AnsibleUnicode`` and ``AnsibleUnsafeText`` (https://github.com/ansible-collections/community.general/issues/320). diff --git a/changelogs/fragments/331_keycloak.yml b/changelogs/fragments/331_keycloak.yml deleted file mode 100644 index 99c6474212..0000000000 --- a/changelogs/fragments/331_keycloak.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- keycloak module_utils - provide meaningful error message to user when auth URL does not start with http or https (https://github.com/ansible-collections/community.general/issues/331). diff --git a/changelogs/fragments/335-icinga2_host-return-error-code.yaml b/changelogs/fragments/335-icinga2_host-return-error-code.yaml deleted file mode 100644 index 26e2d2f5c9..0000000000 --- a/changelogs/fragments/335-icinga2_host-return-error-code.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - icinga2_host - fix returning error codes (https://github.com/ansible-collections/community.general/pull/335). diff --git a/changelogs/fragments/630-git_config-handling-invalid-dir.yaml b/changelogs/fragments/630-git_config-handling-invalid-dir.yaml deleted file mode 100644 index 538a463160..0000000000 --- a/changelogs/fragments/630-git_config-handling-invalid-dir.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- git_config - now raises an error for non-existent repository paths (https://github.com/ansible-collections/community.general/issues/630). diff --git a/changelogs/fragments/638_cobbler_py3.yml b/changelogs/fragments/638_cobbler_py3.yml deleted file mode 100644 index 9c18c87ba7..0000000000 --- a/changelogs/fragments/638_cobbler_py3.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- cobbler inventory script - add Python 3 support (https://github.com/ansible-collections/community.general/issues/638). diff --git a/changelogs/fragments/community.docker-43-docker_container-device_requests.yml b/changelogs/fragments/community.docker-43-docker_container-device_requests.yml deleted file mode 100644 index 4c2a805aca..0000000000 --- a/changelogs/fragments/community.docker-43-docker_container-device_requests.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_container - the validation for ``capabilities`` in ``device_requests`` was incorrect (https://github.com/ansible-collections/community.docker/issues/42, https://github.com/ansible-collections/community.docker/pull/43)." diff --git a/changelogs/fragments/fix_parsing_array_values_in_osx_defaults.yml b/changelogs/fragments/fix_parsing_array_values_in_osx_defaults.yml deleted file mode 100644 index aa6788df85..0000000000 --- a/changelogs/fragments/fix_parsing_array_values_in_osx_defaults.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - osx_defaults - unquote values and unescape double quotes when reading array values (https://github.com/ansible-collections/community.general/pull/358). diff --git a/changelogs/fragments/nios_host_record-fix-aliases-removal.yml b/changelogs/fragments/nios_host_record-fix-aliases-removal.yml deleted file mode 100644 index 3003c78429..0000000000 --- a/changelogs/fragments/nios_host_record-fix-aliases-removal.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - nios_host_record - fix to remove ``aliases`` (CNAMES) for configuration comparison (https://github.com/ansible-collections/community.general/issues/1335).