mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 15:15:26 +01:00
Merge pull request #153 from Andersson007/release_branch
Release 1.2.0 commit Reviewed-by: https://github.com/apps/ansible-zuul
This commit is contained in:
commit
bd8a3f35c2
7 changed files with 65 additions and 4 deletions
|
|
@ -5,6 +5,32 @@ ansible.posix Release Notes
|
||||||
.. contents:: Topics
|
.. 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
|
v1.1.1
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -103,3 +103,34 @@ releases:
|
||||||
- 74_synchronize_docker.yml
|
- 74_synchronize_docker.yml
|
||||||
- skippy_deprecation.yml
|
- skippy_deprecation.yml
|
||||||
release_date: '2020-09-02'
|
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'
|
||||||
|
|
|
||||||
4
changelogs/fragments/1.2.0.yml
Normal file
4
changelogs/fragments/1.2.0.yml
Normal file
|
|
@ -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.
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
---
|
---
|
||||||
bugfixes:
|
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).
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
---
|
---
|
||||||
bugfixes:
|
bugfixes:
|
||||||
- synchronize - Fix for private_key overriding in synchronize module
|
- synchronize - fix for private_key overriding in synchronize module.
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
minor_changes:
|
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).
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
namespace: ansible
|
namespace: ansible
|
||||||
name: posix
|
name: posix
|
||||||
version: 1.1.1
|
version: 1.2.0
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Ansible (github.com/ansible)
|
- Ansible (github.com/ansible)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue