Skip to content

Commit 4c6898e

Browse files
Merge pull request #600 from saito-hideki/release_2.0.0
Release 2.0.0 commit SUMMARY Release 2.0.0 commit Release Plan #149 ISSUE TYPE Feature Pull Request COMPONENT NAME ansible.posix ADDITIONAL INFORMATION This will be merged on 5 December if there are no problems Reviewed-by: Adam Miller <admiller@redhat.com> Reviewed-by: Andrew Klychkov <aklychko@redhat.com>
2 parents f632fad + f5eae12 commit 4c6898e

17 files changed

+153
-45
lines changed

CHANGELOG.rst

+68
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,74 @@ ansible.posix Release Notes
44

55
.. contents:: Topics
66

7+
v2.0.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This is the major release of the ``ansible.posix`` collection.
14+
This changelog contains all changes to the modules and plugins
15+
in this collection that have been added after the release of
16+
``ansible.posix`` 1.6.2
17+
18+
Minor Changes
19+
-------------
20+
21+
- authorized_keys - allow using absolute path to a file as a SSH key(s) source (https://github.com/ansible-collections/ansible.posix/pull/568)
22+
- callback plugins - Add recap information to timer, profile_roles and profile_tasks callback outputs (https://github.com/ansible-collections/ansible.posix/pull/387).
23+
24+
Breaking Changes / Porting Guide
25+
--------------------------------
26+
27+
- firewalld - Changed the type of forward and masquerade options from str to bool (https://github.com/ansible-collections/ansible.posix/issues/582).
28+
- firewalld - Changed the type of icmp_block_inversion option from str to bool (https://github.com/ansible-collections/ansible.posix/issues/586).
29+
30+
Removed Features (previously deprecated)
31+
----------------------------------------
32+
33+
- skippy - Remove skippy pluglin as it is no longer supported(https://github.com/ansible-collections/ansible.posix/issues/350).
34+
35+
Bugfixes
36+
--------
37+
38+
- acl - Fixed to set ACLs on paths mounted with NFS version 4 correctly (https://github.com/ansible-collections/ansible.posix/issues/240).
39+
- mount - Handle ``boot`` option on Linux, NetBSD and OpenBSD correctly (https://github.com/ansible-collections/ansible.posix/issues/364).
40+
- mount - If a comment is appended to a fstab entry, state present creates a double-entry (https://github.com/ansible-collections/ansible.posix/issues/595).
41+
42+
v1.6.2
43+
======
44+
45+
Release Summary
46+
---------------
47+
48+
This is the bugfix release of the stable version ``ansible.posix`` collection.
49+
This changelog contains all changes to the modules and plugins
50+
in this collection that have been added after the release of
51+
``ansible.posix`` 1.6.1.
52+
53+
Bugfixes
54+
--------
55+
56+
- backport - Drop ansible-core 2.14 and set 2.15 minimum version (https://github.com/ansible-collections/ansible.posix/issues/578).
57+
58+
v1.6.1
59+
======
60+
61+
Release Summary
62+
---------------
63+
64+
This is the bugfix release of the stable version ``ansible.posix`` collection.
65+
This changelog contains all changes to the modules and plugins
66+
in this collection that have been added after the release of
67+
``ansible.posix`` 1.6.1.
68+
69+
Bugfixes
70+
--------
71+
72+
- acl - Fixed to set ACLs on paths mounted with NFS version 4 correctly (https://github.com/ansible-collections/ansible.posix/issues/240).
73+
- mount - Handle ``boot`` option on Linux, NetBSD and OpenBSD correctly (https://github.com/ansible-collections/ansible.posix/issues/364).
74+
- skippy - Revert removal of skippy plugin. It will be removed in version 2.0.0 (https://github.com/ansible-collections/ansible.posix/issues/573).
775

876
v1.6.0
977
======

changelogs/changelog.yaml

+85
Original file line numberDiff line numberDiff line change
@@ -405,3 +405,88 @@ releases:
405405
- dropping-ansible29.yml
406406
- test-reqs.yml
407407
release_date: '2024-09-11'
408+
1.6.1:
409+
changes:
410+
bugfixes:
411+
- acl - Fixed to set ACLs on paths mounted with NFS version 4 correctly (https://github.com/ansible-collections/ansible.posix/issues/240).
412+
- mount - Handle ``boot`` option on Linux, NetBSD and OpenBSD correctly (https://github.com/ansible-collections/ansible.posix/issues/364).
413+
- skippy - Revert removal of skippy plugin. It will be removed in version 2.0.0
414+
(https://github.com/ansible-collections/ansible.posix/issues/573).
415+
release_summary: 'This is the bugfix release of the stable version ``ansible.posix``
416+
collection.
417+
418+
This changelog contains all changes to the modules and plugins
419+
420+
in this collection that have been added after the release of
421+
422+
``ansible.posix`` 1.6.1.'
423+
fragments:
424+
- 1.6.1.yml
425+
- 365-boot-linux.yml
426+
- 566_bump_version_161.yml
427+
- 567_remove_version_added.yml
428+
- 570_nfs4_acl.yml
429+
- 571_ci_bump_core_version.yml
430+
- 572_revert_removal_of_skippy.yml
431+
release_date: '2024-10-11'
432+
1.6.2:
433+
changes:
434+
bugfixes:
435+
- backport - Drop ansible-core 2.14 and set 2.15 minimum version (https://github.com/ansible-collections/ansible.posix/issues/578).
436+
release_summary: 'This is the bugfix release of the stable version ``ansible.posix``
437+
collection.
438+
439+
This changelog contains all changes to the modules and plugins
440+
441+
in this collection that have been added after the release of
442+
443+
``ansible.posix`` 1.6.1.'
444+
fragments:
445+
- 1.6.2.yml
446+
- 580_drop_ansible214.yml
447+
release_date: '2024-10-22'
448+
2.0.0:
449+
changes:
450+
breaking_changes:
451+
- firewalld - Changed the type of forward and masquerade options from str to
452+
bool (https://github.com/ansible-collections/ansible.posix/issues/582).
453+
- firewalld - Changed the type of icmp_block_inversion option from str to bool
454+
(https://github.com/ansible-collections/ansible.posix/issues/586).
455+
bugfixes:
456+
- acl - Fixed to set ACLs on paths mounted with NFS version 4 correctly (https://github.com/ansible-collections/ansible.posix/issues/240).
457+
- mount - Handle ``boot`` option on Linux, NetBSD and OpenBSD correctly (https://github.com/ansible-collections/ansible.posix/issues/364).
458+
- mount - If a comment is appended to a fstab entry, state present creates a
459+
double-entry (https://github.com/ansible-collections/ansible.posix/issues/595).
460+
minor_changes:
461+
- authorized_keys - allow using absolute path to a file as a SSH key(s) source
462+
(https://github.com/ansible-collections/ansible.posix/pull/568)
463+
- callback plugins - Add recap information to timer, profile_roles and profile_tasks
464+
callback outputs (https://github.com/ansible-collections/ansible.posix/pull/387).
465+
release_summary: 'This is the major release of the ``ansible.posix`` collection.
466+
467+
This changelog contains all changes to the modules and plugins
468+
469+
in this collection that have been added after the release of
470+
471+
``ansible.posix`` 1.6.2'
472+
removed_features:
473+
- skippy - Remove skippy pluglin as it is no longer supported(https://github.com/ansible-collections/ansible.posix/issues/350).
474+
fragments:
475+
- 2.0.0.yml
476+
- 365-boot-linux.yml
477+
- 387_callback_output_header.yml
478+
- 556_remove_skippy_callback.yml
479+
- 566_bump_version_161.yml
480+
- 567_remove_version_added.yml
481+
- 568_update_authorized_key.yml
482+
- 570_nfs4_acl.yml
483+
- 571_ci_bump_core_version.yml
484+
- 576_bump_version_2.yml
485+
- 581_ci_selinux.yml
486+
- 584_firewalld_opt_type.yml
487+
- 587_update_README.yml
488+
- 588_ci_enable_devel.yml
489+
- 593_replace_freebsd_version.yml
490+
- 597_remove_fstab_comment_on_updating.yml
491+
- 598_icmp_block_inversion.yml
492+
release_date: '2024-12-04'

changelogs/fragments/365-boot-linux.yml

-3
This file was deleted.

changelogs/fragments/387_callback_output_header.yml

-3
This file was deleted.

changelogs/fragments/566_bump_version_161.yml

-3
This file was deleted.

changelogs/fragments/567_remove_version_added.yml

-3
This file was deleted.

changelogs/fragments/568_update_authorized_key.yml

-3
This file was deleted.

changelogs/fragments/570_nfs4_acl.yml

-3
This file was deleted.

changelogs/fragments/571_ci_bump_core_version.yml

-3
This file was deleted.

changelogs/fragments/576_bump_version_2.yml

-3
This file was deleted.

changelogs/fragments/581_ci_selinux.yml

-3
This file was deleted.

changelogs/fragments/584_firewalld_opt_type.yml

-3
This file was deleted.

changelogs/fragments/587_update_README.yml

-3
This file was deleted.

changelogs/fragments/588_ci_enable_devel.yml

-3
This file was deleted.

changelogs/fragments/593_replace_freebsd_version.yml

-3
This file was deleted.

changelogs/fragments/597_remove_fstab_comment_on_updating.yml

-3
This file was deleted.

changelogs/fragments/598_icmp_block_inversion.yml

-3
This file was deleted.

0 commit comments

Comments
 (0)