diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 313f7027fc..e5462f4172 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,28 @@ Community General Release Notes .. contents:: Topics +v1.3.5 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Bugfixes +-------- + +- dnsmadeeasy - fix HTTP 400 errors when creating a TXT record (https://github.com/ansible-collections/community.general/issues/1237). +- docker_container - allow IPv6 zones (RFC 4007) in bind IPs (https://github.com/ansible-collections/community.docker/pull/66). +- docker_image - fix crash on loading images with versions of Docker SDK for Python before 2.5.0 (https://github.com/ansible-collections/community.docker/issues/72, https://github.com/ansible-collections/community.docker/pull/73). +- homebrew - add default search path for ``brew`` on Apple silicon hardware (https://github.com/ansible-collections/community.general/pull/1679). +- homebrew_cask - add default search path for ``brew`` on Apple silicon hardware (https://github.com/ansible-collections/community.general/pull/1679). +- homebrew_tap - add default search path for ``brew`` on Apple silicon hardware (https://github.com/ansible-collections/community.general/pull/1679). +- lldp - use ``get_bin_path`` to locate the ``lldpctl`` executable (https://github.com/ansible-collections/community.general/pull/1643). +- onepassword lookup plugin - updated to support password items, which place the password field directly in the payload's ``details`` attribute (https://github.com/ansible-collections/community.general/pull/1610). +- passwordstore lookup plugin - fix compatibility with gopass when used with ``create=true``. While pass returns 1 on a non-existent password, gopass returns 10, or 11, depending on whether a similar named password was stored. We now just check standard output and that the return code is not zero (https://github.com/ansible-collections/community.general/pull/1589). +- terraform - improve result code checking when executing terraform commands (https://github.com/ansible-collections/community.general/pull/1632). + v1.3.4 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 3f3911840a..8cb857a7c2 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1815,3 +1815,38 @@ releases: - 1614_npm.yml - cve_bitbucket_pipeline_variable.yml release_date: '2021-01-14' + 1.3.5: + changes: + bugfixes: + - dnsmadeeasy - fix HTTP 400 errors when creating a TXT record (https://github.com/ansible-collections/community.general/issues/1237). + - docker_container - allow IPv6 zones (RFC 4007) in bind IPs (https://github.com/ansible-collections/community.docker/pull/66). + - docker_image - fix crash on loading images with versions of Docker SDK for + Python before 2.5.0 (https://github.com/ansible-collections/community.docker/issues/72, + https://github.com/ansible-collections/community.docker/pull/73). + - homebrew - add default search path for ``brew`` on Apple silicon hardware + (https://github.com/ansible-collections/community.general/pull/1679). + - homebrew_cask - add default search path for ``brew`` on Apple silicon hardware + (https://github.com/ansible-collections/community.general/pull/1679). + - homebrew_tap - add default search path for ``brew`` on Apple silicon hardware + (https://github.com/ansible-collections/community.general/pull/1679). + - lldp - use ``get_bin_path`` to locate the ``lldpctl`` executable (https://github.com/ansible-collections/community.general/pull/1643). + - onepassword lookup plugin - updated to support password items, which place + the password field directly in the payload's ``details`` attribute (https://github.com/ansible-collections/community.general/pull/1610). + - passwordstore lookup plugin - fix compatibility with gopass when used with + ``create=true``. While pass returns 1 on a non-existent password, gopass returns + 10, or 11, depending on whether a similar named password was stored. We now + just check standard output and that the return code is not zero (https://github.com/ansible-collections/community.general/pull/1589). + - terraform - improve result code checking when executing terraform commands + (https://github.com/ansible-collections/community.general/pull/1632). + release_summary: Regular bugfix release. + fragments: + - 1.3.5.yml + - 1589-passwordstore-fix-passwordstore.py-to-be-compatible-with-gopass.yaml + - 1610-bugfix-onepassword-lookup-plugin.yaml + - 1632-using_check_rc_in_terraform.yml + - 1654-dnsmadeeasy-http-400-fixes.yaml + - 1679-homebrew_search_path.yml + - community.docker-66-ipv6-zones.yml + - community.docker-73-docker_image-fix-old-docker-py-version.yml + - lldp-use-get_bin_path-to-locate-the-lldpctl-executable.yaml + release_date: '2021-01-26' diff --git a/changelogs/fragments/1.3.5.yml b/changelogs/fragments/1.3.5.yml deleted file mode 100644 index 1b14bd80d1..0000000000 --- a/changelogs/fragments/1.3.5.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. diff --git a/changelogs/fragments/1589-passwordstore-fix-passwordstore.py-to-be-compatible-with-gopass.yaml b/changelogs/fragments/1589-passwordstore-fix-passwordstore.py-to-be-compatible-with-gopass.yaml deleted file mode 100644 index 8a781f4a90..0000000000 --- a/changelogs/fragments/1589-passwordstore-fix-passwordstore.py-to-be-compatible-with-gopass.yaml +++ /dev/null @@ -1,5 +0,0 @@ -bugfixes: - - passwordstore lookup plugin - fix compatibility with gopass when used with - ``create=true``. While pass returns 1 on a non-existent password, gopass - returns 10, or 11, depending on whether a similar named password was stored. - We now just check standard output and that the return code is not zero (https://github.com/ansible-collections/community.general/pull/1589). diff --git a/changelogs/fragments/1610-bugfix-onepassword-lookup-plugin.yaml b/changelogs/fragments/1610-bugfix-onepassword-lookup-plugin.yaml deleted file mode 100644 index d3220a2c71..0000000000 --- a/changelogs/fragments/1610-bugfix-onepassword-lookup-plugin.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "onepassword lookup plugin - updated to support password items, which place the password field directly in the payload's ``details`` attribute (https://github.com/ansible-collections/community.general/pull/1610)." diff --git a/changelogs/fragments/1632-using_check_rc_in_terraform.yml b/changelogs/fragments/1632-using_check_rc_in_terraform.yml deleted file mode 100644 index 481becb763..0000000000 --- a/changelogs/fragments/1632-using_check_rc_in_terraform.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- terraform - improve result code checking when executing terraform commands (https://github.com/ansible-collections/community.general/pull/1632). diff --git a/changelogs/fragments/1654-dnsmadeeasy-http-400-fixes.yaml b/changelogs/fragments/1654-dnsmadeeasy-http-400-fixes.yaml deleted file mode 100644 index 1934228644..0000000000 --- a/changelogs/fragments/1654-dnsmadeeasy-http-400-fixes.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - dnsmadeeasy - fix HTTP 400 errors when creating a TXT record (https://github.com/ansible-collections/community.general/issues/1237). diff --git a/changelogs/fragments/1679-homebrew_search_path.yml b/changelogs/fragments/1679-homebrew_search_path.yml deleted file mode 100644 index fa2d995891..0000000000 --- a/changelogs/fragments/1679-homebrew_search_path.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -bugfixes: - - homebrew - add default search path for ``brew`` on Apple silicon hardware - (https://github.com/ansible-collections/community.general/pull/1679). - - homebrew_cask - add default search path for ``brew`` on Apple silicon hardware - (https://github.com/ansible-collections/community.general/pull/1679). - - homebrew_tap - add default search path for ``brew`` on Apple silicon hardware - (https://github.com/ansible-collections/community.general/pull/1679). diff --git a/changelogs/fragments/community.docker-66-ipv6-zones.yml b/changelogs/fragments/community.docker-66-ipv6-zones.yml deleted file mode 100644 index 09970451f5..0000000000 --- a/changelogs/fragments/community.docker-66-ipv6-zones.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_container - allow IPv6 zones (RFC 4007) in bind IPs (https://github.com/ansible-collections/community.docker/pull/66)." diff --git a/changelogs/fragments/community.docker-73-docker_image-fix-old-docker-py-version.yml b/changelogs/fragments/community.docker-73-docker_image-fix-old-docker-py-version.yml deleted file mode 100644 index a7b8799343..0000000000 --- a/changelogs/fragments/community.docker-73-docker_image-fix-old-docker-py-version.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_image - fix crash on loading images with versions of Docker SDK for Python before 2.5.0 (https://github.com/ansible-collections/community.docker/issues/72, https://github.com/ansible-collections/community.docker/pull/73)." diff --git a/changelogs/fragments/lldp-use-get_bin_path-to-locate-the-lldpctl-executable.yaml b/changelogs/fragments/lldp-use-get_bin_path-to-locate-the-lldpctl-executable.yaml deleted file mode 100644 index 4fefd3dd87..0000000000 --- a/changelogs/fragments/lldp-use-get_bin_path-to-locate-the-lldpctl-executable.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - lldp - use ``get_bin_path`` to locate the ``lldpctl`` executable (https://github.com/ansible-collections/community.general/pull/1643).