diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c5f2c5db..6b0a67b9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,13 +5,32 @@ Community Windows Release Notes .. contents:: Topics -v1.8.0 +v1.9.0 ====== Release Summary --------------- -- Release summary for v1.8.0 +- Release summary for v1.9.0 + +Minor Changes +------------- + +- win_disk_facts - Added ``filter`` option to filter returned facts by type of disk information - https://github.com/ansible-collections/community.windows/issues/33 +- win_disk_facts - Converted from ``#Requires -Module Ansible.ModuleUtils.Legacy`` to ``#AnsibleRequires -CSharpUtil Ansible.Basic`` +- win_iis_virtualdirectory - Added the ``connect_as``, ``username``, and ``password`` options to control the virtual directory authentication - https://github.com/ansible-collections/community.windows/issues/346 +- win_power_plan - Added ``guid`` option to specify plan by a unique identifier - https://github.com/ansible-collections/community.windows/issues/310 + +Bugfixes +-------- + +- win_domain_user - Module now properly captures and reports bad password - https://github.com/ansible-collections/community.windows/issues/316 +- win_domain_user - Module now reports user created and changed properly - https://github.com/ansible-collections/community.windows/issues/316 +- win_domain_user - The AD user's existing identity is searched using their sAMAccountName name preferentially and falls back to the provided name property instead - https://github.com/ansible-collections/community.windows/issues/344 +- win_iis_virtualdirectory - Fixed an issue where virtual directory information could not be obtained correctly when the parameter ``application`` was set + +v1.8.0 +====== Minor Changes ------------- diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 10124d8d..ced01778 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -282,8 +282,6 @@ releases: - win_nssm - Remove deprecation for ``state``, ``dependencies``, ``user``, ``password``, ``start_mode`` - win_nssm - Support gMSA accounts for ``user`` - release_summary: - - Release summary for v1.8.0 fragments: - 205-win_xml-warning.yml - 275-win_xml-verbose-removed.yml @@ -299,3 +297,33 @@ releases: name: win_domain_ou namespace: '' release_date: '2021-11-03' + 1.9.0: + changes: + bugfixes: + - win_domain_user - Module now properly captures and reports bad password - + https://github.com/ansible-collections/community.windows/issues/316 + - win_domain_user - Module now reports user created and changed properly - https://github.com/ansible-collections/community.windows/issues/316 + - win_domain_user - The AD user's existing identity is searched using their + sAMAccountName name preferentially and falls back to the provided name property + instead - https://github.com/ansible-collections/community.windows/issues/344 + - win_iis_virtualdirectory - Fixed an issue where virtual directory information + could not be obtained correctly when the parameter ``application`` was set + minor_changes: + - win_disk_facts - Added ``filter`` option to filter returned facts by type + of disk information - https://github.com/ansible-collections/community.windows/issues/33 + - win_disk_facts - Converted from ``#Requires -Module Ansible.ModuleUtils.Legacy`` + to ``#AnsibleRequires -CSharpUtil Ansible.Basic`` + - win_iis_virtualdirectory - Added the ``connect_as``, ``username``, and ``password`` + options to control the virtual directory authentication - https://github.com/ansible-collections/community.windows/issues/346 + - win_power_plan - Added ``guid`` option to specify plan by a unique identifier + - https://github.com/ansible-collections/community.windows/issues/310 + release_summary: + - Release summary for v1.9.0 + fragments: + - 310_win_disk_facts.yml + - 330_win_domain_user.yml + - 337_win_power_plan.yml + - 345_win_domain_user.yml + - 347_win_iis_virtualdirectory.yml + - release-2.9.0.yml + release_date: '2021-12-21' diff --git a/changelogs/fragments/310_win_disk_facts.yml b/changelogs/fragments/310_win_disk_facts.yml deleted file mode 100644 index 761b5b9e..00000000 --- a/changelogs/fragments/310_win_disk_facts.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - win_disk_facts - Added ``filter`` option to filter returned facts by type of disk information - https://github.com/ansible-collections/community.windows/issues/33 - - win_disk_facts - Converted from ``#Requires -Module Ansible.ModuleUtils.Legacy`` to ``#AnsibleRequires -CSharpUtil Ansible.Basic`` diff --git a/changelogs/fragments/330_win_domain_user.yml b/changelogs/fragments/330_win_domain_user.yml deleted file mode 100644 index b1a5f0a4..00000000 --- a/changelogs/fragments/330_win_domain_user.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - win_domain_user - Module now reports user created and changed properly - https://github.com/ansible-collections/community.windows/issues/316 - - win_domain_user - Module now properly captures and reports bad password - https://github.com/ansible-collections/community.windows/issues/316 diff --git a/changelogs/fragments/337_win_power_plan.yml b/changelogs/fragments/337_win_power_plan.yml deleted file mode 100644 index aa3880dd..00000000 --- a/changelogs/fragments/337_win_power_plan.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - win_power_plan - Added ``guid`` option to specify plan by a unique identifier - https://github.com/ansible-collections/community.windows/issues/310 diff --git a/changelogs/fragments/345_win_domain_user.yml b/changelogs/fragments/345_win_domain_user.yml deleted file mode 100644 index b22f2419..00000000 --- a/changelogs/fragments/345_win_domain_user.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - win_domain_user - The AD user's existing identity is searched using their sAMAccountName name preferentially and falls back to the provided name property instead - https://github.com/ansible-collections/community.windows/issues/344 \ No newline at end of file diff --git a/changelogs/fragments/347_win_iis_virtualdirectory.yml b/changelogs/fragments/347_win_iis_virtualdirectory.yml deleted file mode 100644 index c28cd34d..00000000 --- a/changelogs/fragments/347_win_iis_virtualdirectory.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -minor_changes: - - win_iis_virtualdirectory - Added the ``connect_as``, ``username``, and ``password`` options to control the virtual directory authentication - https://github.com/ansible-collections/community.windows/issues/346 - -bugfixes: - - win_iis_virtualdirectory - Fixed an issue where virtual directory information could not be obtained correctly when the parameter ``application`` was set diff --git a/docs/community.windows.win_credential_module.rst b/docs/community.windows.win_credential_module.rst index e74a5126..8571d354 100644 --- a/docs/community.windows.win_credential_module.rst +++ b/docs/community.windows.win_credential_module.rst @@ -153,7 +153,7 @@ Parameters
*
), a NetBIOS of DNS domain name that contains a wildcard character sequence, or an asterisk.TargetName
in https://docs.microsoft.com/en-us/windows/desktop/api/wincred/ns-wincred-_credentiala for more details on what this value can be.TargetName
in https://docs.microsoft.com/en-us/windows/win32/api/wincred/ns-wincred-credentiala for more details on what this value can be.pass_through
or specific_user
pass_through
, IIS will use the identity of the user or application pool identity to access the physical path.specific_user
, IIS will use the credentials provided in username and password to access the physical path.specific_user
.specific_user
.balanced
and high performance
.