From edec4d767d17f724bed3f3fbccd62778c180d488 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Mon, 8 Mar 2021 13:45:10 +0100 Subject: [PATCH] Release 1.2.0 commit --- CHANGELOG.rst | 26 ++++++++++++++++ changelogs/changelog.yaml | 31 +++++++++++++++++++ changelogs/fragments/1.2.0.yml | 4 +++ .../101-sysctl-dont-persist-when-invalid.yml | 2 +- .../fragments/82-private-key-override-fix.yml | 2 +- .../fragments/firewalld_zone_target.yml | 2 +- galaxy.yml | 2 +- 7 files changed, 65 insertions(+), 4 deletions(-) create mode 100644 changelogs/fragments/1.2.0.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 42a95f8..7781632 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,32 @@ ansible.posix Release Notes .. contents:: Topics +v1.2.0 +====== + +Release Summary +--------------- + +This is the minor release of the ``ansible.posix`` collection. +This changelog contains all changes to the modules in this collection that +have been added after the release of ``ansible.posix`` 1.1.0. + +Minor Changes +------------- + +- firewalld - bring the ``target`` feature back (https://github.com/ansible-collections/ansible.posix/issues/112). +- fix sanity test for various modules. +- synchronize - add the ``ssh_connection_multiplexing`` option to allow SSH connection multiplexing (https://github.com/ansible/ansible/issues/24365). + +Bugfixes +-------- + +- at - add AIX support (https://github.com/ansible-collections/ansible.posix/pull/99). +- synchronize - fix for private_key overriding in synchronize module. +- synchronize - add ``community.docker.docker`` to the list of supported transports (https://github.com/ansible-collections/ansible.posix/issues/132). +- synchronize - do not prepend PWD when path is in form user@server:path or server:path (https://github.com/ansible-collections/ansible.posix/pull/118). +- sysctl - do not persist sysctl when value is invalid (https://github.com/ansible-collections/ansible.posix/pull/101). + v1.1.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 3a58d62..fd899d5 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -103,3 +103,34 @@ releases: - 74_synchronize_docker.yml - skippy_deprecation.yml release_date: '2020-09-02' + 1.2.0: + changes: + bugfixes: + - at - add AIX support (https://github.com/ansible-collections/ansible.posix/pull/99). + - synchronize - fix for private_key overriding in synchronize module. + - synchronize - add ``community.docker.docker`` to the list of supported transports + (https://github.com/ansible-collections/ansible.posix/issues/132). + - synchronize - do not prepend PWD when path is in form user@server:path or + server:path (https://github.com/ansible-collections/ansible.posix/pull/118). + - sysctl - do not persist sysctl when value is invalid (https://github.com/ansible-collections/ansible.posix/pull/101). + minor_changes: + - firewalld - bring the ``target`` feature back (https://github.com/ansible-collections/ansible.posix/issues/112). + - fix sanity test for various modules. + - synchronize - add the ``ssh_connection_multiplexing`` option to allow SSH + connection multiplexing (https://github.com/ansible/ansible/issues/24365). + release_summary: 'This is the minor release of the ``ansible.posix`` collection. + + This changelog contains all changes to the modules in this collection that + + have been added after the release of ``ansible.posix`` 1.1.0.' + fragments: + - 1.2.0.yml + - 101-sysctl-dont-persist-when-invalid.yml + - 118-synchronize_bugfix.yml + - 120-synchronize_add_option.yml + - 144_add_community_docker_connection_plugin_alias.yml + - 82-private-key-override-fix.yml + - 99-at_add_aix_support.yml + - firewalld_zone_target.yml + - misc_fix.yml + release_date: '2021-03-08' diff --git a/changelogs/fragments/1.2.0.yml b/changelogs/fragments/1.2.0.yml new file mode 100644 index 0000000..1a4be39 --- /dev/null +++ b/changelogs/fragments/1.2.0.yml @@ -0,0 +1,4 @@ +release_summary: |- + This is the minor release of the ``ansible.posix`` collection. + This changelog contains all changes to the modules in this collection that + have been added after the release of ``ansible.posix`` 1.1.0. diff --git a/changelogs/fragments/101-sysctl-dont-persist-when-invalid.yml b/changelogs/fragments/101-sysctl-dont-persist-when-invalid.yml index b75059c..cfba0eb 100644 --- a/changelogs/fragments/101-sysctl-dont-persist-when-invalid.yml +++ b/changelogs/fragments/101-sysctl-dont-persist-when-invalid.yml @@ -1,3 +1,3 @@ --- bugfixes: - - sysctl - do not persist sysctl when value is invalid (https://github.com/ansible-collections/ansible.posix/pull/101) + - sysctl - do not persist sysctl when value is invalid (https://github.com/ansible-collections/ansible.posix/pull/101). diff --git a/changelogs/fragments/82-private-key-override-fix.yml b/changelogs/fragments/82-private-key-override-fix.yml index fabb66f..341fe60 100644 --- a/changelogs/fragments/82-private-key-override-fix.yml +++ b/changelogs/fragments/82-private-key-override-fix.yml @@ -1,3 +1,3 @@ --- bugfixes: - - synchronize - Fix for private_key overriding in synchronize module + - synchronize - fix for private_key overriding in synchronize module. diff --git a/changelogs/fragments/firewalld_zone_target.yml b/changelogs/fragments/firewalld_zone_target.yml index 8e053df..13597b0 100644 --- a/changelogs/fragments/firewalld_zone_target.yml +++ b/changelogs/fragments/firewalld_zone_target.yml @@ -1,2 +1,2 @@ minor_changes: - - firewalld - Bring the ``target`` feature back (https://github.com/ansible-collections/ansible.posix/issues/112). + - firewalld - bring the ``target`` feature back (https://github.com/ansible-collections/ansible.posix/issues/112). diff --git a/galaxy.yml b/galaxy.yml index 01777f2..da182e8 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: ansible name: posix -version: 1.1.1 +version: 1.2.0 readme: README.md authors: - Ansible (github.com/ansible)