Skip to content

Commit

Permalink
Merge pull request ansible-collections#245 from saito-hideki/release_…
Browse files Browse the repository at this point in the history
…1.3.0

Release 1.3.0 commit

SUMMARY
New release 1.3.0
ISSUE TYPE

Feature Pull Request

COMPONENT NAME

ansible.posix

ADDITIONAL INFORMATION
None

Reviewed-by: Andrew Klychkov <[email protected]>
Reviewed-by: Abhijeet Kasurde <None>
Reviewed-by: None <None>
  • Loading branch information
ansible-zuul[bot] authored Aug 11, 2021
2 parents c21fb99 + fad1d3a commit ab9eaf2
Show file tree
Hide file tree
Showing 82 changed files with 863 additions and 247 deletions.
45 changes: 44 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,49 @@ ansible.posix Release Notes
.. contents:: Topics


v1.3.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.2.0.

Minor Changes
-------------

- acl - add new alias ``recurse`` for ``recursive`` parameter (https://github.com/ansible-collections/ansible.posix/issues/124).
- added 2.11 branch to test matrix, added ignore-2.12.txt.
- authorized_key - add ``no_log=False`` in ``argument_spec`` to clear false-positives of ``no-log-needed`` (https://github.com/ansible-collections/ansible.posix/pull/156).
- authorized_key - add a list of valid key types (https://github.com/ansible-collections/ansible.posix/issues/134).
- mount - Change behavior of ``boot`` option to set ``noauto`` on BSD nodes (https://github.com/ansible-collections/ansible.posix/issues/28).
- mount - Change behavior of ``boot`` option to set ``noauto`` on Linux nodes (https://github.com/ansible-collections/ansible.posix/issues/28).
- mount - add ``no_log=False`` in ``argument_spec`` to clear false-positives of ``no-log-needed`` (https://github.com/ansible-collections/ansible.posix/pull/156).
- mount - returns ``backup_file`` value when a backup fstab is created.
- synchronize - add ``delay_updates`` option (https://github.com/ansible-collections/ansible.posix/issues/157).
- synchronize - fix typo (https://github.com/ansible-collections/ansible.posix/pull/198).

Bugfixes
--------

- Synchronize module not recognizing remote ssh key (https://github.com/ansible-collections/ansible.posix/issues/24).
- Synchronize not using quotes around arguments like --out-format (https://github.com/ansible-collections/ansible.posix/issues/190).
- at - append line-separator to the end of the ``command`` (https://github.com/ansible-collections/ansible.posix/issues/169).
- csh - define ``ECHO`` and ``COMMAND_SEP`` (https://github.com/ansible-collections/ansible.posix/issues/204).
- firewalld - enable integration after migration (https://github.com/ansible-collections/ansible.posix/pull/239).
- firewalld - ensure idempotency with firewalld 0.9.3 (https://github.com/ansible-collections/ansible.posix/issues/179).
- firewalld - fix setting zone target to ``%%REJECT%%`` (https://github.com/ansible-collections/ansible.posix/pull/215).
- mount - Handle ``boot`` option on Solaris correctly (https://github.com/ansible-collections/ansible.posix/issues/184).
- synchronize - add ``community.podman.podman`` to the list of supported connection plugins (https://github.com/ansible-community/molecule-podman/issues/45).
- synchronize - complete podman support for synchronize module.
- synchronize - properly quote rsync CLI parameters (https://github.com/ansible-collections/ansible.posix/pull/241).
- synchronize - replace removed ``ansible_ssh_user`` by ``ansible_user`` everywhere; do the same for ``ansible_ssh_port`` and ``ansible_ssh_host`` (https://github.com/ansible-collections/ansible.posix/issues/60).
- synchronize - use SSH args from SSH connection plugin (https://github.com/ansible-collections/ansible.posix/issues/222).
- synchronize - use become_user when invoking rsync on remote with sudo (https://github.com/ansible-collections/ansible.posix/issues/186).
- sysctl - modifying conditional check for docker to fix tests being skipped (https://github.com/ansible-collections/ansible.posix/pull/226).

v1.2.0
======

Expand All @@ -26,9 +69,9 @@ 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).
- synchronize - fix for private_key overriding in synchronize module.
- sysctl - do not persist sysctl when value is invalid (https://github.com/ansible-collections/ansible.posix/pull/101).

v1.1.1
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Name | Description
[ansible.posix.at](https://github.com/ansible-collections/ansible.posix/blob/main/docs/ansible.posix.at_module.rst)|Schedule the execution of a command or script file via the at command
[ansible.posix.authorized_key](https://github.com/ansible-collections/ansible.posix/blob/main/docs/ansible.posix.authorized_key_module.rst)|Adds or removes an SSH authorized key
[ansible.posix.firewalld](https://github.com/ansible-collections/ansible.posix/blob/main/docs/ansible.posix.firewalld_module.rst)|Manage arbitrary ports/services with firewalld
[ansible.posix.firewalld_info](https://github.com/ansible-collections/ansible.posix/blob/main/docs/ansible.posix.firewalld_info_module.rst)|Gather information about firewalld
[ansible.posix.mount](https://github.com/ansible-collections/ansible.posix/blob/main/docs/ansible.posix.mount_module.rst)|Control active and configured mount points
[ansible.posix.patch](https://github.com/ansible-collections/ansible.posix/blob/main/docs/ansible.posix.patch_module.rst)|Apply patch files using the GNU patch tool
[ansible.posix.seboolean](https://github.com/ansible-collections/ansible.posix/blob/main/docs/ansible.posix.seboolean_module.rst)|Toggles SELinux booleans
Expand Down
78 changes: 77 additions & 1 deletion changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ releases:
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).
- synchronize - fix for private_key overriding in synchronize module.
- 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).
Expand All @@ -134,3 +134,79 @@ releases:
- firewalld_zone_target.yml
- misc_fix.yml
release_date: '2021-03-08'
1.3.0:
changes:
bugfixes:
- Synchronize module not recognizing remote ssh key (https://github.com/ansible-collections/ansible.posix/issues/24).
- Synchronize not using quotes around arguments like --out-format (https://github.com/ansible-collections/ansible.posix/issues/190).
- at - append line-separator to the end of the ``command`` (https://github.com/ansible-collections/ansible.posix/issues/169).
- csh - define ``ECHO`` and ``COMMAND_SEP`` (https://github.com/ansible-collections/ansible.posix/issues/204).
- firewalld - enable integration after migration (https://github.com/ansible-collections/ansible.posix/pull/239).
- firewalld - ensure idempotency with firewalld 0.9.3 (https://github.com/ansible-collections/ansible.posix/issues/179).
- firewalld - fix setting zone target to ``%%REJECT%%`` (https://github.com/ansible-collections/ansible.posix/pull/215).
- mount - Handle ``boot`` option on Solaris correctly (https://github.com/ansible-collections/ansible.posix/issues/184).
- synchronize - add ``community.podman.podman`` to the list of supported connection
plugins (https://github.com/ansible-community/molecule-podman/issues/45).
- synchronize - complete podman support for synchronize module.
- synchronize - properly quote rsync CLI parameters (https://github.com/ansible-collections/ansible.posix/pull/241).
- synchronize - replace removed ``ansible_ssh_user`` by ``ansible_user`` everywhere;
do the same for ``ansible_ssh_port`` and ``ansible_ssh_host`` (https://github.com/ansible-collections/ansible.posix/issues/60).
- synchronize - use SSH args from SSH connection plugin (https://github.com/ansible-collections/ansible.posix/issues/222).
- synchronize - use become_user when invoking rsync on remote with sudo (https://github.com/ansible-collections/ansible.posix/issues/186).
- sysctl - modifying conditional check for docker to fix tests being skipped
(https://github.com/ansible-collections/ansible.posix/pull/226).
minor_changes:
- acl - add new alias ``recurse`` for ``recursive`` parameter (https://github.com/ansible-collections/ansible.posix/issues/124).
- added 2.11 branch to test matrix, added ignore-2.12.txt.
- authorized_key - add ``no_log=False`` in ``argument_spec`` to clear false-positives
of ``no-log-needed`` (https://github.com/ansible-collections/ansible.posix/pull/156).
- authorized_key - add a list of valid key types (https://github.com/ansible-collections/ansible.posix/issues/134).
- mount - Change behavior of ``boot`` option to set ``noauto`` on BSD nodes
(https://github.com/ansible-collections/ansible.posix/issues/28).
- mount - Change behavior of ``boot`` option to set ``noauto`` on Linux nodes
(https://github.com/ansible-collections/ansible.posix/issues/28).
- mount - add ``no_log=False`` in ``argument_spec`` to clear false-positives
of ``no-log-needed`` (https://github.com/ansible-collections/ansible.posix/pull/156).
- mount - returns ``backup_file`` value when a backup fstab is created.
- synchronize - add ``delay_updates`` option (https://github.com/ansible-collections/ansible.posix/issues/157).
- synchronize - fix typo (https://github.com/ansible-collections/ansible.posix/pull/198).
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.2.0.'
fragments:
- 1.3.0.yml
- 124_acl.yml
- 126_mount_not_returning_backup_file.yml
- 134_authorized_key.yml
- 156-fix_no-log-needed_false_positives.yml
- 159-fix-60-deprecated-ansible_ssh_user.yml
- 167-synchronize-add_delay_option.yml
- 169_add_lineseparator_to_command.yml
- 175_synchronize.yml
- 179_firewalld.yml
- 181-update_codecov_sh_url.yml
- 185_mount_at_boot.yml
- 187-fix-synchronize-become-user.yml
- 193_firewalld.yml
- 196_boot_opt_for_linux.yml
- 203_boot_opt_for_bsd.yml
- 204_csh_shell.yml
- 207-mount_tests.yml
- 213_quote_cmd_args.yml
- 214-add_firewalld_info_module.yml
- 215_fix_REJECT_target_name.yml
- 217-restructure_authrized_key_test.yml
- 222_synchronize.yml
- 226_sysctl_fix_integration_test.yml
- 229_add_podman_connection_plugin_to_synchronize.yml
- 230_complete_podman_support_for_synchronize.yml
- 233-fix-wrong-firewalld-version-info.yml
- 241-synchronize-shell-quoting.yml
- firewalld_integ_test.yml
- firewalld_test.yml
- sanity_test_ignore_file.yml
- synchronize.yml
- test_matrix.yml
release_date: '2021-08-11'
2 changes: 1 addition & 1 deletion changelogs/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ changelog_filename_template: ../CHANGELOG.rst
changelog_filename_version_depth: 0
changes_file: changelog.yaml
changes_format: combined
keep_fragments: true
keep_fragments: false
mention_ancestor: true
new_plugins_after_name: removed_features
notesdir: fragments
Expand Down
4 changes: 0 additions & 4 deletions changelogs/fragments/1.2.0.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/101-sysctl-dont-persist-when-invalid.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/11-action-plugins-use-fqcn.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/118-synchronize_bugfix.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/120-synchronize_add_option.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/124_acl.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/126_mount_not_returning_backup_file.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/12_migrate_cgroup_perf_recap_graph.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/134_authorized_key.yml

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/14_mount_option.yml

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/15_profile_tasks.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/167-synchronize-add_delay_option.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/169_add_lineseparator_to_command.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/175_synchronize.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/179_firewalld.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/17_authorized_keys.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/181-update_codecov_sh_url.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/185_mount_at_boot.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/187-fix-synchronize-become-user.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/193_firewalld.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/196_boot_opt_for_linux.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/19_enable_tags.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/203_boot_opt_for_bsd.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/204_csh_shell.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/207-mount_tests.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/21-mount-module_util-routing-issue.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/213_quote_cmd_args.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/214-add_firewalld_info_module.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/215_fix_REJECT_target_name.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/217-restructure_authrized_key_test.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/222_synchronize.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/226_sysctl_fix_integration_test.yml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/233-fix-wrong-firewalld-version-info.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/241-synchronize-shell-quoting.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/25_ansible_metadata.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/26_profile_tasks_doc.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/27_update_examples.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/33_mount.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/35_disable_tests.yml

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/39_remove_license.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/43_remove_shippable.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/4_update_readme.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/5_enable_tests.yml

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/6_test_devel.yml

This file was deleted.

Loading

0 comments on commit ab9eaf2

Please sign in to comment.