diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:22 +0000 |
commit | 38b7c80217c4e72b1d8988eb1e60bb6e77334114 (patch) | |
tree | 356e9fd3762877d07cde52d21e77070aeff7e789 /ansible_collections/community/windows/CHANGELOG.rst | |
parent | Adding upstream version 7.7.0+dfsg. (diff) | |
download | ansible-38b7c80217c4e72b1d8988eb1e60bb6e77334114.tar.xz ansible-38b7c80217c4e72b1d8988eb1e60bb6e77334114.zip |
Adding upstream version 9.4.0+dfsg.upstream/9.4.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/community/windows/CHANGELOG.rst')
-rw-r--r-- | ansible_collections/community/windows/CHANGELOG.rst | 78 |
1 files changed, 77 insertions, 1 deletions
diff --git a/ansible_collections/community/windows/CHANGELOG.rst b/ansible_collections/community/windows/CHANGELOG.rst index 45b4f6eaa..a034d4423 100644 --- a/ansible_collections/community/windows/CHANGELOG.rst +++ b/ansible_collections/community/windows/CHANGELOG.rst @@ -4,6 +4,83 @@ Community Windows Release Notes .. contents:: Topics +v2.2.0 +====== + +Release Summary +--------------- + +Release summary for v2.2.0 + +Minor Changes +------------- + +- win_regmerge - Add content 'content' parameter for specifying registry file contents directly + +Bugfixes +-------- + +- win_format, win_partition - Add support for Windows failover cluster disks +- win_psmodule - Fix up error message with ``state=latest`` +- win_robocopy - Fix up ``cmd`` return value to include the executable ``robocopy`` + +v2.1.0 +====== + +Release Summary +--------------- + +Release summary for v2.1.0 + +Minor Changes +------------- + +- Set minimum supported Ansible version to 2.14 to align with the versions still supported by Ansible. + +Bugfixes +-------- + +- Remove some code which is no longer valid for dotnet 5+ +- community.windows.win_psmodule_info - exception thrown when host has no Installed Module. Fix now checks that variable $installedModules is not null before calling the .Contains(..) function on it. +- win_rabbitmq_plugin - Avoid using ``Invoke-Expression`` when running external commands +- win_rds_rap - The module crashed when creating a RAP with Gateway Managed Computer Group (https://github.com/ansible-collections/community.windows/issues/184). + +v2.0.0 +====== + +Release Summary +--------------- + +Version ``2.0.0`` is a major release of the ``community.windows`` collection that removes some deprecated features. Please review the changelog to see what deprecated features have been removed in this release. + +Minor Changes +------------- + +- win_dns_record - Added ``zone_scope`` option to manage a record in a specific zone scope + +Deprecated Features +------------------- + +- win_domain_computer - Module is deprecated in favour of the ``microsoft.ad.computer`` module, the ``community.windows.win_domain_computer`` module will be removed in the ``3.0.0`` release of this collection. +- win_domain_group - Module is deprecated in favour of the ``microsoft.ad.group`` module, the ``community.windows.win_domain_group`` module will be removed in the ``3.0.0`` release of this collection. +- win_domain_group_membership - Module is deprecated in favour of the ``microsoft.ad.group`` module, the ``community.windows.win_domain_group_membership`` module will be removed in the ``3.0.0`` release of this collection. +- win_domain_object_info - Module is deprecated in favour of the ``microsoft.ad.object_info`` module, the ``community.windows.win_domain_object_info`` module will be removed in the ``3.0.0`` release of this collection. +- win_domain_ou - Module is deprecated in favour of the ``microsoft.ad.ou`` module, the ``community.windows.win_domain_ou`` module will be removed in the ``3.0.0`` release of this collection. +- win_domain_user - Module is deprecated in favour of the ``microsoft.ad.user`` module, the ``community.windows.win_domain_user`` module will be removed in the ``3.0.0`` release of this collection. + +Removed Features (previously deprecated) +---------------------------------------- + +- Removed testing for Server 2012 and Server 2012 R2 as they are reaching End of Life status from Microsoft. These OS versions may continue to work but will not be tested in CI. +- win_nssm - Removed the deprecated module option ``app_parameters``, use ``arguments`` instead. +- win_psmodule - Removed the deprecated module option ``url``, use ``community.windows.win_psrepository`` to manage repositories instead +- win_psmodule - Will no longer remove the ``repository`` specified when ``state: absent``, use ``community.windows.win_psrepository`` to manage repositories instead +- win_scheduled_tasks - Removed support for a trigger ``repetition`` to be defined as a list of dictionary entries. Specify the ``repetition`` as a dictionary value rather than a list of dictionaries. + +Bugfixes +-------- + +- win_psmodule - fix requireLicenseAcceptance test so that it is no longer always true v1.13.0 ======= @@ -326,7 +403,6 @@ Release Summary This is the first proper release of the ``community.windows`` collection on 2020-07-18. The changelog describes all changes made to the modules and plugins included in this collection since Ansible 2.9.0. - Minor Changes ------------- |