diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9c172249c3..91596d02b0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,51 @@ Community General Release Notes .. contents:: Topics +v1.1.0 +====== + +Release Summary +--------------- + +Release for Ansible 2.10.0. + + +Minor Changes +------------- + +- The collection dependencies where adjusted so that ``community.kubernetes`` and ``google.cloud`` are required to be of version 1.0.0 or newer (https://github.com/ansible-collections/community.general/pull/774). +- jc - new filter to convert the output of many shell commands and file-types to JSON. Uses the jc library at https://github.com/kellyjonbrazil/jc. For example, filtering the STDOUT output of ``uname -a`` via ``{{ result.stdout | community.general.jc('uname') }}``. Requires Python 3.6+ (https://github.com/ansible-collections/community.general/pull/750). +- xfconf - add support for ``double`` type (https://github.com/ansible-collections/community.general/pull/744). + +Bugfixes +-------- + +- cobbler inventory plugin - ``name`` needed FQCN (https://github.com/ansible-collections/community.general/pull/722). +- dsv lookup - use correct dict usage (https://github.com/ansible-collections/community.general/pull/743). +- inventory plugins - allow FQCN in ``plugin`` option (https://github.com/ansible-collections/community.general/pull/722). +- ipa_hostgroup - fix an issue with load-balanced ipa and cookie handling with Python 3 (https://github.com/ansible-collections/community.general/issues/737). +- oc connection plugin - ``transport`` needed FQCN (https://github.com/ansible-collections/community.general/pull/722). +- postgresql_set - allow to pass an empty string to the ``value`` parameter (https://github.com/ansible-collections/community.general/issues/775). +- xfconf - make it work in non-english locales (https://github.com/ansible-collections/community.general/pull/744). + +New Modules +----------- + +Cloud +~~~~~ + +docker +^^^^^^ + +- docker_stack_task_info - Return information of the tasks on a docker stack + +System +~~~~~~ + +- iptables_state - Save iptables state into a file or restore it from a file +- shutdown - Shut down a machine +- sysupgrade - Manage OpenBSD system upgrades + v1.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 0022b7e903..d38dd8e6b0 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1058,3 +1058,49 @@ releases: name: tss namespace: null release_date: '2020-07-31' + 1.1.0: + changes: + bugfixes: + - cobbler inventory plugin - ``name`` needed FQCN (https://github.com/ansible-collections/community.general/pull/722). + - dsv lookup - use correct dict usage (https://github.com/ansible-collections/community.general/pull/743). + - inventory plugins - allow FQCN in ``plugin`` option (https://github.com/ansible-collections/community.general/pull/722). + - ipa_hostgroup - fix an issue with load-balanced ipa and cookie handling with + Python 3 (https://github.com/ansible-collections/community.general/issues/737). + - oc connection plugin - ``transport`` needed FQCN (https://github.com/ansible-collections/community.general/pull/722). + - postgresql_set - allow to pass an empty string to the ``value`` parameter + (https://github.com/ansible-collections/community.general/issues/775). + - xfconf - make it work in non-english locales (https://github.com/ansible-collections/community.general/pull/744). + minor_changes: + - The collection dependencies where adjusted so that ``community.kubernetes`` + and ``google.cloud`` are required to be of version 1.0.0 or newer (https://github.com/ansible-collections/community.general/pull/774). + - jc - new filter to convert the output of many shell commands and file-types + to JSON. Uses the jc library at https://github.com/kellyjonbrazil/jc. For + example, filtering the STDOUT output of ``uname -a`` via ``{{ result.stdout + | community.general.jc('uname') }}``. Requires Python 3.6+ (https://github.com/ansible-collections/community.general/pull/750). + - xfconf - add support for ``double`` type (https://github.com/ansible-collections/community.general/pull/744). + release_summary: 'Release for Ansible 2.10.0. + + ' + fragments: + - 1.1.0.yml + - 722-plugins.yml + - 738-ipa-python3.yml + - 744-xfconf_make_locale-independent.yml + - 750-jc-new-filter.yaml + - 776-postgresql_set_allow_empty_string.yaml + - dsv_fix.yml + - galaxy-yml.yml + modules: + - description: Return information of the tasks on a docker stack + name: docker_stack_task_info + namespace: cloud.docker + - description: Save iptables state into a file or restore it from a file + name: iptables_state + namespace: system + - description: Shut down a machine + name: shutdown + namespace: system + - description: Manage OpenBSD system upgrades + name: sysupgrade + namespace: system + release_date: '2020-08-18' diff --git a/changelogs/fragments/1.1.0.yml b/changelogs/fragments/1.1.0.yml deleted file mode 100644 index 983b8de6a1..0000000000 --- a/changelogs/fragments/1.1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -release_summary: | - Release for Ansible 2.10.0. diff --git a/changelogs/fragments/722-plugins.yml b/changelogs/fragments/722-plugins.yml deleted file mode 100644 index efbc4e0750..0000000000 --- a/changelogs/fragments/722-plugins.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: -- cobbler inventory plugin - ``name`` needed FQCN (https://github.com/ansible-collections/community.general/pull/722). -- oc connection plugin - ``transport`` needed FQCN (https://github.com/ansible-collections/community.general/pull/722). -- inventory plugins - allow FQCN in ``plugin`` option (https://github.com/ansible-collections/community.general/pull/722). diff --git a/changelogs/fragments/738-ipa-python3.yml b/changelogs/fragments/738-ipa-python3.yml deleted file mode 100644 index e732837d35..0000000000 --- a/changelogs/fragments/738-ipa-python3.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - ipa_hostgroup - fix an issue with load-balanced ipa and cookie handling with Python 3 (https://github.com/ansible-collections/community.general/issues/737). diff --git a/changelogs/fragments/744-xfconf_make_locale-independent.yml b/changelogs/fragments/744-xfconf_make_locale-independent.yml deleted file mode 100644 index 05f060adb8..0000000000 --- a/changelogs/fragments/744-xfconf_make_locale-independent.yml +++ /dev/null @@ -1,5 +0,0 @@ -minor_changes: - - xfconf - add support for ``double`` type (https://github.com/ansible-collections/community.general/pull/744). -bugfixes: - - xfconf - make it work in non-english locales (https://github.com/ansible-collections/community.general/pull/744). - \ No newline at end of file diff --git a/changelogs/fragments/750-jc-new-filter.yaml b/changelogs/fragments/750-jc-new-filter.yaml deleted file mode 100644 index d4ff7845f7..0000000000 --- a/changelogs/fragments/750-jc-new-filter.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- jc - new filter to convert the output of many shell commands and file-types to JSON. Uses the jc library at https://github.com/kellyjonbrazil/jc. For example, filtering the STDOUT output of ``uname -a`` via ``{{ result.stdout | community.general.jc('uname') }}``. Requires Python 3.6+ (https://github.com/ansible-collections/community.general/pull/750). diff --git a/changelogs/fragments/776-postgresql_set_allow_empty_string.yaml b/changelogs/fragments/776-postgresql_set_allow_empty_string.yaml deleted file mode 100644 index f02b735d8f..0000000000 --- a/changelogs/fragments/776-postgresql_set_allow_empty_string.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_set - allow to pass an empty string to the ``value`` parameter (https://github.com/ansible-collections/community.general/issues/775). diff --git a/changelogs/fragments/dsv_fix.yml b/changelogs/fragments/dsv_fix.yml deleted file mode 100644 index fedc90ba5b..0000000000 --- a/changelogs/fragments/dsv_fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- dsv lookup - use correct dict usage (https://github.com/ansible-collections/community.general/pull/743). diff --git a/changelogs/fragments/galaxy-yml.yml b/changelogs/fragments/galaxy-yml.yml deleted file mode 100644 index 3e89e59d61..0000000000 --- a/changelogs/fragments/galaxy-yml.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "The collection dependencies where adjusted so that ``community.kubernetes`` and ``google.cloud`` are required to be of version 1.0.0 or newer (https://github.com/ansible-collections/community.general/pull/774)."