From 5a54ddfab9e47495ae714db5a978cf4b33274557 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 26 Jan 2021 12:40:00 +0100 Subject: [PATCH] Release 1.3.5. --- CHANGELOG.rst | 22 ++++++++++++ changelogs/changelog.yaml | 35 +++++++++++++++++++ changelogs/fragments/1.3.5.yml | 1 - ...store.py-to-be-compatible-with-gopass.yaml | 5 --- ...1610-bugfix-onepassword-lookup-plugin.yaml | 2 -- .../1632-using_check_rc_in_terraform.yml | 2 -- .../1654-dnsmadeeasy-http-400-fixes.yaml | 2 -- .../fragments/1679-homebrew_search_path.yml | 8 ----- .../community.docker-66-ipv6-zones.yml | 2 -- ...docker_image-fix-old-docker-py-version.yml | 2 -- ...path-to-locate-the-lldpctl-executable.yaml | 2 -- 11 files changed, 57 insertions(+), 26 deletions(-) delete mode 100644 changelogs/fragments/1.3.5.yml delete mode 100644 changelogs/fragments/1589-passwordstore-fix-passwordstore.py-to-be-compatible-with-gopass.yaml delete mode 100644 changelogs/fragments/1610-bugfix-onepassword-lookup-plugin.yaml delete mode 100644 changelogs/fragments/1632-using_check_rc_in_terraform.yml delete mode 100644 changelogs/fragments/1654-dnsmadeeasy-http-400-fixes.yaml delete mode 100644 changelogs/fragments/1679-homebrew_search_path.yml delete mode 100644 changelogs/fragments/community.docker-66-ipv6-zones.yml delete mode 100644 changelogs/fragments/community.docker-73-docker_image-fix-old-docker-py-version.yml delete mode 100644 changelogs/fragments/lldp-use-get_bin_path-to-locate-the-lldpctl-executable.yaml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 313f7027fcb..e5462f41727 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 3f3911840a1..8cb857a7c26 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 1b14bd80d1f..00000000000 --- 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 8a781f4a905..00000000000 --- 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 d3220a2c717..00000000000 --- 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 481becb7634..00000000000 --- 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 19342286446..00000000000 --- 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 fa2d9958918..00000000000 --- 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 09970451f54..00000000000 --- 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 a7b8799343a..00000000000 --- 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 4fefd3dd873..00000000000 --- 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).