From 7f7e6222622069e7b621f8f34333d9cf097f5585 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sun, 8 Oct 2023 13:31:17 +0200 Subject: [PATCH] Release 6.6.6. --- CHANGELOG.rst | 15 +++++++++++++++ changelogs/changelog.yaml | 16 ++++++++++++++++ changelogs/fragments/6.6.6.yml | 1 - ...event-key-error-when-value-does-not-exist.yml | 2 -- ...1-fix-backend-config-string-encapsulation.yml | 2 -- .../7303-mail-incorrect-header-parsing.yml | 2 -- 6 files changed, 31 insertions(+), 7 deletions(-) delete mode 100644 changelogs/fragments/6.6.6.yml delete mode 100644 changelogs/fragments/7241-prevent-key-error-when-value-does-not-exist.yml delete mode 100644 changelogs/fragments/7301-fix-backend-config-string-encapsulation.yml delete mode 100644 changelogs/fragments/7303-mail-incorrect-header-parsing.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b40d99c58b..f07bb862bd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,21 @@ Community General Release Notes This changelog describes changes after version 5.0.0. +v6.6.6 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Bugfixes +-------- + +- mail - skip headers containing equals characters due to missing ``maxsplit`` on header key/value parsing (https://github.com/ansible-collections/community.general/pull/7303). +- onepassword - fix KeyError exception when trying to access value of a field that is not filled out in OnePassword item (https://github.com/ansible-collections/community.general/pull/7241). +- terraform - prevents ``-backend-config`` option double encapsulating with ``shlex_quote`` function. (https://github.com/ansible-collections/community.general/pull/7301). + v6.6.5 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index e903e10fdd..633888a915 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1557,3 +1557,19 @@ releases: - 7200-cmd-runner-abs-path.yml - 7219-fix-nsupdate-cname.yaml release_date: '2023-09-11' + 6.6.6: + changes: + bugfixes: + - mail - skip headers containing equals characters due to missing ``maxsplit`` + on header key/value parsing (https://github.com/ansible-collections/community.general/pull/7303). + - onepassword - fix KeyError exception when trying to access value of a field + that is not filled out in OnePassword item (https://github.com/ansible-collections/community.general/pull/7241). + - terraform - prevents ``-backend-config`` option double encapsulating with + ``shlex_quote`` function. (https://github.com/ansible-collections/community.general/pull/7301). + release_summary: Regular bugfix release. + fragments: + - 6.6.6.yml + - 7241-prevent-key-error-when-value-does-not-exist.yml + - 7301-fix-backend-config-string-encapsulation.yml + - 7303-mail-incorrect-header-parsing.yml + release_date: '2023-10-08' diff --git a/changelogs/fragments/6.6.6.yml b/changelogs/fragments/6.6.6.yml deleted file mode 100644 index 1b14bd80d1..0000000000 --- a/changelogs/fragments/6.6.6.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. diff --git a/changelogs/fragments/7241-prevent-key-error-when-value-does-not-exist.yml b/changelogs/fragments/7241-prevent-key-error-when-value-does-not-exist.yml deleted file mode 100644 index caf722cc6f..0000000000 --- a/changelogs/fragments/7241-prevent-key-error-when-value-does-not-exist.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - onepassword - fix KeyError exception when trying to access value of a field that is not filled out in OnePassword item (https://github.com/ansible-collections/community.general/pull/7241). diff --git a/changelogs/fragments/7301-fix-backend-config-string-encapsulation.yml b/changelogs/fragments/7301-fix-backend-config-string-encapsulation.yml deleted file mode 100644 index f8d01450f4..0000000000 --- a/changelogs/fragments/7301-fix-backend-config-string-encapsulation.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "terraform - prevents ``-backend-config`` option double encapsulating with ``shlex_quote`` function. (https://github.com/ansible-collections/community.general/pull/7301)." \ No newline at end of file diff --git a/changelogs/fragments/7303-mail-incorrect-header-parsing.yml b/changelogs/fragments/7303-mail-incorrect-header-parsing.yml deleted file mode 100644 index a35f5288d7..0000000000 --- a/changelogs/fragments/7303-mail-incorrect-header-parsing.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - mail - skip headers containing equals characters due to missing ``maxsplit`` on header key/value parsing (https://github.com/ansible-collections/community.general/pull/7303).